From d58087c18c6b848f43961bf883dda9a1fd9997ba Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Wed, 27 May 2020 16:44:19 -0400 Subject: [PATCH 01/38] Fix medical stack exploit --- code/game/objects/items/stacks/medical.dm | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/stacks/medical.dm b/code/game/objects/items/stacks/medical.dm index 20f098e5d1..acf17d9735 100644 --- a/code/game/objects/items/stacks/medical.dm +++ b/code/game/objects/items/stacks/medical.dm @@ -24,6 +24,11 @@ to_chat(user, "You don't have the dexterity to do this!") return 1 + var/available = get_amount() + if(!available) + to_chat(user, "There's not enough [uses_charge ? "charge" : "items"] left to use that!") + return 1 + if (istype(M, /mob/living/carbon/human)) var/mob/living/carbon/human/H = M var/obj/item/organ/external/affecting = H.get_organ(user.zone_sel.selecting) @@ -101,11 +106,12 @@ to_chat(user, "The wounds on [M]'s [affecting.name] have already been bandaged.") return 1 else + var/available = get_amount() user.visible_message("\The [user] starts bandaging [M]'s [affecting.name].", \ "You start bandaging [M]'s [affecting.name]." ) var/used = 0 for (var/datum/wound/W in affecting.wounds) - if (W.internal) + if(W.internal) continue if(W.bandaged) continue @@ -119,6 +125,10 @@ to_chat(user, "The wounds on [M]'s [affecting.name] have already been bandaged.") return 1 + if(used >= available) + to_chat(user, "You run out of [src]!") + break + if (W.current_stage <= W.max_bleeding_stage) user.visible_message("\The [user] bandages \a [W.desc] on [M]'s [affecting.name].", \ "You bandage \a [W.desc] on [M]'s [affecting.name]." ) @@ -164,6 +174,7 @@ to_chat(user, "The wounds on [M]'s [affecting.name] have already been bandaged.") return 1 else + var/available = get_amount() user.visible_message("\The [user] starts treating [M]'s [affecting.name].", \ "You start treating [M]'s [affecting.name]." ) var/used = 0 @@ -182,6 +193,10 @@ to_chat(user, "The wounds on [M]'s [affecting.name] have already been bandaged.") return 1 + if(used >= available) + to_chat(user, "You run out of [src]!") + break + if (W.current_stage <= W.max_bleeding_stage) user.visible_message("\The [user] bandages \a [W.desc] on [M]'s [affecting.name].", \ "You bandage \a [W.desc] on [M]'s [affecting.name]." ) @@ -271,6 +286,7 @@ to_chat(user, "The wounds on [M]'s [affecting.name] have already been treated.") return 1 else + var/available = get_amount() user.visible_message("\The [user] starts treating [M]'s [affecting.name].", \ "You start treating [M]'s [affecting.name]." ) var/used = 0 @@ -287,6 +303,11 @@ if(affecting.is_bandaged() && affecting.is_disinfected()) // We do a second check after the delay, in case it was bandaged after the first check. to_chat(user, "The wounds on [M]'s [affecting.name] have already been bandaged.") return 1 + + if(used >= available) + to_chat(user, "You run out of [src]!") + break + if (W.current_stage <= W.max_bleeding_stage) user.visible_message("\The [user] cleans \a [W.desc] on [M]'s [affecting.name] and seals the edges with bioglue.", \ "You clean and seal \a [W.desc] on [M]'s [affecting.name]." ) From ea8c29acc812c772f281922890896eee8d2bc966 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Wed, 27 May 2020 16:44:37 -0400 Subject: [PATCH 02/38] VS: Dogborg clotter --- code/game/objects/items/stacks/medical_vr.dm | 57 +++++++++++++++++- .../silicon/robot/robot_modules/station_vr.dm | 9 +++ icons/obj/stacks_vr.dmi | Bin 4676 -> 5249 bytes 3 files changed, 65 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/stacks/medical_vr.dm b/code/game/objects/items/stacks/medical_vr.dm index eda72a3fce..4599bb43f9 100644 --- a/code/game/objects/items/stacks/medical_vr.dm +++ b/code/game/objects/items/stacks/medical_vr.dm @@ -18,4 +18,59 @@ if(9) icon_state = "[initial(icon_state)]_9" else - icon_state = "[initial(icon_state)]_10" \ No newline at end of file + icon_state = "[initial(icon_state)]_10" + + +/obj/item/stack/medical/advanced/clotting + name = "liquid bandage kit" + singular_name = "liquid bandage kit" + desc = "A spray that stops bleeding using a patented chemical cocktail. Non-refillable. Only one use required per patient." + icon_state = "clotkit" + heal_burn = 0 + heal_brute = 2 // Only applies to non-humans, to give this some slight application on animals + origin_tech = list(TECH_BIO = 3) + apply_sounds = list('sound/effects/spray.ogg', 'sound/effects/spray2.ogg', 'sound/effects/spray3.ogg') + amount = 5 + max_amount = 5 + +/obj/item/stack/medical/advanced/clotting/attack(mob/living/carbon/human/H, var/mob/user) + if(..()) + return 1 + + if(!istype(H)) + return + + var/clotted = 0 + var/too_far_gone = 0 + + for(var/org in H.organs) //'organs' is just external organs, as opposed to 'internal_organs' + var/obj/item/organ/external/affecting = org + + // No amount of clotting is going to help you here. + if(affecting.open) + too_far_gone++ + continue + + for(var/wnd in affecting.wounds) + var/datum/wound/W = wnd + // No need + if(W.bandaged) + continue + // It's not that amazing + if(W.internal) + continue + if(W.current_stage <= W.max_bleeding_stage) + clotted++ + W.bandage() + + var/healmessage = "You spray [src] onto [H], sealing [clotted ? clotted : "no"] wounds." + if(too_far_gone) + healmessage += " You can see some wounds that are too large where the spray is not taking effect." + + to_chat(user, healmessage) + use(1) + playsound(src, pick(apply_sounds), 25) + update_icon() + +/obj/item/stack/medical/advanced/clotting/update_icon() + icon_state = "[initial(icon_state)]_[amount]" \ No newline at end of file diff --git a/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm b/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm index 8d368233df..7f7d601c33 100644 --- a/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm +++ b/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm @@ -252,6 +252,15 @@ src.modules += new /obj/item/weapon/shockpaddles/robot/hound(src) //Paws of life src.emag = new /obj/item/weapon/dogborg/pounce(src) //Pounce + var/datum/matter_synth/medicine = new /datum/matter_synth/medicine(2000) + synths += medicine + + var/obj/item/stack/medical/advanced/clotting/C = new (src) + C.uses_charge = 1 + C.charge_costs = list(1000) + C.synths = list(medicine) + src.modules += C + var/datum/matter_synth/water = new /datum/matter_synth(500) water.name = "Water reserves" water.recharge_rate = 0 diff --git a/icons/obj/stacks_vr.dmi b/icons/obj/stacks_vr.dmi index 54fe25d911f887c70483b72ec959a9272ca5ab10..34d49af81bcdde7f5afe0af4e6eb366d69a0fdac 100644 GIT binary patch literal 5249 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 aglb=<8Cej8U!eS21dOhk>(%PG#Qzr;_YGhG literal 4676 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 From 3879c4dc572121110528d8bfd3cc2e9ddf93dc82 Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Wed, 27 May 2020 18:50:55 -0400 Subject: [PATCH 03/38] Airless hull and platings --- code/game/turfs/simulated/floor_types_eris.dm | 23 ++++++++++++------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/code/game/turfs/simulated/floor_types_eris.dm b/code/game/turfs/simulated/floor_types_eris.dm index f7ccae4511..1eecacb5c4 100644 --- a/code/game/turfs/simulated/floor_types_eris.dm +++ b/code/game/turfs/simulated/floor_types_eris.dm @@ -889,18 +889,17 @@ movable_atom_whitelist = list(list(/obj/machinery/door/airlock, list(), 2)) */ -/obj/item/stack/tile/floor/rplating - name = "reinforced plating" - singular_name = "dark floor tile" - icon_state = "tile_dark" - matter = list(MAT_STEEL = 1) - /turf/simulated/floor/plating/eris name = "reinforced plating" icon = 'icons/turf/flooring/eris/plating.dmi' icon_state = "plating" initial_flooring = /decl/flooring/reinforced/plating +/turf/simulated/floor/plating/eris/airless + oxygen = 0 + nitrogen = 0 + temperature = TCMB + //==========UNDERPLATING==============\\ /decl/flooring/reinforced/plating/under name = "underplating" @@ -908,7 +907,6 @@ descriptor = "support beams" icon_base = "under" flags = TURF_HAS_CORNERS | TURF_HAS_EDGES | TURF_CAN_BURN | TURF_CAN_BREAK - can_paint = 1 has_base_range = 0 //build_type = /obj/item/stack/material/underplating @@ -928,8 +926,11 @@ /turf/simulated/floor/plating/eris/under name = "underplating" icon_state = "under" - icon = 'icons/turf/flooring/eris/plating.dmi' initial_flooring = /decl/flooring/reinforced/plating/under +/turf/simulated/floor/plating/eris/under/airless + oxygen = 0 + nitrogen = 0 + temperature = TCMB //============HULL PLATING=========\\ /decl/flooring/reinforced/plating/hull @@ -972,6 +973,12 @@ icon = 'icons/turf/flooring/eris/hull.dmi' icon_state = "hullcenter0" initial_flooring = /decl/flooring/reinforced/plating/hull + +/turf/simulated/floor/hull/airless + oxygen = 0 + nitrogen = 0 + temperature = TCMB + /* /turf/simulated/floor/hull/New() if(icon_state != "hullcenter0") From e0c1601afe58a6938a7659b8eea855cb80f415ad Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Wed, 27 May 2020 18:59:01 -0400 Subject: [PATCH 04/38] Talon exterior --- maps/tether/submaps/offmap/talon1.dmm | 2656 ++++++++++++------------- maps/tether/submaps/offmap/talon2.dmm | 2358 +++++++++++----------- 2 files changed, 2507 insertions(+), 2507 deletions(-) diff --git a/maps/tether/submaps/offmap/talon1.dmm b/maps/tether/submaps/offmap/talon1.dmm index 4ec9125235..972e7c1bdc 100644 --- a/maps/tether/submaps/offmap/talon1.dmm +++ b/maps/tether/submaps/offmap/talon1.dmm @@ -20,8 +20,8 @@ /area/talon/deckone/bridge) "ae" = ( /obj/effect/floor_decal/techfloor{ - icon_state = "techfloororange_edges"; - dir = 8 + dir = 8; + icon_state = "techfloororange_edges" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -33,8 +33,8 @@ req_one_access = list(301) }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled/techfloor/grid, /area/talon/deckone/bridge) @@ -43,8 +43,8 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled/dark, /area/talon/deckone/bridge) @@ -81,8 +81,8 @@ /area/talon/deckone/bridge) "ak" = ( /obj/effect/floor_decal/techfloor{ - icon_state = "techfloororange_edges"; - dir = 4 + dir = 4; + icon_state = "techfloororange_edges" }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -91,19 +91,19 @@ /area/talon/deckone/bridge) "al" = ( /obj/machinery/computer/ship/navigation{ - icon_state = "computer"; - dir = 4 + dir = 4; + icon_state = "computer" }, /obj/effect/floor_decal/techfloor{ - icon_state = "techfloororange_edges"; - dir = 8 + dir = 8; + icon_state = "techfloororange_edges" }, /turf/simulated/floor/tiled/techfloor/grid, /area/talon/deckone/bridge) "am" = ( /obj/structure/bed/chair/bay/comfy/brown{ - icon_state = "bay_comfychair_preview"; - dir = 1 + dir = 1; + icon_state = "bay_comfychair_preview" }, /turf/simulated/floor/tiled/techfloor/grid, /area/talon/deckone/bridge) @@ -126,8 +126,8 @@ /area/talon/deckone/bridge) "aq" = ( /obj/effect/floor_decal/techfloor{ - icon_state = "techfloororange_edges"; - dir = 4 + dir = 4; + icon_state = "techfloororange_edges" }, /obj/machinery/computer/ship/engines{ dir = 8; @@ -138,8 +138,8 @@ /area/talon/deckone/bridge) "ar" = ( /obj/effect/floor_decal/techfloor{ - icon_state = "techfloororange_edges"; - dir = 8 + dir = 8; + icon_state = "techfloororange_edges" }, /obj/structure/table/steel, /obj/machinery/light{ @@ -160,8 +160,8 @@ /area/talon/deckone/bridge) "at" = ( /obj/effect/floor_decal/techfloor{ - icon_state = "techfloororange_edges"; - dir = 4 + dir = 4; + icon_state = "techfloororange_edges" }, /obj/structure/table/steel, /obj/machinery/light{ @@ -176,12 +176,12 @@ /area/talon/deckone/bridge) "au" = ( /obj/effect/floor_decal/techfloor{ - icon_state = "techfloororange_edges"; - dir = 8 + dir = 8; + icon_state = "techfloororange_edges" }, /obj/item/modular_computer/console/preset/talon{ - icon_state = "console"; - dir = 4 + dir = 4; + icon_state = "console" }, /turf/simulated/floor/tiled/techfloor/grid, /area/talon/deckone/bridge) @@ -195,26 +195,26 @@ /area/talon/deckone/bridge) "aw" = ( /obj/structure/bed/chair/bay/comfy/red{ - icon_state = "bay_comfychair_preview"; - dir = 4 + dir = 4; + icon_state = "bay_comfychair_preview" }, /turf/simulated/floor/tiled/techfloor/grid, /area/talon/deckone/bridge) "ax" = ( /obj/effect/floor_decal/techfloor{ - icon_state = "techfloororange_edges"; - dir = 4 + dir = 4; + icon_state = "techfloororange_edges" }, /obj/item/modular_computer/console/preset/talon{ - icon_state = "console"; - dir = 8 + dir = 8; + icon_state = "console" }, /turf/simulated/floor/tiled/techfloor/grid, /area/talon/deckone/bridge) "ay" = ( /obj/effect/floor_decal/techfloor{ - icon_state = "techfloororange_edges"; - dir = 8 + dir = 8; + icon_state = "techfloororange_edges" }, /obj/machinery/firealarm{ dir = 8; @@ -227,12 +227,12 @@ /area/talon/deckone/bridge) "aB" = ( /obj/effect/floor_decal/techfloor{ - icon_state = "techfloororange_edges"; - dir = 4 + dir = 4; + icon_state = "techfloororange_edges" }, /obj/machinery/camera/network/talon{ - icon_state = "camera"; - dir = 9 + dir = 9; + icon_state = "camera" }, /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -245,8 +245,8 @@ /area/talon/maintenance/deckone_port) "aD" = ( /obj/effect/floor_decal/techfloor{ - icon_state = "techfloororange_edges"; - dir = 8 + dir = 8; + icon_state = "techfloororange_edges" }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -312,8 +312,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled/dark, /area/talon/deckone/bridge) @@ -323,15 +323,15 @@ pixel_y = -25 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled/techfloor/grid, /area/talon/deckone/bridge) "aJ" = ( /obj/effect/floor_decal/techfloor{ - icon_state = "techfloororange_edges"; - dir = 4 + dir = 4; + icon_state = "techfloororange_edges" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -417,8 +417,8 @@ icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals_central4{ - icon_state = "steel_decals_central4"; - dir = 1 + dir = 1; + icon_state = "steel_decals_central4" }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, @@ -488,15 +488,15 @@ /area/talon/deckone/secure_storage) "bf" = ( /obj/structure/cable/green{ - icon_state = "1-2"; - dir = 1 + dir = 1; + icon_state = "1-2" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/secure_storage) "bg" = ( /obj/structure/cable/green{ - icon_state = "1-2"; - dir = 1 + dir = 1; + icon_state = "1-2" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/armory) @@ -623,8 +623,8 @@ /area/talon/deckone/secure_storage) "bu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -641,8 +641,8 @@ /area/talon/deckone/secure_storage) "bv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -677,8 +677,8 @@ /area/talon/deckone/bridge_hallway) "bx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -689,15 +689,15 @@ icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals_central4{ - icon_state = "steel_decals_central4"; - dir = 4 + dir = 4; + icon_state = "steel_decals_central4" }, /turf/simulated/floor/tiled/dark, /area/talon/deckone/bridge_hallway) "by" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -735,8 +735,8 @@ /area/talon/deckone/armory) "bA" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /turf/simulated/floor/tiled/monotile, /area/talon/deckone/central_hallway) @@ -881,8 +881,8 @@ /obj/effect/floor_decal/steeldecal/steel_decals9, /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ - icon_state = "pipe-t"; - dir = 4 + dir = 4; + icon_state = "pipe-t" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/bridge_hallway) @@ -931,8 +931,8 @@ /area/talon/maintenance/deckone_port) "bT" = ( /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /obj/structure/toilet, /obj/machinery/door/window/brigdoor/eastleft{ @@ -970,8 +970,8 @@ dir = 6 }, /obj/effect/floor_decal/steeldecal/steel_decals_central4{ - icon_state = "steel_decals_central4"; - dir = 1 + dir = 1; + icon_state = "steel_decals_central4" }, /obj/structure/sign/securearea{ pixel_x = -32; @@ -1044,9 +1044,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/steel, /area/talon/deckone/bridge_hallway) -"cc" = ( -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_port_fore_wing) "cd" = ( /obj/structure/cable/green{ d2 = 2; @@ -1349,8 +1346,8 @@ /area/talon/deckone/starboard_solar) "cH" = ( /obj/machinery/power/terminal{ - icon_state = "term"; - dir = 8 + dir = 8; + icon_state = "term" }, /obj/structure/cable/yellow{ d2 = 4; @@ -1390,8 +1387,8 @@ /area/talon/maintenance/deckone_port) "cK" = ( /obj/machinery/power/solar_control{ - icon_state = "solar"; - dir = 4 + dir = 4; + icon_state = "solar" }, /obj/structure/cable/yellow, /turf/simulated/floor/tiled/techfloor/grid, @@ -1507,8 +1504,8 @@ icon_state = "1-8" }, /obj/effect/floor_decal/steeldecal/steel_decals_central4{ - icon_state = "steel_decals_central4"; - dir = 1 + dir = 1; + icon_state = "steel_decals_central4" }, /obj/structure/disposalpipe/segment{ dir = 1; @@ -1546,8 +1543,8 @@ icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals_central4{ - icon_state = "steel_decals_central4"; - dir = 4 + dir = 4; + icon_state = "steel_decals_central4" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) @@ -1598,8 +1595,8 @@ /area/talon/deckone/starboard_solar) "da" = ( /obj/machinery/power/solar_control{ - icon_state = "solar"; - dir = 8 + dir = 8; + icon_state = "solar" }, /obj/structure/cable/yellow, /turf/simulated/floor/tiled/techfloor/grid, @@ -1777,9 +1774,6 @@ }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) -"dt" = ( -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_starboard_fore_wing) "du" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -1806,8 +1800,8 @@ /area/talon/deckone/central_hallway) "dx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 + dir = 5; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -1847,12 +1841,12 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/effect/floor_decal/emblem/talon_big{ - icon_state = "talon_big"; - dir = 10 + dir = 10; + icon_state = "talon_big" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) @@ -1876,8 +1870,8 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/borderfloor/corner2, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) @@ -1890,8 +1884,8 @@ dir = 9 }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) @@ -1902,8 +1896,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central4, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) @@ -2035,17 +2029,14 @@ }, /turf/simulated/floor/plating, /area/talon/maintenance/deckone_port) -"dR" = ( -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_starboard_aft_wing) "dS" = ( /obj/structure/table/standard, /turf/simulated/floor/tiled/dark, /area/talon/deckone/brig) "dT" = ( /obj/structure/bed/chair/bay/chair{ - icon_state = "bay_chair_preview"; - dir = 8 + dir = 8; + icon_state = "bay_chair_preview" }, /turf/simulated/floor/tiled/dark, /area/talon/deckone/brig) @@ -2255,8 +2246,8 @@ /area/talon/deckone/brig) "en" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 + dir = 5; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -2269,8 +2260,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/door/window/brigdoor/eastleft{ dir = 8; @@ -2299,15 +2290,15 @@ /area/talon/deckone/brig) "eq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/brig) @@ -2319,15 +2310,15 @@ dir = 4 }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/brig) "es" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central4{ - icon_state = "steel_decals_central4"; - dir = 1 + dir = 1; + icon_state = "steel_decals_central4" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/brig) @@ -2336,8 +2327,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/structure/cable/green{ d1 = 4; @@ -2349,8 +2340,8 @@ req_one_access = list(301) }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel_grid, /area/talon/deckone/brig) @@ -2438,19 +2429,19 @@ icon_state = "1-4" }, /obj/effect/floor_decal/steeldecal/steel_decals_central4{ - icon_state = "steel_decals_central4"; - dir = 4 + dir = 4; + icon_state = "steel_decals_central4" }, /obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 + dir = 2; + icon_state = "pipe-j2" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) "ez" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -2468,8 +2459,8 @@ req_one_access = list(301) }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel_grid, /area/talon/deckone/medical) @@ -2654,8 +2645,8 @@ }, /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ - icon_state = "pipe-t"; - dir = 1 + dir = 1; + icon_state = "pipe-t" }, /turf/simulated/floor/tiled/white, /area/talon/deckone/medical) @@ -2739,8 +2730,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/emblem/talon_big{ - icon_state = "talon_big"; - dir = 1 + dir = 1; + icon_state = "talon_big" }, /turf/simulated/floor/tiled/monotile, /area/talon/deckone/central_hallway) @@ -2981,15 +2972,15 @@ pixel_x = 30 }, /obj/machinery/camera/network/talon{ - icon_state = "camera"; - dir = 8 + dir = 8; + icon_state = "camera" }, /turf/space, /area/talon/maintenance/deckone_port) "fq" = ( /obj/item/modular_computer/console/preset/talon{ - icon_state = "console"; - dir = 4 + dir = 4; + icon_state = "console" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/brig) @@ -3003,12 +2994,12 @@ dir = 4 }, /obj/structure/bed/chair/bay/chair{ - icon_state = "bay_chair_preview"; - dir = 8 + dir = 8; + icon_state = "bay_chair_preview" }, /obj/machinery/camera/network/talon{ - icon_state = "camera"; - dir = 9 + dir = 9; + icon_state = "camera" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/brig) @@ -3084,8 +3075,8 @@ /area/talon/deckone/central_hallway) "fw" = ( /obj/effect/floor_decal/spline/plain{ - icon_state = "spline_plain"; - dir = 1 + dir = 1; + icon_state = "spline_plain" }, /obj/machinery/door/airlock/multi_tile/glass{ req_access = list(301) @@ -3095,8 +3086,8 @@ /area/talon/deckone/medical) "fx" = ( /obj/effect/floor_decal/spline/plain{ - icon_state = "spline_plain"; - dir = 1 + dir = 1; + icon_state = "spline_plain" }, /obj/machinery/door/firedoor/glass/talon, /turf/simulated/floor/tiled/steel_grid, @@ -3107,8 +3098,8 @@ pixel_x = -30 }, /obj/machinery/camera/network/talon{ - icon_state = "camera"; - dir = 4 + dir = 4; + icon_state = "camera" }, /turf/space, /area/talon/maintenance/deckone_starboard) @@ -3144,15 +3135,15 @@ /obj/effect/map_helper/airlock/atmos/chamber_pump, /obj/effect/map_helper/airlock/sensor/chamber_sensor, /obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - icon_state = "map_vent_aux"; - dir = 4 + dir = 4; + icon_state = "map_vent_aux" }, /turf/simulated/floor/plating, /area/talon/maintenance/deckone_port) "fC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ - icon_state = "intact-aux"; - dir = 4 + dir = 4; + icon_state = "intact-aux" }, /obj/effect/map_helper/airlock/door/int_door, /obj/machinery/door/airlock/glass_external{ @@ -3162,8 +3153,8 @@ /area/talon/maintenance/deckone_port) "fD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ - icon_state = "intact-aux"; - dir = 4 + dir = 4; + icon_state = "intact-aux" }, /obj/machinery/airlock_sensor{ dir = 4; @@ -3177,8 +3168,8 @@ /area/talon/maintenance/deckone_port) "fE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ - icon_state = "intact-aux"; - dir = 10 + dir = 10; + icon_state = "intact-aux" }, /obj/structure/catwalk, /turf/simulated/floor/plating, @@ -3314,16 +3305,16 @@ /area/talon/deckone/workroom) "fR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ - icon_state = "intact-aux"; - dir = 6 + dir = 6; + icon_state = "intact-aux" }, /obj/structure/catwalk, /turf/simulated/floor/plating, /area/talon/maintenance/deckone_starboard) "fS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ - icon_state = "intact-aux"; - dir = 4 + dir = 4; + icon_state = "intact-aux" }, /obj/machinery/airlock_sensor{ dir = 8; @@ -3337,8 +3328,8 @@ /area/talon/maintenance/deckone_starboard) "fT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ - icon_state = "intact-aux"; - dir = 4 + dir = 4; + icon_state = "intact-aux" }, /obj/effect/map_helper/airlock/door/int_door, /obj/machinery/door/airlock/glass_external{ @@ -3360,8 +3351,8 @@ /obj/effect/map_helper/airlock/atmos/chamber_pump, /obj/effect/map_helper/airlock/sensor/chamber_sensor, /obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - icon_state = "map_vent_aux"; - dir = 8 + dir = 8; + icon_state = "map_vent_aux" }, /turf/simulated/floor/plating, /area/talon/maintenance/deckone_starboard) @@ -3426,8 +3417,8 @@ icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals_central4{ - icon_state = "steel_decals_central4"; - dir = 4 + dir = 4; + icon_state = "steel_decals_central4" }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/steel, @@ -3438,8 +3429,8 @@ /area/talon/deckone/workroom) "gd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -3448,12 +3439,12 @@ icon_state = "2-4" }, /obj/effect/floor_decal/steeldecal/steel_decals_central4{ - icon_state = "steel_decals_central4"; - dir = 4 + dir = 4; + icon_state = "steel_decals_central4" }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/brig) @@ -3513,8 +3504,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/structure/cable/green{ d1 = 4; @@ -3526,8 +3517,8 @@ }, /obj/machinery/door/firedoor/glass/talon, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel_grid, /area/talon/deckone/workroom) @@ -3540,8 +3531,8 @@ /area/talon/deckone/workroom) "gm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/structure/cable/green{ d1 = 4; @@ -3549,8 +3540,8 @@ icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/workroom) @@ -3564,8 +3555,8 @@ icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/workroom) @@ -3577,8 +3568,8 @@ }, /obj/structure/bed/chair/office/light, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/workroom) @@ -3589,8 +3580,8 @@ icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/workroom) @@ -3688,8 +3679,8 @@ "gA" = ( /obj/effect/floor_decal/borderfloor, /obj/item/modular_computer/console/preset/talon{ - icon_state = "console"; - dir = 1 + dir = 1; + icon_state = "console" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/workroom) @@ -3711,8 +3702,8 @@ /obj/machinery/light, /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ - icon_state = "pipe-t"; - dir = 1 + dir = 1; + icon_state = "pipe-t" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/workroom) @@ -3789,9 +3780,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) -"gI" = ( -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_port_aft_wing) "gJ" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -3809,8 +3797,8 @@ "gK" = ( /obj/structure/catwalk, /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /turf/simulated/floor/plating, /area/talon/maintenance/deckone_port) @@ -4031,8 +4019,8 @@ /area/talon/deckone/starboard_eng_store) "hk" = ( /obj/effect/floor_decal/techfloor{ - icon_state = "techfloororange_edges"; - dir = 4 + dir = 4; + icon_state = "techfloororange_edges" }, /turf/simulated/floor/tiled/techfloor, /area/talon/deckone/starboard_eng_store) @@ -4173,8 +4161,8 @@ pixel_y = -24 }, /obj/effect/floor_decal/techfloor{ - icon_state = "techfloororange_edges"; - dir = 4 + dir = 4; + icon_state = "techfloororange_edges" }, /turf/simulated/floor/tiled/techfloor, /area/talon/deckone/starboard_eng_store) @@ -4202,8 +4190,8 @@ icon_state = "1-2" }, /obj/effect/floor_decal/spline/plain{ - icon_state = "spline_plain"; - dir = 1 + dir = 1; + icon_state = "spline_plain" }, /obj/machinery/door/airlock/maintenance/engi{ req_one_access = list(301) @@ -4251,8 +4239,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/structure/cable/green{ d1 = 4; @@ -4261,8 +4249,8 @@ }, /obj/effect/floor_decal/borderfloor, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) @@ -4277,8 +4265,8 @@ }, /obj/effect/floor_decal/borderfloor, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) @@ -4287,8 +4275,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/structure/cable/green{ d1 = 4; @@ -4301,8 +4289,8 @@ icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) @@ -4321,8 +4309,8 @@ }, /obj/effect/floor_decal/borderfloor, /obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 + dir = 4; + icon_state = "pipe-j2" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) @@ -4331,8 +4319,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/structure/cable/green{ d1 = 4; @@ -4344,8 +4332,8 @@ dir = 9 }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) @@ -4368,8 +4356,8 @@ icon_state = "1-2" }, /obj/effect/floor_decal/spline/plain{ - icon_state = "spline_plain"; - dir = 1 + dir = 1; + icon_state = "spline_plain" }, /obj/machinery/door/airlock/maintenance/engi{ req_one_access = list(301) @@ -4420,8 +4408,8 @@ /area/talon/deckone/central_hallway) "hS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -4450,8 +4438,8 @@ /area/talon/deckone/central_hallway) "hT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -4467,15 +4455,15 @@ icon_state = "1-4" }, /obj/effect/floor_decal/steeldecal/steel_decals_central4{ - icon_state = "steel_decals_central4"; - dir = 1 + dir = 1; + icon_state = "steel_decals_central4" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) "hU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -4506,8 +4494,8 @@ /area/talon/deckone/central_hallway) "hV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -4530,8 +4518,8 @@ pixel_y = 32 }, /obj/effect/floor_decal/steeldecal/steel_decals5{ - icon_state = "steel_decals5"; - dir = 4 + dir = 4; + icon_state = "steel_decals5" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) @@ -4555,8 +4543,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/structure/cable/green{ d1 = 4; @@ -4566,8 +4554,8 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/borderfloor/corner2, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) @@ -4622,8 +4610,8 @@ /area/talon/deckone/central_hallway) "ib" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -4634,8 +4622,8 @@ icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, @@ -4645,8 +4633,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/structure/cable/green{ d1 = 4; @@ -4661,12 +4649,12 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals5{ - icon_state = "steel_decals5"; - dir = 8 + dir = 8; + icon_state = "steel_decals5" }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) @@ -4675,8 +4663,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/structure/cable/green{ d1 = 4; @@ -4696,8 +4684,8 @@ dir = 4 }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) @@ -4706,8 +4694,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/structure/cable/green{ d1 = 4; @@ -4718,12 +4706,12 @@ icon_state = "1-8" }, /obj/effect/floor_decal/steeldecal/steel_decals_central4{ - icon_state = "steel_decals_central4"; - dir = 1 + dir = 1; + icon_state = "steel_decals_central4" }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) @@ -4732,8 +4720,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/structure/cable/green{ d1 = 4; @@ -4755,8 +4743,8 @@ dir = 4 }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) @@ -4797,16 +4785,16 @@ /area/talon/deckone/central_hallway) "ii" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ - icon_state = "intact-aux"; - dir = 5 + dir = 5; + icon_state = "intact-aux" }, /obj/structure/catwalk, /turf/simulated/floor/plating, /area/talon/maintenance/deckone_port) "ij" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ - icon_state = "intact-aux"; - dir = 4 + dir = 4; + icon_state = "intact-aux" }, /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass/talon, @@ -4814,8 +4802,8 @@ /area/talon/deckone/central_hallway) "ik" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ - icon_state = "intact-aux"; - dir = 4 + dir = 4; + icon_state = "intact-aux" }, /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -4830,8 +4818,8 @@ /area/talon/deckone/central_hallway) "il" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ - icon_state = "intact-aux"; - dir = 10 + dir = 10; + icon_state = "intact-aux" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -4873,8 +4861,8 @@ dir = 1 }, /obj/effect/floor_decal/steeldecal/steel_decals5{ - icon_state = "steel_decals5"; - dir = 4 + dir = 4; + icon_state = "steel_decals5" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) @@ -4886,22 +4874,22 @@ /area/talon/deckone/central_hallway) "iq" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 5 + dir = 5; + icon_state = "warning" }, /turf/simulated/floor/tiled/monotile, /area/talon/deckone/central_hallway) "ir" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 + dir = 8; + icon_state = "warning" }, /turf/simulated/floor/tiled/monotile, /area/talon/deckone/central_hallway) "is" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 + dir = 4; + icon_state = "warning" }, /turf/simulated/floor/tiled/monotile, /area/talon/deckone/central_hallway) @@ -4920,8 +4908,8 @@ dir = 8 }, /obj/effect/floor_decal/steeldecal/steel_decals5{ - icon_state = "steel_decals5"; - dir = 8 + dir = 8; + icon_state = "steel_decals5" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) @@ -4950,8 +4938,8 @@ /area/talon/deckone/central_hallway) "ix" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ - icon_state = "intact-aux"; - dir = 6 + dir = 6; + icon_state = "intact-aux" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -4966,8 +4954,8 @@ /area/talon/deckone/central_hallway) "iy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ - icon_state = "intact-aux"; - dir = 4 + dir = 4; + icon_state = "intact-aux" }, /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -4980,8 +4968,8 @@ /area/talon/deckone/central_hallway) "iz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ - icon_state = "intact-aux"; - dir = 9 + dir = 9; + icon_state = "intact-aux" }, /obj/structure/catwalk, /turf/simulated/floor/plating, @@ -5044,16 +5032,16 @@ "iH" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/machinery/atmospherics/portables_connector/aux{ - icon_state = "map_connector-aux"; - dir = 4 + dir = 4; + icon_state = "map_connector-aux" }, /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/tiled/techmaint, /area/talon/deckone/port_eng) "iI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ - icon_state = "intact-aux"; - dir = 9 + dir = 9; + icon_state = "intact-aux" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -5078,8 +5066,8 @@ pixel_y = 26 }, /obj/machinery/atmospherics/pipe/cap/hidden{ - icon_state = "cap"; - dir = 4 + dir = 4; + icon_state = "cap" }, /turf/simulated/floor/tiled/techmaint, /area/talon/deckone/port_eng) @@ -5150,15 +5138,15 @@ pixel_y = 26 }, /obj/machinery/atmospherics/pipe/cap/hidden{ - icon_state = "cap"; - dir = 8 + dir = 8; + icon_state = "cap" }, /turf/simulated/floor/tiled/techmaint, /area/talon/deckone/starboard_eng) "iT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ - icon_state = "intact-aux"; - dir = 5 + dir = 5; + icon_state = "intact-aux" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -5176,8 +5164,8 @@ "iU" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/machinery/atmospherics/portables_connector/aux{ - icon_state = "map_connector-aux"; - dir = 8 + dir = 8; + icon_state = "map_connector-aux" }, /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/tiled/techmaint, @@ -5254,8 +5242,8 @@ /area/talon/deckone/starboard_eng) "je" = ( /obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - icon_state = "up-scrubbers"; - dir = 8 + dir = 8; + icon_state = "up-scrubbers" }, /obj/structure/disposalpipe/up{ dir = 8 @@ -5276,14 +5264,14 @@ req_one_access = list(301) }, /obj/machinery/atmospherics/unary/vent_pump/aux{ - icon_state = "map_vent_aux"; - dir = 4 + dir = 4; + icon_state = "map_vent_aux" }, /obj/effect/map_helper/airlock/atmos/chamber_pump, /obj/effect/map_helper/airlock/sensor/chamber_sensor, /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/talonboat) @@ -5411,15 +5399,15 @@ pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 + dir = 5; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled/techmaint, /area/talon/deckone/port_eng) "jC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled/techmaint, /area/talon/deckone/port_eng) @@ -5464,8 +5452,8 @@ /area/talon/deckone/starboard_eng) "jG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled/techmaint, /area/talon/deckone/starboard_eng) @@ -5504,22 +5492,22 @@ /area/talon/deckone/central_hallway) "jL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - icon_state = "intact-fuel"; - dir = 6 + dir = 6; + icon_state = "intact-fuel" }, /turf/simulated/floor/tiled/techmaint, /area/talon/deckone/port_eng) "jM" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - icon_state = "map-fuel"; - dir = 1 + dir = 1; + icon_state = "map-fuel" }, /turf/simulated/floor/tiled/techmaint, /area/talon/deckone/port_eng) "jN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - icon_state = "intact-fuel"; - dir = 10 + dir = 10; + icon_state = "intact-fuel" }, /obj/structure/extinguisher_cabinet{ dir = 8; @@ -5530,8 +5518,8 @@ /area/talon/deckone/port_eng) "jO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - icon_state = "intact-fuel"; - dir = 6 + dir = 6; + icon_state = "intact-fuel" }, /obj/structure/extinguisher_cabinet{ dir = 4; @@ -5542,15 +5530,15 @@ /area/talon/deckone/starboard_eng) "jP" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - icon_state = "map-fuel"; - dir = 1 + dir = 1; + icon_state = "map-fuel" }, /turf/simulated/floor/tiled/techmaint, /area/talon/deckone/starboard_eng) "jQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - icon_state = "intact-fuel"; - dir = 10 + dir = 10; + icon_state = "intact-fuel" }, /turf/simulated/floor/tiled/techmaint, /area/talon/deckone/starboard_eng) @@ -5558,15 +5546,15 @@ /obj/machinery/atmospherics/binary/pump/fuel, /obj/effect/floor_decal/industrial/outline/red, /obj/machinery/camera/network/talon{ - icon_state = "camera"; - dir = 4 + dir = 4; + icon_state = "camera" }, /turf/simulated/floor/tiled/techmaint, /area/talon/deckone/port_eng) "jT" = ( /obj/machinery/atmospherics/portables_connector/fuel{ - icon_state = "map_connector-fuel"; - dir = 1 + dir = 1; + icon_state = "map_connector-fuel" }, /obj/effect/floor_decal/industrial/outline/red, /obj/machinery/portable_atmospherics/canister/phoron, @@ -5588,8 +5576,8 @@ /area/talon/deckone/medical) "jW" = ( /obj/machinery/atmospherics/portables_connector/fuel{ - icon_state = "map_connector-fuel"; - dir = 1 + dir = 1; + icon_state = "map_connector-fuel" }, /obj/effect/floor_decal/industrial/outline/red, /obj/machinery/portable_atmospherics/canister/phoron, @@ -5599,8 +5587,8 @@ /obj/machinery/atmospherics/binary/pump/fuel, /obj/effect/floor_decal/industrial/outline/red, /obj/machinery/camera/network/talon{ - icon_state = "camera"; - dir = 9 + dir = 9; + icon_state = "camera" }, /turf/simulated/floor/tiled/techmaint, /area/talon/deckone/starboard_eng) @@ -5609,50 +5597,50 @@ /area/talon/deckone/starboard_eng) "jZ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - icon_state = "map-fuel"; - dir = 8 + dir = 8; + icon_state = "map-fuel" }, /turf/simulated/wall/rshull, /area/talon/deckone/port_eng) "kb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - icon_state = "intact-fuel"; - dir = 4 + dir = 4; + icon_state = "intact-fuel" }, /turf/simulated/wall/rshull, /area/talon/deckone/port_eng) "kc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - icon_state = "intact-fuel"; - dir = 10 + dir = 10; + icon_state = "intact-fuel" }, /turf/simulated/wall/rshull, /area/talon/deckone/port_eng) "kd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - icon_state = "intact-fuel"; - dir = 6 + dir = 6; + icon_state = "intact-fuel" }, /turf/simulated/wall/rshull, /area/talon/deckone/starboard_eng) "ke" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - icon_state = "map-fuel"; - dir = 1 + dir = 1; + icon_state = "map-fuel" }, /turf/simulated/wall/rshull, /area/talon/deckone/starboard_eng) "kf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - icon_state = "intact-fuel"; - dir = 4 + dir = 4; + icon_state = "intact-fuel" }, /turf/simulated/wall/rshull, /area/talon/deckone/starboard_eng) "kg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - icon_state = "intact-fuel"; - dir = 9 + dir = 9; + icon_state = "intact-fuel" }, /turf/simulated/wall/rshull, /area/talon/deckone/starboard_eng) @@ -5679,8 +5667,8 @@ "kk" = ( /obj/structure/catwalk, /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /turf/simulated/floor/plating, /area/talon/maintenance/deckone_starboard) @@ -5739,8 +5727,8 @@ pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/structure/cable/green{ d1 = 4; @@ -5751,15 +5739,15 @@ dir = 8 }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/workroom) "kt" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central4{ - icon_state = "steel_decals_central4"; - dir = 1 + dir = 1; + icon_state = "steel_decals_central4" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/workroom) @@ -5801,12 +5789,12 @@ /area/talon/deckone/central_hallway) "ky" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central6{ - icon_state = "steel_decals_central6"; - dir = 4 + dir = 4; + icon_state = "steel_decals_central6" }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/monotile, /area/talon/deckone/central_hallway) @@ -5972,8 +5960,8 @@ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 + dir = 5; + icon_state = "intact-scrubbers" }, /obj/structure/cable/green{ d1 = 1; @@ -6084,8 +6072,8 @@ /area/shuttle/talonboat) "lg" = ( /obj/structure/bed/chair/bay/chair{ - icon_state = "bay_chair_preview"; - dir = 1 + dir = 1; + icon_state = "bay_chair_preview" }, /turf/simulated/floor/tiled/techmaint, /area/shuttle/talonboat) @@ -6111,8 +6099,8 @@ }, /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector/aux{ - icon_state = "map_connector-aux"; - dir = 4 + dir = 4; + icon_state = "map_connector-aux" }, /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/techfloor, @@ -6126,8 +6114,8 @@ }, /obj/effect/map_helper/airlock/sensor/int_sensor, /obj/machinery/atmospherics/pipe/simple/hidden/aux{ - icon_state = "intact-aux"; - dir = 10 + dir = 10; + icon_state = "intact-aux" }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/talonboat) @@ -6179,24 +6167,24 @@ pixel_x = 28 }, /obj/machinery/atmospherics/unary/vent_pump/aux{ - icon_state = "map_vent_aux"; - dir = 8 + dir = 8; + icon_state = "map_vent_aux" }, /obj/effect/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/tiled/techfloor, /area/shuttle/talonboat) "ls" = ( /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/techfloor/grid, /area/talon/deckone/bridge) "lt" = ( /obj/effect/map_helper/airlock/door/simple, /obj/structure/cable/green{ - icon_state = "4-8"; - dir = 1 + dir = 1; + icon_state = "4-8" }, /obj/machinery/door/airlock/glass_external{ req_one_access = list(301) @@ -6205,12 +6193,12 @@ /area/shuttle/talonboat) "lu" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 + dir = 4; + icon_state = "warning" }, /obj/structure/cable/green{ - icon_state = "4-8"; - dir = 1 + dir = 1; + icon_state = "4-8" }, /turf/simulated/floor/tiled/monotile, /area/talon/deckone/central_hallway) @@ -6234,8 +6222,8 @@ dir = 8 }, /obj/machinery/computer/shuttle_control/explore/talonboat{ - icon_state = "computer"; - dir = 4 + dir = 4; + icon_state = "computer" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) @@ -6271,6 +6259,12 @@ }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) +"lD" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_port_aft_wing) "lW" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 10 @@ -6279,23 +6273,11 @@ dir = 9 }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) -"mh" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_port_aft_wing) -"mm" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_port_fore_wing) "mv" = ( /obj/structure/catwalk, /obj/structure/cable/green{ @@ -6317,8 +6299,8 @@ "np" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/camera/network/talon{ - icon_state = "camera"; - dir = 9 + dir = 9; + icon_state = "camera" }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/talonboat) @@ -6327,12 +6309,12 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/effect/floor_decal/emblem/talon_big{ - icon_state = "talon_big"; - dir = 6 + dir = 6; + icon_state = "talon_big" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) @@ -6343,6 +6325,12 @@ }, /turf/space, /area/talon/maintenance/deckone_port) +"nz" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 4 + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_port_aft_wing) "nI" = ( /obj/structure/catwalk, /obj/structure/sign/warning/moving_parts{ @@ -6362,8 +6350,8 @@ "nR" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /turf/space, /area/talon/maintenance/deckone_starboard_fore_wing) @@ -6381,24 +6369,25 @@ }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/armory) -"oQ" = ( +"pc" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6; + icon_state = "intact" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_starboard_fore_wing) +"pr" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /obj/effect/floor_decal/industrial/warning/dust{ dir = 8 }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_starboard_aft_wing) -"oR" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - icon_state = "intact"; - dir = 9 - }, -/turf/simulated/floor/reinforced/airless, +/turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_port_fore_wing) -"oW" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_port_fore_wing) -"pz" = ( +"qo" = ( /obj/machinery/power/pointdefense{ id_tag = "talon_pd" }, @@ -6409,53 +6398,54 @@ dir = 4 }, /obj/structure/cable/green{ - icon_state = "0-8" + icon_state = "0-2" }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_starboard_fore_wing) +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_port_aft_wing) "qA" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/aux, /turf/simulated/floor/tiled/techmaint, /area/shuttle/talonboat) -"qM" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - icon_state = "intact"; - dir = 9 +"qF" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 }, -/obj/effect/floor_decal/industrial/warning/dust/corner, -/turf/simulated/floor/reinforced/airless, +/turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_fore_wing) -"qN" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - icon_state = "intact"; - dir = 4 +"rm" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1; + icon_state = "warningcorner_dust" }, -/turf/simulated/floor/reinforced/airless, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_starboard_aft_wing) +"rH" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner, +/turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_port_fore_wing) -"qQ" = ( -/obj/effect/floor_decal/emblem/talon, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_port_aft_wing) -"qT" = ( -/obj/structure/cable/green{ - icon_state = "4-8"; - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_starboard_fore_wing) -"rg" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_port_aft_wing) -"ry" = ( +"rJ" = ( +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_port_fore_wing) +"rL" = ( /obj/structure/cable/green{ icon_state = "1-8" }, /obj/effect/floor_decal/industrial/warning/dust{ dir = 1 }, -/turf/simulated/floor/reinforced/airless, +/turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_aft_wing) +"sc" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_port_aft_wing) "sk" = ( /obj/structure/catwalk, /obj/structure/sign/warning/airlock{ @@ -6472,17 +6462,6 @@ /obj/machinery/portable_atmospherics/canister/oxygen, /turf/simulated/floor/plating, /area/talon/maintenance/deckone_port) -"sz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_port_fore_wing) "sB" = ( /obj/structure/catwalk, /obj/structure/cable/green{ @@ -6520,8 +6499,8 @@ dir = 1 }, /obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 + dir = 2; + icon_state = "pipe-j2" }, /turf/simulated/floor/tiled/monotile, /area/talon/deckone/central_hallway) @@ -6537,13 +6516,6 @@ /obj/effect/map_helper/airlock/sensor/ext_sensor, /turf/simulated/floor/tiled/techmaint, /area/shuttle/talonboat) -"sK" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - icon_state = "intact"; - dir = 6 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_port_fore_wing) "sM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -6553,19 +6525,45 @@ }, /turf/simulated/floor/tiled/dark, /area/talon/deckone/bridge) +"tg" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_port_aft_wing) +"tJ" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_port_fore_wing) "tL" = ( /obj/effect/floor_decal/emblem/talon_big{ - icon_state = "talon_big"; - dir = 9 + dir = 9; + icon_state = "talon_big" }, /turf/simulated/floor/tiled/monotile, /area/talon/deckone/central_hallway) -"uL" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ +"tZ" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 8; + icon_state = "intact" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_port_fore_wing) +"uo" = ( +/obj/machinery/power/pointdefense{ + id_tag = "talon_pd" + }, +/obj/effect/floor_decal/techfloor{ dir = 4 }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_port_aft_wing) +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_starboard_aft_wing) "vc" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 @@ -6574,11 +6572,18 @@ dir = 5 }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) +"vf" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_starboard_fore_wing) "vl" = ( /obj/effect/floor_decal/borderfloor{ dir = 8; @@ -6587,18 +6592,11 @@ }, /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ - icon_state = "pipe-t"; - dir = 4 + dir = 4; + icon_state = "pipe-t" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) -"vn" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - icon_state = "intact"; - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_starboard_fore_wing) "vs" = ( /obj/effect/floor_decal/steeldecal/steel_decals10, /obj/effect/floor_decal/steeldecal/steel_decals10{ @@ -6619,6 +6617,18 @@ }, /turf/simulated/floor/plating, /area/talon/maintenance/deckone_starboard) +"vz" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_port_aft_wing) +"vA" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_port_fore_wing) +"we" = ( +/obj/effect/floor_decal/emblem/talon, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_starboard_aft_wing) "wk" = ( /obj/structure/sign/warning/docking_area, /turf/simulated/wall, @@ -6636,8 +6646,8 @@ id = "talon_windows" }, /obj/structure/cable/green{ - icon_state = "4-8"; - dir = 1 + dir = 1; + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/talon/maintenance/deckone_starboard) @@ -6666,6 +6676,12 @@ /obj/item/clothing/accessory/holster/waist, /turf/simulated/floor/tiled/dark, /area/talon/deckone/armory) +"yd" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_starboard_aft_wing) "yg" = ( /turf/space, /area/talon/deckone/starboard_eng) @@ -6692,17 +6708,6 @@ }, /turf/space, /area/talon/maintenance/deckone_port_aft_wing) -"yu" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - icon_state = "intact"; - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_starboard_fore_wing) "yy" = ( /obj/structure/catwalk, /obj/structure/cable/green{ @@ -6712,6 +6717,12 @@ }, /turf/space, /area/talon/maintenance/deckone_starboard_aft_wing) +"yA" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_starboard_fore_wing) "yN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -6726,6 +6737,13 @@ }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/brig) +"yO" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1; + icon_state = "warningcorner_dust" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_starboard_fore_wing) "zC" = ( /obj/structure/catwalk, /obj/structure/cable/green{ @@ -6735,78 +6753,65 @@ }, /turf/simulated/floor/plating, /area/talon/maintenance/deckone_starboard) -"zO" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_port_fore_wing) -"zT" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - icon_state = "intact"; - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_port_fore_wing) -"AE" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_starboard_fore_wing) "AM" = ( /obj/structure/sign/warning/hot_exhaust{ pixel_y = 29 }, /turf/space, /area/space) -"AP" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - icon_state = "intact"; - dir = 10 +"AN" = ( +/obj/machinery/power/pointdefense{ + id_tag = "talon_pd" }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_port_fore_wing) +"AY" = ( /obj/effect/floor_decal/industrial/warning/dust/corner{ dir = 4 }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_starboard_fore_wing) -"Bo" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_starboard_aft_wing) -"Bs" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8 +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_port_fore_wing) +"Bh" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4; + icon_state = "intact" }, -/turf/simulated/floor/reinforced/airless, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_port_fore_wing) +"Bq" = ( +/obj/structure/cable/green{ + dir = 1; + icon_state = "4-8" + }, +/turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_fore_wing) +"Bs" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_starboard_aft_wing) "Bz" = ( /obj/machinery/camera/network/talon{ - icon_state = "camera"; - dir = 9 + dir = 9; + icon_state = "camera" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) -"BR" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - icon_state = "intact"; - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_port_fore_wing) "Cm" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/dark, /area/talon/deckone/bridge) @@ -6820,8 +6825,8 @@ pixel_y = 27 }, /obj/structure/sign/directions/bridge{ - icon_state = "direction_bridge"; dir = 1; + icon_state = "direction_bridge"; pixel_y = 41 }, /obj/effect/floor_decal/borderfloor{ @@ -6835,32 +6840,53 @@ pixel_y = 0 }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) -"CT" = ( -/obj/structure/cable/green{ - icon_state = "4-8"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_starboard_fore_wing) -"Ds" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_port_aft_wing) -"Dw" = ( +"CP" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - icon_state = "intact"; - dir = 5 + dir = 4; + icon_state = "intact" }, -/turf/simulated/floor/reinforced/airless, +/turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_fore_wing) +"CU" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_starboard_fore_wing) +"Dh" = ( +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_port_aft_wing) +"Dl" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_starboard_fore_wing) +"Do" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_port_fore_wing) +"Dr" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6; + icon_state = "intact" + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1; + icon_state = "warningcorner_dust" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_port_fore_wing) "DF" = ( /obj/structure/cable/green{ d1 = 4; @@ -6890,17 +6916,37 @@ }, /turf/simulated/floor/plating, /area/talon/maintenance/deckone_starboard) -"DT" = ( +"Ec" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - icon_state = "intact"; - dir = 10 + dir = 9; + icon_state = "intact" }, -/turf/simulated/floor/reinforced/airless, +/obj/effect/floor_decal/industrial/warning/dust/corner, +/turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_fore_wing) -"ET" = ( -/obj/effect/floor_decal/emblem/talon, -/turf/simulated/floor/reinforced/airless, +"Eo" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner, +/turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_aft_wing) +"ED" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_starboard_fore_wing) +"EF" = ( +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_starboard_fore_wing) +"EM" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10; + icon_state = "intact" + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 4 + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_starboard_fore_wing) "Fc" = ( /obj/structure/catwalk, /obj/structure/cable/green{ @@ -6910,10 +6956,6 @@ }, /turf/simulated/floor/plating, /area/talon/maintenance/deckone_starboard) -"FB" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_starboard_fore_wing) "FJ" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -6930,21 +6972,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) -"Gj" = ( -/obj/machinery/power/pointdefense{ - id_tag = "talon_pd" - }, -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_starboard_aft_wing) "Gu" = ( /obj/structure/catwalk, /obj/structure/cable/green{ @@ -6966,31 +6993,66 @@ }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/secure_storage) +"GG" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_port_aft_wing) +"GL" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 1; + icon_state = "intact" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_port_fore_wing) "GP" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 5 }, /turf/simulated/floor/reinforced/airless, /area/talon/deckone/starboard_eng) +"Ha" = ( +/obj/structure/cable/green{ + dir = 1; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_starboard_fore_wing) "Hb" = ( /obj/structure/catwalk, /turf/space, /area/talon/maintenance/deckone_starboard_fore_wing) "Hp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/cap/hidden{ - icon_state = "cap"; - dir = 1 + dir = 1; + icon_state = "cap" }, /turf/simulated/floor/tiled/techmaint, /area/talon/deckone/port_eng) +"Ij" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_port_fore_wing) "Im" = ( /obj/machinery/atmospherics/portables_connector/fuel{ - icon_state = "map_connector-fuel"; - dir = 1 + dir = 1; + icon_state = "map_connector-fuel" }, /obj/effect/floor_decal/industrial/outline/red, /obj/machinery/portable_atmospherics/canister/phoron, @@ -7002,51 +7064,45 @@ /area/talon/deckone/starboard_eng) "IF" = ( /obj/effect/floor_decal/emblem/talon_big{ - icon_state = "talon_big"; - dir = 5 + dir = 5; + icon_state = "talon_big" }, /turf/simulated/floor/tiled/monotile, /area/talon/deckone/central_hallway) -"Ji" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_starboard_aft_wing) -"Jk" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 +"JB" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 1; + icon_state = "intact" }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_starboard_aft_wing) +/obj/structure/cable/green{ + dir = 1; + icon_state = "4-8" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_starboard_fore_wing) "JI" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 5 }, /turf/simulated/floor/reinforced/airless, /area/talon/deckone/port_eng) -"JJ" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_starboard_aft_wing) -"JL" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_port_aft_wing) -"JW" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - icon_state = "intact"; - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_port_fore_wing) "JZ" = ( /obj/structure/table/rack/steel, /obj/machinery/camera/network/talon, /turf/simulated/floor/tiled/dark, /area/talon/deckone/secure_storage) +"Km" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1; + icon_state = "warningcorner_dust" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_port_aft_wing) "KM" = ( /obj/effect/shuttle_landmark{ landmark_tag = "talon_starboard"; @@ -7099,27 +7155,15 @@ }, /turf/space, /area/space) -"Lo" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - icon_state = "warningcorner_dust"; - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_port_aft_wing) "Lt" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - icon_state = "intact"; - dir = 8 + dir = 8; + icon_state = "intact" }, /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - icon_state = "intact"; - dir = 8 + dir = 8; + icon_state = "intact" }, /turf/space, /area/talon/maintenance/deckone_port_fore_wing) @@ -7140,18 +7184,6 @@ /obj/structure/curtain, /turf/simulated/floor/tiled/steel_ridged, /area/talon/deckone/bridge_hallway) -"LX" = ( -/obj/effect/floor_decal/emblem/talon, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_starboard_fore_wing) -"Ml" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_port_fore_wing) "Mm" = ( /obj/machinery/shipsensors{ dir = 1 @@ -7164,6 +7196,10 @@ }, /turf/simulated/floor/greengrid/airless, /area/talon/maintenance/deckone_port) +"Mr" = ( +/obj/effect/floor_decal/emblem/talon, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_port_aft_wing) "Mu" = ( /obj/structure/catwalk, /obj/structure/cable/green{ @@ -7180,31 +7216,17 @@ }, /turf/space, /area/space) -"MJ" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - icon_state = "intact"; - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - icon_state = "warningcorner_dust"; - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_port_fore_wing) -"MW" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - icon_state = "intact"; - dir = 6 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_starboard_fore_wing) "Nu" = ( /obj/structure/bed/chair/bay/comfy/yellow{ - icon_state = "bay_comfychair_preview"; - dir = 1 + dir = 1; + icon_state = "bay_comfychair_preview" }, /turf/simulated/floor/tiled/techfloor/grid, /area/talon/deckone/bridge) +"Nx" = ( +/obj/effect/floor_decal/emblem/talon, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_starboard_fore_wing) "NR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -7219,60 +7241,12 @@ }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/brig) -"NY" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_starboard_aft_wing) -"On" = ( -/obj/machinery/power/pointdefense{ - id_tag = "talon_pd" - }, -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_port_fore_wing) -"Ow" = ( -/obj/machinery/power/pointdefense{ - id_tag = "talon_pd" - }, -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_port_aft_wing) "OF" = ( /obj/structure/sign/periodic{ pixel_y = 32 }, /turf/simulated/floor/tiled/techmaint, /area/talon/deckone/workroom) -"OR" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - icon_state = "warningcorner_dust"; - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_starboard_fore_wing) "OS" = ( /obj/machinery/atmospherics/unary/engine/bigger{ dir = 1 @@ -7308,53 +7282,57 @@ }, /turf/space, /area/talon/deckone/starboard_eng) -"Rc" = ( +"QX" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 4 }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_port_fore_wing) -"Rv" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_port_aft_wing) -"RD" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - icon_state = "intact"; - dir = 5 - }, -/turf/simulated/floor/reinforced/airless, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_starboard_aft_wing) +"Ru" = ( +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_starboard_aft_wing) +"RW" = ( +/obj/effect/floor_decal/emblem/talon, +/turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_port_fore_wing) "Sa" = ( /obj/effect/floor_decal/emblem/talon_big{ - icon_state = "talon_big"; - dir = 4 + dir = 4; + icon_state = "talon_big" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) -"SJ" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - icon_state = "warningcorner_dust"; - dir = 1 +"Sc" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_starboard_aft_wing) +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_port_aft_wing) +"SV" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_starboard_fore_wing) "SX" = ( /turf/space, /area/talon/deckone/port_eng) -"TP" = ( +"Tz" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_port_fore_wing) +"TD" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5; + icon_state = "intact" }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_port_aft_wing) +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_port_fore_wing) "Ue" = ( /obj/structure/catwalk, /obj/structure/sign/warning/moving_parts{ @@ -7365,11 +7343,22 @@ "Ui" = ( /obj/structure/catwalk, /obj/structure/cable/green{ - icon_state = "4-8"; - dir = 1 + dir = 1; + icon_state = "4-8" }, /turf/space, /area/talon/maintenance/deckone_starboard_fore_wing) +"UI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 4 + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_starboard_aft_wing) "UT" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/blast/regular{ @@ -7377,11 +7366,33 @@ }, /turf/simulated/floor/tiled/dark, /area/talon/deckone/brig) -"VS" = ( +"UU" = ( +/obj/machinery/power/pointdefense{ + id_tag = "talon_pd" + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_starboard_fore_wing) +"Vf" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_port_fore_wing) +"VB" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 1 }, -/turf/simulated/floor/reinforced/airless, +/turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_port_fore_wing) "Wh" = ( /obj/effect/floor_decal/borderfloor{ @@ -7397,8 +7408,8 @@ /area/talon/deckone/central_hallway) "Ww" = ( /obj/effect/floor_decal/emblem/talon_big{ - icon_state = "talon_big"; - dir = 8 + dir = 8; + icon_state = "talon_big" }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/central_hallway) @@ -7418,8 +7429,8 @@ /area/talon/deckone/central_hallway) "WE" = ( /obj/structure/sign/poster{ - icon_state = ""; - dir = 1 + dir = 1; + icon_state = "" }, /turf/simulated/wall, /area/talon/deckone/central_hallway) @@ -7473,8 +7484,8 @@ /area/talon/maintenance/deckone_starboard) "Xi" = ( /obj/machinery/atmospherics/portables_connector/fuel{ - icon_state = "map_connector-fuel"; - dir = 1 + dir = 1; + icon_state = "map_connector-fuel" }, /obj/effect/floor_decal/industrial/outline/red, /obj/machinery/portable_atmospherics/canister/phoron, @@ -7484,13 +7495,12 @@ }, /turf/simulated/floor/tiled/techmaint, /area/talon/deckone/port_eng) -"Xq" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - icon_state = "intact"; - dir = 10 +"Xz" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_port_fore_wing) +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_starboard_aft_wing) "XC" = ( /obj/structure/catwalk, /obj/structure/cable/green{ @@ -7500,19 +7510,6 @@ }, /turf/simulated/floor/plating, /area/talon/maintenance/deckone_starboard) -"XQ" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_starboard_fore_wing) -"XT" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - icon_state = "intact"; - dir = 9 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_starboard_fore_wing) "Yg" = ( /obj/structure/catwalk, /obj/structure/cable/green{ @@ -7529,18 +7526,14 @@ }, /turf/simulated/floor/tiled/steel, /area/talon/deckone/workroom) -"Yv" = ( -/obj/effect/floor_decal/emblem/talon, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/deckone_port_fore_wing) "YG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/cap/hidden{ - icon_state = "cap"; - dir = 1 + dir = 1; + icon_state = "cap" }, /turf/simulated/floor/tiled/techmaint, /area/talon/deckone/starboard_eng) @@ -7559,6 +7552,13 @@ }, /turf/simulated/floor/tiled/steel_ridged, /area/talon/deckone/bridge_hallway) +"ZR" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6; + icon_state = "intact" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_port_fore_wing) "ZU" = ( /obj/machinery/suit_cycler/vintage/tmedic, /turf/simulated/floor/tiled/white, @@ -10492,8 +10492,8 @@ aa aa aa aa -gI -gI +Dh +Dh aa aa aa @@ -10634,8 +10634,8 @@ aa aa aa aa -gI -gI +Dh +Dh aa aa aa @@ -10776,8 +10776,8 @@ aa aa aa aa -gI -gI +Dh +Dh aa aa aa @@ -10918,8 +10918,8 @@ aa aa aa aa -gI -gI +Dh +Dh aa aa aa @@ -11060,8 +11060,8 @@ aa aa aa aa -gI -gI +Dh +Dh aa aa aa @@ -11201,10 +11201,10 @@ aa aa aa aa -gI -gI -gI -gI +Dh +Dh +Dh +Dh aa aa aa @@ -11343,10 +11343,10 @@ aa aa aa aa -gI -gI -gI -gI +Dh +Dh +Dh +Dh aa aa aa @@ -11485,10 +11485,10 @@ aa aa aa aa -gI -gI -gI -gI +Dh +Dh +Dh +Dh aa aa aa @@ -11627,10 +11627,10 @@ aa aa aa aa -gI -gI -gI -gI +Dh +Dh +Dh +Dh aa aa aa @@ -11769,10 +11769,10 @@ aa aa aa aa -gI -gI -gI -gI +Dh +Dh +Dh +Dh aa aa aa @@ -11910,12 +11910,12 @@ aa aa aa aa -gI -gI -gI -gI -gI -gI +Dh +Dh +Dh +Dh +Dh +Dh aa aa aa @@ -12052,12 +12052,12 @@ aa aa aa aa -gI -gI -gI -gI -gI -gI +Dh +Dh +Dh +Dh +Dh +Dh aa aa aa @@ -12194,12 +12194,12 @@ aa aa aa aa -gI -gI -gI -gI -gI -gI +Dh +Dh +Dh +Dh +Dh +Dh aa aa aa @@ -12336,12 +12336,12 @@ aa aa aa aa -gI -gI -gI -gI -gI -gI +Dh +Dh +Dh +Dh +Dh +Dh aa aa aa @@ -12478,12 +12478,12 @@ aa aa aa aa -gI -gI -gI -gI -gI -gI +Dh +Dh +Dh +Dh +Dh +Dh aa aa aa @@ -12619,14 +12619,14 @@ aa aa aa aa -gI -gI -gI -gI -gI -gI -gI -gI +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh aa aa aa @@ -12761,14 +12761,14 @@ aa aa aa aa -gI -gI -gI -gI -gI -gI -gI -gI +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh aa aa aa @@ -12903,14 +12903,14 @@ aa aa aa aa -gI -gI -gI -gI -gI -gI -gI -gI +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh aa aa aa @@ -13045,14 +13045,14 @@ aa aa aa aa -gI -gI -gI -gI -gI -gI -gI -gI +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh aa aa aa @@ -13187,14 +13187,14 @@ aa aa aa aa -gI -gI -gI -gI -gI -gI -gI -gI +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh aa aa aa @@ -13328,16 +13328,16 @@ aa aa aa aa -gI -gI -gI -gI -gI -gI -gI -gI -gI -gI +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh aa aa aa @@ -13470,16 +13470,16 @@ aa aa aa aa -gI -gI -gI -gI -gI -gI -gI -gI -gI -gI +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh aa aa aa @@ -13612,16 +13612,16 @@ aa aa aa aa -gI -gI -gI -gI -gI -gI -gI -gI -gI -gI +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh aa aa aa @@ -13754,16 +13754,16 @@ aa aa aa aa -gI -gI -gI -gI -gI -gI -gI -gI -gI -gI +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh aa aa aa @@ -13896,16 +13896,16 @@ aa aa aa aa -gI -gI -gI -gI -gI -gI -gI -gI -gI -gI +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh aa aa aa @@ -14037,18 +14037,18 @@ aa aa aa aa -gI -gI -gI -gI -gI -gI -gI -gI -gI -gI -gI -gI +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh aa aa aa @@ -14179,18 +14179,18 @@ aa aa aa aa -gI -gI -gI -gI -gI -gI -gI -gI -gI -gI -gI -gI +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh aa aa aa @@ -14306,7 +14306,7 @@ aa aa aa aa -cc +rJ aa aa aa @@ -14321,18 +14321,18 @@ aa aa aa aa -gI -gI -gI -gI -gI -gI -gI -gI -gI -gI -gI -gI +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh aa aa aa @@ -14448,7 +14448,7 @@ aa aa aa aa -cc +rJ aa aa aa @@ -14463,18 +14463,18 @@ aa aa aa aa -gI -gI -gI -gI -gI -gI -gI -gI -gI -gI -gI -gI +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh aa aa aa @@ -14590,7 +14590,7 @@ aa aa aa aa -cc +rJ aa aa aa @@ -14605,18 +14605,18 @@ aa aa aa aa -gI -gI -gI -gI -gI -qQ -gI -gI -gI -gI -gI -gI +Dh +Dh +Dh +Dh +Dh +Mr +Dh +Dh +Dh +Dh +Dh +Dh aa aa aa @@ -14732,7 +14732,7 @@ aa aa aa aa -cc +rJ aa aa aa @@ -14746,20 +14746,20 @@ aa aa aa aa -rg -JL -uL -gI -gI -gI -gI -gI -gI -gI -gI -gI -gI -gI +tg +GG +nz +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh +Dh aa aa aa @@ -14873,9 +14873,9 @@ aa aa aa aa -cc -cc -cc +rJ +rJ +rJ aa aa aa @@ -14888,20 +14888,20 @@ aa aa aa aa -Ds -Ow -TP -gI +vz +qo +sc +Dh YS kl fz fo YS -gI -gI -gI -gI -gI +Dh +Dh +Dh +Dh +Dh aa aa aa @@ -15015,9 +15015,9 @@ aa aa aa aa -cc -Yv -cc +rJ +RW +rJ aa aa aa @@ -15030,20 +15030,20 @@ aa aa aa aa -mh -Rv -Lo -gI +lD +Sc +Km +Dh YS aC fA aC YS -gI -gI -gI -gI -gI +Dh +Dh +Dh +Dh +Dh aa aa aa @@ -15157,9 +15157,9 @@ aa aa aa aa -oW -Rc -mm +rH +tJ +AY aa aa aa @@ -15299,9 +15299,9 @@ aa aa aa aa -zO -On -VS +vA +AN +VB aa aa aC @@ -15440,11 +15440,11 @@ aa aa aa aa -sK -BR -sz -MJ -RD +ZR +TD +pr +Dr +Do aa aC jh @@ -15582,11 +15582,11 @@ aa aa aa aa -qN -qN -Ml -JW -qN +Bh +Bh +Tz +tZ +Bh aa aC aL @@ -15724,11 +15724,11 @@ aa aa aa aa -qN -Xq -zT -oR -qN +Bh +Vf +GL +Ij +Bh aa aC aL @@ -19132,11 +19132,11 @@ aa aa aa aa -vn -MW -yu -Dw -vn +CP +pc +JB +vf +CP aa aK aP @@ -19274,11 +19274,11 @@ aa aa aa aa -vn -vn -qT -vn -vn +CP +CP +Bq +CP +CP aa aK aP @@ -19416,11 +19416,11 @@ aa aa aa aa -DT -qM -CT -AP -XT +Dl +Ec +Ha +EM +CU aa aK jp @@ -19559,9 +19559,9 @@ aa aa aa aa -FB -pz -XQ +SV +UU +yA aa aa aK @@ -19701,9 +19701,9 @@ aa aa aa aa -Bs -AE -OR +qF +ED +yO aa aa aa @@ -19843,9 +19843,9 @@ aa aa aa aa -dt -LX -dt +EF +Nx +EF aa aa aa @@ -19858,20 +19858,20 @@ aa aa aa aa -Ji -Jk -NY -dR +Eo +QX +UI +Ru Za aK fV aK Za -dR -dR -dR -dR -dR +Ru +Ru +Ru +Ru +Ru aa aa aa @@ -19985,9 +19985,9 @@ aa aa aa aa -dt -dt -dt +EF +EF +EF aa aa aa @@ -20000,20 +20000,20 @@ aa aa aa aa -Bo -Gj -ry -dR +Bs +uo +rL +Ru Za km fW fy Za -dR -dR -dR -dR -dR +Ru +Ru +Ru +Ru +Ru aa aa aa @@ -20128,7 +20128,7 @@ aa aa aa aa -dt +EF aa aa aa @@ -20142,20 +20142,20 @@ aa aa aa aa -JJ -oQ -SJ -dR -dR -dR -ET -dR -dR -dR -dR -dR -dR -dR +yd +Xz +rm +Ru +Ru +Ru +we +Ru +Ru +Ru +Ru +Ru +Ru +Ru aa aa aa @@ -20270,7 +20270,7 @@ aa aa aa aa -dt +EF aa aa aa @@ -20285,18 +20285,18 @@ aa aa aa aa -dR -dR -dR -dR -dR -dR -dR -dR -dR -dR -dR -dR +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru aa aa aa @@ -20412,7 +20412,7 @@ aa aa aa aa -dt +EF aa aa aa @@ -20427,18 +20427,18 @@ aa aa aa aa -dR -dR -dR -dR -dR -dR -dR -dR -dR -dR -dR -dR +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru aa aa aa @@ -20554,7 +20554,7 @@ aa aa aa aa -dt +EF aa aa aa @@ -20569,18 +20569,18 @@ aa aa aa aa -dR -dR -dR -dR -dR -dR -dR -dR -dR -dR -dR -dR +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru aa aa aa @@ -20711,18 +20711,18 @@ aa aa aa aa -dR -dR -dR -dR -dR -dR -dR -dR -dR -dR -dR -dR +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru aa aa aa @@ -20853,18 +20853,18 @@ aa aa aa aa -dR -dR -dR -dR -dR -dR -dR -dR -dR -dR -dR -dR +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru aa aa aa @@ -20996,16 +20996,16 @@ aa aa aa aa -dR -dR -dR -dR -dR -dR -dR -dR -dR -dR +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru aa aa aa @@ -21138,16 +21138,16 @@ aa aa aa aa -dR -dR -dR -dR -dR -dR -dR -dR -dR -dR +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru aa aa aa @@ -21280,16 +21280,16 @@ aa aa aa aa -dR -dR -dR -dR -dR -dR -dR -dR -dR -dR +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru aa aa aa @@ -21422,16 +21422,16 @@ aa aa aa aa -dR -dR -dR -dR -dR -dR -dR -dR -dR -dR +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru aa aa aa @@ -21564,16 +21564,16 @@ aa aa aa aa -dR -dR -dR -dR -dR -dR -dR -dR -dR -dR +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru aa aa aa @@ -21707,14 +21707,14 @@ aa aa aa aa -dR -dR -dR -dR -dR -dR -dR -dR +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru aa aa aa @@ -21849,14 +21849,14 @@ aa aa aa aa -dR -dR -dR -dR -dR -dR -dR -dR +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru aa aa aa @@ -21991,14 +21991,14 @@ aa aa aa aa -dR -dR -dR -dR -dR -dR -dR -dR +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru aa aa aa @@ -22133,14 +22133,14 @@ aa aa aa aa -dR -dR -dR -dR -dR -dR -dR -dR +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru aa aa aa @@ -22275,14 +22275,14 @@ aa aa aa aa -dR -dR -dR -dR -dR -dR -dR -dR +Ru +Ru +Ru +Ru +Ru +Ru +Ru +Ru aa aa aa @@ -22418,12 +22418,12 @@ aa aa aa aa -dR -dR -dR -dR -dR -dR +Ru +Ru +Ru +Ru +Ru +Ru aa aa aa @@ -22560,12 +22560,12 @@ aa aa aa aa -dR -dR -dR -dR -dR -dR +Ru +Ru +Ru +Ru +Ru +Ru aa aa aa @@ -22702,12 +22702,12 @@ aa aa aa aa -dR -dR -dR -dR -dR -dR +Ru +Ru +Ru +Ru +Ru +Ru aa aa aa @@ -22844,12 +22844,12 @@ aa aa aa aa -dR -dR -dR -dR -dR -dR +Ru +Ru +Ru +Ru +Ru +Ru aa aa aa @@ -22986,12 +22986,12 @@ aa aa aa aa -dR -dR -dR -dR -dR -dR +Ru +Ru +Ru +Ru +Ru +Ru aa aa aa @@ -23129,10 +23129,10 @@ aa aa aa aa -dR -dR -dR -dR +Ru +Ru +Ru +Ru aa aa aa @@ -23271,10 +23271,10 @@ aa aa aa aa -dR -dR -dR -dR +Ru +Ru +Ru +Ru aa aa aa @@ -23413,10 +23413,10 @@ aa aa aa aa -dR -dR -dR -dR +Ru +Ru +Ru +Ru aa aa aa @@ -23555,10 +23555,10 @@ aa aa aa aa -dR -dR -dR -dR +Ru +Ru +Ru +Ru aa aa aa @@ -23697,10 +23697,10 @@ aa aa aa aa -dR -dR -dR -dR +Ru +Ru +Ru +Ru aa aa aa @@ -23840,8 +23840,8 @@ aa aa aa aa -dR -dR +Ru +Ru aa aa aa @@ -23982,8 +23982,8 @@ aa aa aa aa -dR -dR +Ru +Ru aa aa aa @@ -24124,8 +24124,8 @@ aa aa aa aa -dR -dR +Ru +Ru aa aa aa @@ -24266,8 +24266,8 @@ aa aa aa aa -dR -dR +Ru +Ru aa aa aa @@ -24408,8 +24408,8 @@ aa aa aa aa -dR -dR +Ru +Ru aa aa aa diff --git a/maps/tether/submaps/offmap/talon2.dmm b/maps/tether/submaps/offmap/talon2.dmm index d5a49f1f1b..cb8c0dbff5 100644 --- a/maps/tether/submaps/offmap/talon2.dmm +++ b/maps/tether/submaps/offmap/talon2.dmm @@ -69,8 +69,8 @@ /area/talon/decktwo/bridge_upper) "am" = ( /obj/structure/bed/chair/bay/comfy/blue{ - icon_state = "bay_comfychair_preview"; dir = 1; + icon_state = "bay_comfychair_preview"; pixel_y = 5 }, /turf/simulated/floor/tiled/techfloor/grid, @@ -82,7 +82,12 @@ /turf/simulated/open, /area/talon/decktwo/bridge_upper) "ao" = ( -/turf/simulated/floor/reinforced/airless, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/solar, +/turf/simulated/floor/plating/eris/under/airless, /area/talon/maintenance/decktwo_solars) "ap" = ( /turf/simulated/wall/rshull, @@ -112,8 +117,8 @@ icon_state = "4-8" }, /obj/machinery/camera/network/talon{ - icon_state = "camera"; - dir = 10 + dir = 10; + icon_state = "camera" }, /turf/simulated/floor/tiled/techfloor, /area/talon/decktwo/bridge_upper) @@ -213,8 +218,8 @@ dir = 8 }, /obj/machinery/camera/network/talon{ - icon_state = "camera"; - dir = 6 + dir = 6; + icon_state = "camera" }, /turf/simulated/floor/lino, /area/talon/decktwo/bar) @@ -236,8 +241,8 @@ /area/talon/decktwo/cap_room) "aL" = ( /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /obj/structure/closet/secure_closet/talon_captain, /turf/simulated/floor/wood, @@ -350,8 +355,8 @@ /area/talon/decktwo/bar) "aX" = ( /obj/structure/bed/chair/bay/chair{ - icon_state = "bay_chair_preview"; - dir = 1 + dir = 1; + icon_state = "bay_chair_preview" }, /turf/simulated/floor/wood, /area/talon/decktwo/bar) @@ -394,8 +399,8 @@ dir = 6 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/structure/cable/green{ icon_state = "4-8" @@ -412,8 +417,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/structure/cable/green{ icon_state = "4-8" @@ -430,8 +435,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -454,8 +459,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/effect/floor_decal/steeldecal/steel_decals_central4{ dir = 8 @@ -500,8 +505,8 @@ dir = 8 }, /obj/structure/cable/green{ - icon_state = "4-8"; - dir = 1 + dir = 1; + icon_state = "4-8" }, /turf/simulated/floor/lino, /area/talon/decktwo/bar) @@ -511,20 +516,20 @@ dir = 8 }, /obj/structure/cable/green{ - icon_state = "4-8"; - dir = 1 + dir = 1; + icon_state = "4-8" }, /turf/simulated/floor/lino, /area/talon/decktwo/bar) "bj" = ( /obj/machinery/chemical_dispenser/bar_alc/full{ - icon_state = "booze_dispenser"; - dir = 8 + dir = 8; + icon_state = "booze_dispenser" }, /obj/structure/table/marble, /obj/structure/cable/green{ - icon_state = "4-8"; - dir = 1 + dir = 1; + icon_state = "4-8" }, /turf/simulated/floor/lino, /area/talon/decktwo/bar) @@ -566,8 +571,8 @@ /area/talon/decktwo/cap_room) "bo" = ( /obj/structure/cable/green{ - icon_state = "1-2"; - dir = 1 + dir = 1; + icon_state = "1-2" }, /obj/machinery/light_switch{ dir = 8; @@ -666,8 +671,8 @@ pixel_x = -28 }, /obj/structure/bed/chair/bay/chair{ - icon_state = "bay_chair_preview"; - dir = 1 + dir = 1; + icon_state = "bay_chair_preview" }, /turf/simulated/floor/wood, /area/talon/decktwo/bar) @@ -817,8 +822,8 @@ }, /obj/machinery/door/firedoor/glass/talon, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel_grid, /area/talon/decktwo/bar) @@ -855,8 +860,8 @@ }, /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ - icon_state = "pipe-t"; - dir = 4 + dir = 4; + icon_state = "pipe-t" }, /turf/simulated/floor/tiled/steel, /area/talon/decktwo/central_hallway) @@ -886,8 +891,8 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -906,8 +911,8 @@ icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -920,15 +925,15 @@ /area/talon/decktwo/bar) "bW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/oxygen_pump{ - icon_state = "oxygen_tank"; dir = 1; + icon_state = "oxygen_tank"; pixel_y = -30 }, /turf/simulated/floor/wood, @@ -954,19 +959,19 @@ dir = 1 }, /obj/effect/floor_decal/spline/plain{ - icon_state = "spline_plain"; - dir = 1 + dir = 1; + icon_state = "spline_plain" }, /turf/simulated/floor/tiled/steel_ridged, /area/talon/decktwo/bar) "bZ" = ( /obj/machinery/vending/dinnerware{ - icon_state = "dinnerware"; - dir = 1 + dir = 1; + icon_state = "dinnerware" }, /obj/effect/floor_decal/spline/plain{ - icon_state = "spline_plain"; - dir = 1 + dir = 1; + icon_state = "spline_plain" }, /turf/simulated/floor/tiled/steel_ridged, /area/talon/decktwo/bar) @@ -992,22 +997,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/steel_grid, /area/talon/decktwo/central_hallway) -"ce" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/solar, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) -"cf" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/solar, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) "cg" = ( /obj/structure/cable/heavyduty{ icon_state = "0-8" @@ -1080,8 +1069,8 @@ icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals_central4{ - icon_state = "steel_decals_central4"; - dir = 1 + dir = 1; + icon_state = "steel_decals_central4" }, /obj/structure/disposalpipe/segment, /obj/structure/disposalpipe/segment, @@ -1127,69 +1116,8 @@ /turf/simulated/wall/rshull, /area/talon/maintenance/decktwo_starboard) "ct" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) -"cu" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) -"cv" = ( -/obj/structure/cable/heavyduty{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) -"cw" = ( -/obj/structure/cable/heavyduty{ - dir = 2; - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/reinforced/airless, +/obj/effect/floor_decal/industrial/warning/dust/corner, +/turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) "cx" = ( /obj/structure/railing{ @@ -1216,8 +1144,8 @@ "cA" = ( /obj/structure/railing, /obj/structure/railing{ - icon_state = "railing0"; - dir = 4 + dir = 4; + icon_state = "railing0" }, /turf/simulated/open, /area/talon/decktwo/central_hallway) @@ -1335,8 +1263,8 @@ dir = 4 }, /obj/effect/floor_decal/steeldecal/steel_decals5{ - icon_state = "steel_decals5"; - dir = 4 + dir = 4; + icon_state = "steel_decals5" }, /turf/simulated/floor/tiled/steel, /area/talon/decktwo/central_hallway) @@ -1515,8 +1443,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals5{ - icon_state = "steel_decals5"; - dir = 8 + dir = 8; + icon_state = "steel_decals5" }, /turf/simulated/floor/tiled/steel, /area/talon/decktwo/central_hallway) @@ -1600,15 +1528,15 @@ dir = 8 }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/decktwo/central_hallway) "db" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -1621,19 +1549,19 @@ dir = 1 }, /obj/effect/floor_decal/steeldecal/steel_decals5{ - icon_state = "steel_decals5"; - dir = 4 + dir = 4; + icon_state = "steel_decals5" }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/decktwo/central_hallway) "dc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -1647,13 +1575,13 @@ dir = 1 }, /obj/machinery/oxygen_pump{ - icon_state = "oxygen_tank"; dir = 1; + icon_state = "oxygen_tank"; pixel_y = -30 }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/decktwo/central_hallway) @@ -1670,15 +1598,15 @@ dir = 1 }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/decktwo/central_hallway) "de" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -1691,15 +1619,15 @@ dir = 1 }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/decktwo/central_hallway) "df" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -1718,8 +1646,8 @@ dir = 1 }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/decktwo/central_hallway) @@ -1728,8 +1656,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/borderfloor/corner2{ @@ -1745,8 +1673,8 @@ pixel_y = -38 }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/decktwo/central_hallway) @@ -1760,8 +1688,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central4, /obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 + dir = 4; + icon_state = "pipe-j2" }, /turf/simulated/floor/tiled/steel, /area/talon/decktwo/central_hallway) @@ -1770,8 +1698,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/borderfloor/corner2, @@ -1785,15 +1713,15 @@ pixel_y = -31 }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/decktwo/central_hallway) "dj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/effect/floor_decal/borderfloor, @@ -1804,15 +1732,15 @@ dir = 1 }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/decktwo/central_hallway) "dk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -1828,20 +1756,20 @@ dir = 1 }, /obj/machinery/oxygen_pump{ - icon_state = "oxygen_tank"; dir = 1; + icon_state = "oxygen_tank"; pixel_y = -30 }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/decktwo/central_hallway) "dl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -1854,12 +1782,12 @@ dir = 8 }, /obj/effect/floor_decal/steeldecal/steel_decals5{ - icon_state = "steel_decals5"; - dir = 8 + dir = 8; + icon_state = "steel_decals5" }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/decktwo/central_hallway) @@ -2070,15 +1998,15 @@ icon_state = "1-8" }, /obj/effect/floor_decal/steeldecal/steel_decals_central4{ - icon_state = "steel_decals_central4"; - dir = 1 + dir = 1; + icon_state = "steel_decals_central4" }, /turf/simulated/floor/tiled/steel, /area/talon/decktwo/tech) "dE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -2232,8 +2160,8 @@ pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 + dir = 5; + icon_state = "intact-scrubbers" }, /obj/structure/cable/green{ d1 = 1; @@ -2338,8 +2266,8 @@ dir = 9 }, /obj/structure/sign/directions/roomnum{ - icon_state = "roomnum"; dir = 4; + icon_state = "roomnum"; pixel_x = 32; pixel_y = -9 }, @@ -2398,8 +2326,8 @@ /area/talon/decktwo/tech) "ef" = ( /obj/machinery/camera/network/talon{ - icon_state = "camera"; - dir = 9 + dir = 9; + icon_state = "camera" }, /obj/machinery/pointdefense_control{ id_tag = "talon_pd" @@ -2481,15 +2409,15 @@ icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals_central4{ - icon_state = "steel_decals_central4"; - dir = 4 + dir = 4; + icon_state = "steel_decals_central4" }, /turf/simulated/floor/tiled/steel, /area/talon/decktwo/central_hallway) "em" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -2636,8 +2564,8 @@ /area/talon/decktwo/pilot_room) "ey" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -2746,8 +2674,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - icon_state = "1-2"; - dir = 1 + dir = 1; + icon_state = "1-2" }, /obj/machinery/door/airlock/command{ name = "Talon Secure Airlock"; @@ -2809,29 +2737,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - icon_state = "1-2"; - dir = 1 + dir = 1; + icon_state = "1-2" }, /obj/machinery/door/airlock/glass_external, /obj/effect/map_helper/airlock/door/simple, /turf/simulated/floor/tiled/techfloor, /area/talon/decktwo/lifeboat) -"eP" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) "eQ" = ( /obj/structure/cable/green{ d1 = 1; @@ -2903,8 +2815,8 @@ /area/talon/decktwo/med_room) "eX" = ( /obj/machinery/computer/shuttle_control/explore/talon_lifeboat{ - icon_state = "computer"; - dir = 4 + dir = 4; + icon_state = "computer" }, /obj/effect/floor_decal/techfloor/orange{ dir = 4 @@ -2983,46 +2895,6 @@ }, /turf/simulated/floor/plating, /area/talon/maintenance/decktwo_starboard) -"fg" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) -"fh" = ( -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/solar, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) -"fi" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) "fj" = ( /obj/structure/catwalk, /obj/machinery/light/small{ @@ -3179,16 +3051,6 @@ }, /turf/simulated/floor/plating, /area/talon/maintenance/decktwo_starboard) -"fv" = ( -/obj/machinery/power/solar, -/obj/structure/cable/yellow, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) -"fw" = ( -/obj/structure/cable/yellow, -/obj/machinery/power/solar, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) "fx" = ( /obj/structure/catwalk, /obj/structure/cable/green{ @@ -3242,8 +3104,8 @@ /area/talon/decktwo/med_room) "fC" = ( /obj/machinery/camera/network/talon{ - icon_state = "camera"; - dir = 4 + dir = 4; + icon_state = "camera" }, /obj/effect/floor_decal/techfloor/orange{ dir = 4 @@ -3330,8 +3192,8 @@ /area/talon/decktwo/central_hallway) "fL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -3432,8 +3294,8 @@ /area/talon/decktwo/sec_room) "fV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -3620,16 +3482,16 @@ dir = 6 }, /obj/machinery/camera/network/talon{ - icon_state = "camera"; - dir = 9 + dir = 9; + icon_state = "camera" }, /turf/simulated/floor/tiled/steel, /area/talon/decktwo/central_hallway) "gl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 + dir = 5; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled/steel, /area/talon/decktwo/central_hallway) @@ -3656,8 +3518,8 @@ /area/talon/maintenance/decktwo_aft) "go" = ( /obj/structure/railing{ - icon_state = "railing0"; - dir = 4 + dir = 4; + icon_state = "railing0" }, /turf/simulated/open, /area/talon/maintenance/decktwo_aft) @@ -3737,15 +3599,15 @@ "gz" = ( /obj/machinery/door/firedoor/glass/talon/hidden, /obj/effect/floor_decal/steeldecal/steel_decals5{ - icon_state = "steel_decals5"; - dir = 4 + dir = 4; + icon_state = "steel_decals5" }, /turf/simulated/floor/tiled/steel, /area/talon/decktwo/central_hallway) "gA" = ( /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/structure/catwalk, /turf/simulated/floor/plating, @@ -3767,8 +3629,8 @@ /area/talon/maintenance/decktwo_aft) "gD" = ( /obj/structure/railing{ - icon_state = "railing0"; - dir = 4 + dir = 4; + icon_state = "railing0" }, /obj/structure/railing{ dir = 1 @@ -3777,8 +3639,8 @@ /area/talon/maintenance/decktwo_aft) "gE" = ( /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 10 + dir = 10; + icon_state = "intact-scrubbers" }, /obj/structure/catwalk, /turf/simulated/floor/plating, @@ -3788,8 +3650,8 @@ dir = 8 }, /obj/effect/floor_decal/steeldecal/steel_decals5{ - icon_state = "steel_decals5"; - dir = 8 + dir = 8; + icon_state = "steel_decals5" }, /turf/simulated/floor/tiled/steel, /area/talon/decktwo/central_hallway) @@ -3824,8 +3686,8 @@ }, /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ - icon_state = "pipe-t"; - dir = 1 + dir = 1; + icon_state = "pipe-t" }, /turf/simulated/floor/tiled/steel, /area/talon/decktwo/central_hallway) @@ -3848,8 +3710,8 @@ /area/talon/maintenance/decktwo_aft) "gL" = ( /obj/structure/railing{ - icon_state = "railing0"; - dir = 4 + dir = 4; + icon_state = "railing0" }, /obj/structure/lattice, /turf/simulated/open, @@ -3933,8 +3795,8 @@ "gU" = ( /obj/structure/railing, /obj/structure/railing{ - icon_state = "railing0"; - dir = 4 + dir = 4; + icon_state = "railing0" }, /turf/simulated/open, /area/talon/maintenance/decktwo_aft) @@ -4093,8 +3955,8 @@ dir = 1 }, /obj/structure/railing{ - icon_state = "railing0"; - dir = 4 + dir = 4; + icon_state = "railing0" }, /turf/simulated/open, /area/talon/maintenance/decktwo_aft) @@ -4169,8 +4031,8 @@ }, /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/visible/aux{ - icon_state = "intact-aux"; - dir = 6 + dir = 6; + icon_state = "intact-aux" }, /turf/simulated/floor/plating, /area/talon/maintenance/decktwo_aft) @@ -4183,16 +4045,16 @@ /area/talon/maintenance/decktwo_aft) "hz" = ( /obj/structure/railing{ - icon_state = "railing0"; - dir = 4 + dir = 4; + icon_state = "railing0" }, /obj/structure/railing, /turf/simulated/open, /area/talon/maintenance/decktwo_aft) "hB" = ( /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/structure/cable/green{ d1 = 4; @@ -4204,8 +4066,8 @@ /area/talon/maintenance/decktwo_aft) "hC" = ( /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/structure/cable/green{ d1 = 4; @@ -4224,12 +4086,12 @@ }, /obj/structure/catwalk, /obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 + dir = 2; + icon_state = "pipe-j2" }, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/structure/window/reinforced, /turf/simulated/floor/plating, @@ -4237,8 +4099,8 @@ "hE" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/zpipe/down/supply{ - icon_state = "down-supply"; - dir = 4 + dir = 4; + icon_state = "down-supply" }, /obj/machinery/door/firedoor/glass/talon, /turf/simulated/open, @@ -4246,8 +4108,8 @@ "hF" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - icon_state = "down-scrubbers"; - dir = 8 + dir = 8; + icon_state = "down-scrubbers" }, /obj/machinery/door/firedoor/glass/talon, /obj/structure/disposalpipe/down{ @@ -4258,65 +4120,10 @@ }, /turf/simulated/open, /area/talon/maintenance/decktwo_aft) -"hG" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) -"hH" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) -"hI" = ( -/obj/machinery/power/solar, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) -"hJ" = ( -/obj/structure/cable/heavyduty, -/obj/structure/cable/heavyduty{ - dir = 2; - icon_state = "0-4" - }, -/obj/structure/cable/heavyduty{ - icon_state = "0-2" - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) "hL" = ( /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 10 + dir = 10; + icon_state = "intact-scrubbers" }, /obj/structure/catwalk, /obj/machinery/light/small{ @@ -4325,26 +4132,6 @@ }, /turf/simulated/floor/plating, /area/talon/maintenance/decktwo_aft) -"hM" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) -"hN" = ( -/obj/structure/cable/heavyduty{ - icon_state = "0-2" - }, -/obj/structure/cable/heavyduty{ - icon_state = "0-8" - }, -/obj/structure/cable/heavyduty, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) "hO" = ( /obj/effect/overmap/visitable/ship/talon, /turf/space, @@ -4375,8 +4162,8 @@ dir = 5 }, /obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 + dir = 2; + icon_state = "pipe-j2" }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, @@ -4418,20 +4205,11 @@ }, /obj/machinery/door/airlock/maintenance/common, /obj/machinery/atmospherics/pipe/simple/visible/aux{ - icon_state = "intact-aux"; - dir = 4 + dir = 4; + icon_state = "intact-aux" }, /turf/simulated/floor/plating, /area/talon/maintenance/decktwo_aft) -"hZ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_aft) "ia" = ( /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/structure/cable/green{ @@ -4445,17 +4223,6 @@ /obj/structure/catwalk, /turf/simulated/floor/plating, /area/talon/maintenance/decktwo_aft) -"ib" = ( -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/obj/machinery/camera/network/talon{ - icon_state = "camera"; - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_aft) "ic" = ( /obj/structure/lattice, /obj/structure/railing, @@ -4468,8 +4235,8 @@ req_one_access = list(301) }, /obj/machinery/atmospherics/unary/vent_pump/aux{ - icon_state = "map_vent_aux"; - dir = 1 + dir = 1; + icon_state = "map_vent_aux" }, /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ dir = 8; @@ -4488,15 +4255,6 @@ }, /turf/simulated/floor/plating, /area/talon/maintenance/decktwo_aft) -"if" = ( -/obj/machinery/airlock_sensor{ - pixel_x = -28; - pixel_y = 28; - req_one_access = list(301) - }, -/obj/effect/map_helper/airlock/sensor/ext_sensor, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_aft) "ig" = ( /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/structure/cable/green{ @@ -4516,23 +4274,23 @@ }, /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/visible/aux{ - icon_state = "intact-aux"; - dir = 10 + dir = 10; + icon_state = "intact-aux" }, /turf/simulated/floor/plating, /area/talon/maintenance/decktwo_aft) "ii" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/visible/aux{ - icon_state = "intact-aux"; - dir = 6 + dir = 6; + icon_state = "intact-aux" }, /turf/simulated/floor/plating, /area/talon/maintenance/decktwo_aft) "ij" = ( /obj/machinery/atmospherics/portables_connector/aux{ - icon_state = "map_connector-aux"; - dir = 1 + dir = 1; + icon_state = "map_connector-aux" }, /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/plating, @@ -4540,8 +4298,8 @@ "ik" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/visible/aux{ - icon_state = "intact-aux"; - dir = 4 + dir = 4; + icon_state = "intact-aux" }, /turf/simulated/floor/plating, /area/talon/maintenance/decktwo_aft) @@ -4555,8 +4313,8 @@ }, /obj/effect/map_helper/airlock/sensor/int_sensor, /obj/machinery/atmospherics/pipe/simple/visible/aux{ - icon_state = "intact-aux"; - dir = 10 + dir = 10; + icon_state = "intact-aux" }, /turf/simulated/floor/plating, /area/talon/maintenance/decktwo_aft) @@ -4604,28 +4362,6 @@ "is" = ( /turf/simulated/open/vacuum, /area/space) -"it" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) -"iu" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) "iv" = ( /obj/machinery/power/tracker, /obj/structure/cable/yellow{ @@ -4634,38 +4370,8 @@ }, /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/floor_decal/industrial/warning/dust/corner{ - icon_state = "warningcorner_dust"; - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) -"iw" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) -"ix" = ( -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/heavyduty, -/obj/structure/cable/heavyduty{ - icon_state = "0-2" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) -"iy" = ( -/obj/structure/cable/heavyduty{ - icon_state = "0-2" - }, -/obj/structure/cable/heavyduty, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" + dir = 1; + icon_state = "warningcorner_dust" }, /turf/simulated/floor/reinforced/airless, /area/talon/maintenance/decktwo_solars) @@ -4681,104 +4387,19 @@ }, /turf/simulated/floor/reinforced/airless, /area/talon/maintenance/decktwo_solars) -"iA" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-4" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) -"iB" = ( -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) -"iC" = ( -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) -"iD" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) -"iE" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) -"iF" = ( -/obj/structure/cable/heavyduty{ - dir = 2; - icon_state = "0-4" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) -"iG" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) -"iH" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) -"iI" = ( -/obj/structure/cable/heavyduty{ - icon_state = "0-8" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) "iJ" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/visible/aux{ - icon_state = "intact-aux"; - dir = 5 + dir = 5; + icon_state = "intact-aux" }, /turf/simulated/floor/plating, /area/talon/maintenance/decktwo_aft) "iK" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/visible/aux{ - icon_state = "intact-aux"; - dir = 9 + dir = 9; + icon_state = "intact-aux" }, /obj/machinery/firealarm{ dir = 1; @@ -4795,8 +4416,8 @@ /area/talon/decktwo/tech) "jD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -4813,8 +4434,8 @@ pixel_y = -24 }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/decktwo/central_hallway) @@ -4828,6 +4449,24 @@ /obj/structure/disposalpipe/segment, /turf/simulated/wall/rshull, /area/talon/maintenance/decktwo_aft) +"lL" = ( +/obj/machinery/power/solar, +/obj/structure/cable/yellow, +/turf/simulated/floor/plating/eris/under/airless, +/area/talon/maintenance/decktwo_solars) +"mh" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) +"mC" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) "mN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -4841,8 +4480,8 @@ dir = 9 }, /obj/machinery/oxygen_pump{ - icon_state = "oxygen_tank"; dir = 4; + icon_state = "oxygen_tank"; pixel_x = 30 }, /turf/simulated/floor/tiled/steel, @@ -4854,16 +4493,11 @@ }, /turf/simulated/floor/wood, /area/talon/decktwo/cap_room) -"nH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +"nB" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, +/turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) "nR" = ( /obj/machinery/suit_cycler/vintage/tcaptain, @@ -4871,14 +4505,29 @@ /area/talon/decktwo/cap_room) "ol" = ( /obj/structure/sign/poster{ - icon_state = ""; - dir = 1 + dir = 1; + icon_state = "" }, /turf/simulated/wall, /area/talon/decktwo/bar) -"om" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner, -/turf/simulated/floor/reinforced/airless, +"oX" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) +"pi" = ( +/turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) "pY" = ( /obj/structure/cable/green{ @@ -4887,8 +4536,8 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/wood, /area/talon/decktwo/bar) @@ -4899,21 +4548,48 @@ }, /turf/simulated/wall/rshull, /area/talon/maintenance/decktwo_aft) +"qW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) "rb" = ( /obj/structure/disposalpipe/trunk, /obj/machinery/disposal/deliveryChute{ - icon_state = "intake"; - dir = 4 + dir = 4; + icon_state = "intake" }, /obj/effect/floor_decal/rust/steel_decals_rusted1{ dir = 8 }, /obj/effect/floor_decal/rust/steel_decals_rusted1{ - icon_state = "steel_decals_rusted1"; - dir = 4 + dir = 4; + icon_state = "steel_decals_rusted1" }, /turf/simulated/floor/tiled/techmaint, /area/talon/maintenance/decktwo_aft) +"rA" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) "rE" = ( /obj/machinery/atmospherics/pipe/simple/visible/supply{ dir = 6 @@ -4932,13 +4608,28 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - icon_state = "1-2"; - dir = 1 + dir = 1; + icon_state = "1-2" }, /obj/effect/overmap/visitable/ship/landable/talon_lifeboat, /obj/effect/shuttle_landmark/shuttle_initializer/talon_lifeboat, /turf/simulated/floor/tiled/techfloor, /area/talon/decktwo/lifeboat) +"sn" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/pointdefense{ + id_tag = "talon_pd" + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) "sx" = ( /obj/machinery/button/remote/airlock{ dir = 4; @@ -4949,10 +4640,6 @@ }, /turf/simulated/floor/wood, /area/talon/decktwo/cap_room) -"sE" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) "tx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -4970,10 +4657,18 @@ }, /turf/simulated/floor/plating, /area/talon/maintenance/decktwo_aft) +"tY" = ( +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/solar, +/turf/simulated/floor/plating/eris/under/airless, +/area/talon/maintenance/decktwo_solars) "uP" = ( /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/structure/catwalk, /obj/structure/sign/securearea{ @@ -4995,8 +4690,8 @@ id = "talon_windows" }, /obj/structure/cable/green{ - icon_state = "4-8"; - dir = 1 + dir = 1; + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/talon/decktwo/bar) @@ -5014,51 +4709,70 @@ /area/talon/maintenance/decktwo_aft) "vB" = ( /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/wood, /area/talon/decktwo/bar) -"vM" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) "vO" = ( -/obj/structure/cable/green{ - d1 = 1; +/obj/structure/cable/yellow{ + d1 = 2; d2 = 4; - icon_state = "1-4" + icon_state = "2-4" }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) -"vS" = ( -/obj/structure/cable/green{ - d1 = 4; +/obj/structure/cable/yellow{ + d1 = 2; d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) +"wE" = ( +/obj/structure/cable/green{ + dir = 1; icon_state = "4-8" }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 4 }, -/turf/simulated/floor/reinforced/airless, +/turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) "wW" = ( /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/wall/rshull, /area/talon/maintenance/decktwo_aft) +"wZ" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4; + icon_state = "pipe-t" + }, +/obj/structure/disposaloutlet, +/turf/simulated/floor/plating/eris/under/airless, +/area/talon/maintenance/decktwo_solars) +"xg" = ( +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-8" + }, +/obj/structure/cable/heavyduty, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) "xm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -5074,11 +4788,27 @@ pixel_y = -31 }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/tiled/steel, /area/talon/decktwo/central_hallway) +"xV" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) "yb" = ( /obj/structure/table/steel, /obj/machinery/button/remote/blast_door{ @@ -5088,24 +4818,14 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/talon/decktwo/bridge_upper) -"ys" = ( -/obj/structure/cable/green{ - icon_state = "4-8"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) "yF" = ( /obj/structure/disposalpipe/trunk{ - icon_state = "pipe-t"; - dir = 1 + dir = 1; + icon_state = "pipe-t" }, /obj/structure/disposaloutlet{ - icon_state = "outlet"; - dir = 8 + dir = 8; + icon_state = "outlet" }, /obj/structure/window/reinforced{ dir = 4 @@ -5114,11 +4834,27 @@ dir = 8 }, /obj/effect/floor_decal/rust/steel_decals_rusted1{ - icon_state = "steel_decals_rusted1"; - dir = 4 + dir = 4; + icon_state = "steel_decals_rusted1" }, /turf/simulated/floor/tiled/techmaint, /area/talon/maintenance/decktwo_aft) +"yH" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) "zm" = ( /obj/structure/cable/green{ d1 = 4; @@ -5128,15 +4864,37 @@ /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass/talon, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/plating, /area/talon/maintenance/decktwo_starboard) +"zs" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) +"zu" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) "AA" = ( /obj/structure/sign/poster{ - icon_state = ""; - dir = 4 + dir = 4; + icon_state = "" }, /turf/simulated/wall, /area/talon/maintenance/decktwo_starboard) @@ -5146,16 +4904,6 @@ }, /turf/simulated/floor/wood, /area/talon/decktwo/bar) -"AT" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - icon_state = "warningcorner_dust"; - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) "BC" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -5164,12 +4912,57 @@ dir = 8 }, /obj/machinery/camera/network/talon{ - icon_state = "camera"; - dir = 4 + dir = 4; + icon_state = "camera" }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/steel, /area/talon/decktwo/central_hallway) +"BL" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) +"CB" = ( +/obj/machinery/power/pointdefense{ + id_tag = "talon_pd" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) +"CF" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) +"CL" = ( +/obj/structure/cable/heavyduty{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) "Dk" = ( /obj/structure/cable/green{ d1 = 1; @@ -5184,23 +4977,26 @@ }, /turf/simulated/floor/wood, /area/talon/decktwo/bar) -"Dz" = ( -/obj/structure/cable/green{ - icon_state = "1-8" +"DT" = ( +/obj/machinery/airlock_sensor{ + pixel_x = -28; + pixel_y = 28; + req_one_access = list(301) }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_aft) +"En" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-4" }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) -"Em" = ( -/obj/structure/disposalpipe/trunk{ - icon_state = "pipe-t"; - dir = 4 +/obj/machinery/camera/network/talon{ + dir = 6; + icon_state = "camera" }, -/obj/structure/disposaloutlet, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_aft) "EA" = ( /obj/machinery/conveyor{ dir = 8; @@ -5227,16 +5023,27 @@ dir = 9 }, /obj/machinery/camera/network/talon{ - icon_state = "camera"; - dir = 9 + dir = 9; + icon_state = "camera" }, /turf/simulated/floor/tiled/steel, /area/talon/decktwo/central_hallway) -"Gk" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8 +"FF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, -/turf/simulated/floor/reinforced/airless, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) +"FT" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) "Gq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -5250,14 +5057,28 @@ pixel_x = 0 }, /obj/structure/sign/directions/roomnum{ - icon_state = "roomnum"; dir = 1; + icon_state = "roomnum"; pixel_x = -31; pixel_y = -9 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/steel, /area/talon/decktwo/central_hallway) +"GQ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) +"HF" = ( +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/solar, +/turf/simulated/floor/plating/eris/under/airless, +/area/talon/maintenance/decktwo_solars) "Ib" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -5265,13 +5086,32 @@ /obj/effect/map_helper/airlock/door/simple, /turf/simulated/floor/tiled/techfloor, /area/talon/decktwo/lifeboat) -"Ie" = ( +"Ic" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) +"Iw" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/turf/simulated/floor/reinforced/airless, +/turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) "IL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -5280,8 +5120,8 @@ dir = 8 }, /obj/machinery/oxygen_pump{ - icon_state = "oxygen_tank"; dir = 8; + icon_state = "oxygen_tank"; pixel_x = -30 }, /obj/structure/disposalpipe/segment, @@ -5320,6 +5160,40 @@ }, /turf/simulated/floor/tiled/steel, /area/talon/decktwo/central_hallway) +"Lg" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) +"Lj" = ( +/obj/structure/cable/heavyduty{ + icon_state = "0-8" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) +"Mn" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) +"My" = ( +/obj/effect/floor_decal/emblem/talon, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) +"MA" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) +"MO" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) "MS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -5336,8 +5210,8 @@ dir = 9 }, /obj/structure/sign/directions/roomnum{ - icon_state = "roomnum"; dir = 8; + icon_state = "roomnum"; pixel_x = 32; pixel_y = -9 }, @@ -5353,57 +5227,55 @@ icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 10 + dir = 10; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/plating, /area/talon/maintenance/decktwo_aft) -"Nx" = ( +"Oc" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" }, -/turf/simulated/floor/reinforced/airless, +/turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) "Ou" = ( -/obj/structure/cable/green{ - icon_state = "0-2" +/obj/structure/cable/heavyduty{ + dir = 2; + icon_state = "0-4" }, -/obj/machinery/power/pointdefense{ - id_tag = "talon_pd" - }, -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, +/turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) -"Ow" = ( -/obj/machinery/power/pointdefense{ - id_tag = "talon_pd" +"OO" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" }, -/obj/effect/floor_decal/techfloor{ - dir = 8 +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/obj/effect/floor_decal/techfloor{ - dir = 4 +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/reinforced/airless, +/turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) -"Pk" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 +"OS" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, -/turf/simulated/floor/reinforced/airless, +/turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) "Px" = ( /obj/structure/grille, @@ -5424,6 +5296,22 @@ }, /turf/simulated/floor/plating, /area/talon/maintenance/decktwo_port) +"PA" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1; + icon_state = "warningcorner_dust" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) +"PX" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) "Qm" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass/talon, @@ -5431,8 +5319,8 @@ /area/talon/maintenance/decktwo_aft) "QF" = ( /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/structure/cable/green{ d1 = 4; @@ -5447,11 +5335,60 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/talon/maintenance/decktwo_aft) -"RK" = ( +"QJ" = ( +/obj/machinery/power/solar, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating/eris/under/airless, +/area/talon/maintenance/decktwo_solars) +"Rv" = ( /obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) +"Ry" = ( +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/obj/structure/cable/heavyduty, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) +"RA" = ( +/obj/machinery/power/pointdefense{ + id_tag = "talon_pd" + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ dir = 4 }, -/turf/simulated/floor/reinforced/airless, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) +"Sb" = ( +/obj/machinery/power/pointdefense{ + id_tag = "talon_pd" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) "Se" = ( /obj/machinery/firealarm{ @@ -5466,14 +5403,19 @@ }, /turf/simulated/floor/carpet/blucarpet, /area/talon/decktwo/cap_room) -"Tw" = ( -/obj/effect/floor_decal/emblem/talon, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) +"Tz" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_aft) "TC" = ( /obj/structure/sign/poster{ - icon_state = ""; - dir = 8 + dir = 8; + icon_state = "" }, /turf/simulated/wall, /area/talon/decktwo/central_hallway) @@ -5481,25 +5423,69 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 + dir = 4; + icon_state = "pipe-s" }, /turf/simulated/floor/wood, /area/talon/decktwo/bar) -"UI" = ( -/obj/machinery/power/pointdefense{ - id_tag = "talon_pd" - }, +"Uj" = ( /obj/structure/cable/green{ - icon_state = "0-8" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/techfloor{ +/obj/effect/floor_decal/industrial/warning/dust{ dir = 8 }, -/obj/effect/floor_decal/techfloor{ - dir = 4 +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) +"Us" = ( +/obj/structure/cable/heavyduty{ + dir = 2; + icon_state = "0-4" }, -/turf/simulated/floor/reinforced/airless, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) +"Uv" = ( +/obj/structure/cable/heavyduty, +/obj/structure/cable/heavyduty{ + dir = 2; + icon_state = "0-4" + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) +"UW" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) "VV" = ( /obj/structure/disposalpipe/segment{ @@ -5508,12 +5494,36 @@ }, /turf/simulated/wall/rshull, /area/talon/maintenance/decktwo_aft) +"WO" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) "WZ" = ( /obj/structure/cable/green{ icon_state = "4-8" }, /turf/simulated/floor/wood, /area/talon/decktwo/cap_room) +"Xg" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) "Xh" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -5533,6 +5543,17 @@ }, /turf/simulated/floor/plating, /area/talon/maintenance/decktwo_starboard) +"Xn" = ( +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/heavyduty, +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/decktwo_solars) "Xp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -5551,49 +5572,35 @@ }, /turf/simulated/floor/tiled/steel, /area/talon/decktwo/central_hallway) -"Yb" = ( +"Yc" = ( /obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 + dir = 4 }, -/turf/simulated/floor/reinforced/airless, +/turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) -"YQ" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/reinforced/airless, +"YH" = ( +/obj/structure/cable/yellow, +/obj/machinery/power/solar, +/turf/simulated/floor/plating/eris/under/airless, /area/talon/maintenance/decktwo_solars) -"Zc" = ( +"YW" = ( /obj/structure/cable/heavyduty{ - icon_state = "1-2" + icon_state = "1-4" }, /obj/structure/disposalpipe/segment, -/turf/simulated/floor/reinforced/airless, +/turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) "Zd" = ( /obj/structure/cable/green{ - icon_state = "4-8"; - dir = 1 + dir = 1; + icon_state = "4-8" }, /turf/simulated/floor/lino, /area/talon/decktwo/bar) -"Zf" = ( -/obj/machinery/power/pointdefense{ - id_tag = "talon_pd" - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) "ZF" = ( /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/structure/cable/green{ d1 = 4; @@ -5610,13 +5617,6 @@ }, /turf/simulated/floor/plating, /area/talon/maintenance/decktwo_aft) -"ZP" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/reinforced/airless, -/area/talon/maintenance/decktwo_solars) (1,1,1) = {" aa @@ -13077,9 +13077,9 @@ is is is is -Zf -Yb -ao +CB +Rv +pi is is is @@ -13219,9 +13219,9 @@ is is is is -vS +Uj iv -ao +pi is is is @@ -13346,38 +13346,38 @@ is is aa aa -ao -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -Ie -iw -ao -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -ao +pi +HF +HF +HF +HF +HF +HF +HF +HF +HF +HF +HF +HF +HF +HF +CF +WO +pi +HF +HF +HF +HF +HF +HF +HF +HF +HF +HF +HF +HF +HF +pi aa aa aa @@ -13488,38 +13488,38 @@ is is is aa -ce -ct -fi -hH -hJ -it -it -it -it -it -it -it -it -it -it -Nx -ix -iu -it -it -it -it -it -it -it -it -it -it -it -it -it -iA +ao +rA +Oc +vO +Uv +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +Iw +Xn +OS +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +PX aa aa aa @@ -13630,39 +13630,39 @@ is is is aa -ce -cu -fv -fh -hM -fh -fh -fh -fh -fh -fh -fh -fh -fh -fh -Ie ao -ao -fh -fh -fh -fh -fh -fh -fh -fh -fh -fh -fh -fh -fh -iB -iA +OO +lL +tY +FT +tY +tY +tY +tY +tY +tY +tY +tY +tY +tY +CF +pi +pi +tY +tY +tY +tY +tY +tY +tY +tY +tY +tY +tY +tY +tY +MO +PX aa aa aa @@ -13772,9 +13772,9 @@ is is is aa -ce -cu -fw +ao +OO +YH cb cg cb @@ -13804,12 +13804,12 @@ ht ht ht ht -iB -iA -ao -ao -ao -ao +MO +PX +pi +pi +pi +pi aa aa aa @@ -13914,9 +13914,9 @@ is is is aa -ce -cv -fw +ao +CL +YH cb ch cx @@ -13946,11 +13946,11 @@ hu hV hE ht -ao -hM -ao -iF -ao +pi +FT +pi +Ou +pi iL aa aa @@ -14046,19 +14046,19 @@ aa aa aa aa -ao -ao -ao -ao -ao -sE -Ow -vO -ao -ao -ao -ao -ao +pi +pi +pi +pi +pi +Lg +RA +FF +pi +pi +pi +pi +pi cb ci cc @@ -14088,11 +14088,11 @@ hu gp hd ht -ce -iE -fw -iG -fw +ao +zs +YH +UW +YH iL aa aa @@ -14188,19 +14188,19 @@ aa aa aa aa -ao -ao -ao -ao -ao -Gk -Pk -AT -ao -ao -ao -ao -ao +pi +pi +pi +pi +pi +nB +zu +PA +pi +pi +pi +pi +pi cb ci cc @@ -14230,12 +14230,12 @@ hu gq he ht -ce -iE -fw -iG -fw ao +zs +YH +UW +YH +pi aa aa aa @@ -14330,8 +14330,8 @@ aa aa aa aa -ao -ao +pi +pi ap ap ap @@ -14372,11 +14372,11 @@ Qm gq he ht -ce -iE -fw -iG -fw +ao +zs +YH +UW +YH iL aa aa @@ -14514,11 +14514,11 @@ hu hx ij ht -ce -iE -fw -iG -fw +ao +zs +YH +UW +YH iL aa aa @@ -14656,12 +14656,12 @@ hu hY hu ht -ce -iE -fw -iG -fw ao +zs +YH +UW +YH +pi aa aa aa @@ -14798,12 +14798,12 @@ hc ih iJ ht -ce -iE -fw -iG -fw ao +zs +YH +UW +YH +pi aa aa aa @@ -14940,12 +14940,12 @@ gu hy ik ht -ce -iE -fw -iG -fw ao +zs +YH +UW +YH +pi aa aa aa @@ -15082,12 +15082,12 @@ gn hX ik ht -ce -iE -fw -iG -fw ao +zs +YH +UW +YH +pi aa aa aa @@ -15224,12 +15224,12 @@ ic ii iK ht -ce -iE -fw -iG -fw ao +zs +YH +UW +YH +pi aa aa aa @@ -15367,11 +15367,11 @@ ik ht ht ht -hZ -iu -iD -ao -ao +Tz +OS +GQ +pi +pi aa aa aa @@ -15509,11 +15509,11 @@ il in id ie -if -ao -Tw -ao -Em +DT +pi +My +pi +wZ aa aa aa @@ -15651,11 +15651,11 @@ im ht VV kv -ib -Zc -ZP -YQ -vM +En +Mn +YW +mh +MA aa aa aa @@ -15792,12 +15792,12 @@ ic he he wW -ce -eP -fw -iH -fw ao +oX +YH +yH +YH +pi aa aa aa @@ -15934,12 +15934,12 @@ gn gV he wW -ce -eP -fw -iH -fw ao +oX +YH +yH +YH +pi aa aa aa @@ -16076,12 +16076,12 @@ go hz he wW -ce -eP -fw -iH -fw ao +oX +YH +yH +YH +pi aa aa aa @@ -16218,12 +16218,12 @@ ig ir hR wW -ce -eP -fw -iH -fw ao +oX +YH +yH +YH +pi aa aa aa @@ -16360,12 +16360,12 @@ hu hB hu wW -ce -eP -fw -iH -fw ao +oX +YH +yH +YH +pi aa aa aa @@ -16502,11 +16502,11 @@ hu hC rb qG -ce -eP -fw -iH -fw +ao +oX +YH +yH +YH iL aa aa @@ -16644,11 +16644,11 @@ hu QF vj ht -ce -eP -fw -iH -fw +ao +oX +YH +yH +YH iL aa aa @@ -16746,15 +16746,15 @@ aa aa aa aa -ao -ao -ao -om -RK -ys -ao -ao -ao +pi +pi +pi +ct +Yc +wE +pi +pi +pi bQ ca ca @@ -16786,12 +16786,12 @@ hu ZF EA ht -ce -eP -fw -iH -fw ao +oX +YH +yH +YH +pi aa aa aa @@ -16888,15 +16888,15 @@ aa aa aa aa -ao -ao -ao -sE -Ou -Dz -ao -ao -ao +pi +pi +pi +Lg +sn +mC +pi +pi +pi bQ bQ bQ @@ -16928,11 +16928,11 @@ hw hD yF ht -ce -eP -fw -iH -fw +ao +oX +YH +yH +YH iL aa aa @@ -17038,9 +17038,9 @@ is is is aa -ce -cw -fw +ao +Us +YH bQ cr cG @@ -17070,11 +17070,11 @@ hu Nc hF ht -ao -hM -ao -iI -ao +pi +FT +pi +Lj +pi iL aa aa @@ -17180,9 +17180,9 @@ is is is aa -ce -eP -fw +ao +oX +YH bQ cs bQ @@ -17212,12 +17212,12 @@ ht ht ht ht -iC -iD -ao -ao -ao -ao +BL +GQ +pi +pi +pi +pi aa aa aa @@ -17322,39 +17322,39 @@ is is is aa -ce -eP -fv -hI -hM -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -Ie ao -ao -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -iC -iD +oX +lL +QJ +FT +HF +HF +HF +HF +HF +HF +HF +HF +HF +HF +CF +pi +pi +HF +HF +HF +HF +HF +HF +HF +HF +HF +HF +HF +HF +HF +BL +GQ aa aa aa @@ -17464,38 +17464,38 @@ is is is aa -ce -fg -hG -hG -hN -it -it -it -it -it -it -it -it -it -it -Nx -iy -iu -it -it -it -it -it -it -it -it -it -it -it -it -it -iD +ao +Xg +Ic +Ic +xg +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +Iw +Ry +OS +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +xV +GQ aa aa aa @@ -17606,38 +17606,38 @@ is is aa aa -ao -fh -fh -fh -fh -fh -fh -fh -fh -fh -fh -fh -fh -fh -fh -Ie -iw -ao -fh -fh -fh -fh -fh -fh -fh -fh -fh -fh -fh -fh -fh -ao +pi +tY +tY +tY +tY +tY +tY +tY +tY +tY +tY +tY +tY +tY +tY +CF +WO +pi +tY +tY +tY +tY +tY +tY +tY +tY +tY +tY +tY +tY +tY +pi aa aa aa @@ -17763,9 +17763,9 @@ is is is is -nH +qW iz -ao +pi is is is @@ -17905,9 +17905,9 @@ is is is is -UI -Yb -ao +Sb +Rv +pi is is is From 83a9765691a1c2f0557377b431b0c6d6728e4d1f Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Wed, 27 May 2020 21:51:51 -0400 Subject: [PATCH 05/38] Add sleevemate feature --- code/game/objects/items/devices/scanners_vr.dm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/code/game/objects/items/devices/scanners_vr.dm b/code/game/objects/items/devices/scanners_vr.dm index 8a7bb15c32..b8892ea501 100644 --- a/code/game/objects/items/devices/scanners_vr.dm +++ b/code/game/objects/items/devices/scanners_vr.dm @@ -44,6 +44,20 @@ var/global/mob/living/carbon/human/dummy/mannequin/sleevemate_mob /obj/item/device/sleevemate/attack(mob/living/M, mob/living/user) + // Gather potential subtargets + var/list/choices = list(M) + if(istype(M)) + for(var/belly in M.vore_organs) + var/obj/belly/B = belly + for(var/mob/living/carbon/human/H in B) // I do want an istype + choices += H + // Subtargets + if(choices.len > 1) + var/mob/living/new_M = input(user, "Ambiguous target. Please validate target:", "Target Validation", M) as null|anything in choices + if(!new_M || !M.Adjacent(user)) + return + M = new_M + if(ishuman(M)) scan_mob(M, user) else From 3bdbb63da6af1c8bec7a68e7360445b4298e7357 Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Wed, 27 May 2020 21:08:26 -0400 Subject: [PATCH 06/38] Adds a verb to set OOC notes mid-round --- code/modules/mob/living/living_vr.dm | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/living_vr.dm b/code/modules/mob/living/living_vr.dm index 540ba7ece4..a956bc5dd1 100644 --- a/code/modules/mob/living/living_vr.dm +++ b/code/modules/mob/living/living_vr.dm @@ -39,4 +39,15 @@ riding_datum.keytype = /obj/item/weapon/material/twohanded/fluff/riding_crop to_chat(src, "Rider control restricted.") return - return \ No newline at end of file + return + +/mob/living/verb/set_metainfo() + set name = "Set OOC Metainfo" + set desc = "Sets OOC notes about yourself or your RP preferences or status." + set category = "OOC" + + var/new_metadata = sanitize(input(usr, "Enter any information you'd like others to see, such as Roleplay-preferences. This will not be saved permanently, only for this round.", "Game Preference" , html_decode(ooc_notes)) as message, extra = 0) + if(new_metadata && CanUseTopic(usr)) + ooc_notes = new_metadata + to_chat(usr, "OOC notes updated.") + log_admin("[key_name(usr)] updated their OOC notes mid-round.") From 667c49b80b541ff28de4b3911e29ad474b40ed1e Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Thu, 28 May 2020 10:26:08 -0400 Subject: [PATCH 07/38] Fix solgov icons --- code/modules/clothing/suits/solgov.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/modules/clothing/suits/solgov.dm b/code/modules/clothing/suits/solgov.dm index 7b3b16f74f..500a62c126 100644 --- a/code/modules/clothing/suits/solgov.dm +++ b/code/modules/clothing/suits/solgov.dm @@ -2,7 +2,7 @@ /obj/item/clothing/suit/storage/solgov name = "master solgov jacket" icon = 'icons/obj/clothing/suits_solgov.dmi' - item_icons = list(slot_w_uniform_str = 'icons/mob/suit_solgov.dmi') + icon_override = 'icons/mob/suit_solgov.dmi' //Service @@ -263,7 +263,7 @@ icon_state = "blackdress" item_state = "blackdress" icon = 'icons/obj/clothing/suits_solgov.dmi' - item_icons = list(slot_w_uniform_str = 'icons/mob/suit_solgov.dmi') + icon_override = 'icons/mob/suit_solgov.dmi' body_parts_covered = UPPER_TORSO|ARMS armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0) siemens_coefficient = 0.9 @@ -294,7 +294,7 @@ name = "\improper SifGuard winter coat" icon_state = "coatec" icon = 'icons/obj/clothing/suits_solgov.dmi' - item_icons = list(slot_w_uniform_str = 'icons/mob/suit_solgov.dmi') + icon_override = 'icons/mob/suit_solgov.dmi' armor = list(melee = 25, bullet = 10, laser = 5, energy = 10, bomb = 20, bio = 0, rad = 10) valid_accessory_slots = list(ACCESSORY_SLOT_INSIGNIA,ACCESSORY_SLOT_RANK) @@ -345,7 +345,7 @@ icon_state = "terranservice" item_state = "terranservice" icon = 'icons/obj/clothing/suits_solgov.dmi' - item_icons = list(slot_w_uniform_str = 'icons/mob/suit_solgov.dmi') + icon_override = 'icons/mob/suit_solgov.dmi' /obj/item/clothing/suit/storage/terran/service/navy/command name = "indie command coat" @@ -361,7 +361,7 @@ icon_state = "terrandress" item_state = "terrandress" icon = 'icons/obj/clothing/suits_solgov.dmi' - item_icons = list(slot_w_uniform_str = 'icons/mob/suit_solgov.dmi') + icon_override = 'icons/mob/suit_solgov.dmi' body_parts_covered = UPPER_TORSO|ARMS armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0) siemens_coefficient = 0.9 From 26c7fd75d76d5e162049ae89c2e433715c3df792 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Thu, 28 May 2020 11:41:59 -0400 Subject: [PATCH 08/38] Talon Interior --- maps/tether/submaps/offmap/talon1.dmm | 12269 ++++++++++-------------- maps/tether/submaps/offmap/talon2.dmm | 6260 +++++------- 2 files changed, 7922 insertions(+), 10607 deletions(-) diff --git a/maps/tether/submaps/offmap/talon1.dmm b/maps/tether/submaps/offmap/talon1.dmm index 972e7c1bdc..619483be81 100644 --- a/maps/tether/submaps/offmap/talon1.dmm +++ b/maps/tether/submaps/offmap/talon1.dmm @@ -8,228 +8,19 @@ "ac" = ( /turf/simulated/wall, /area/talon/deckone/bridge) -"ad" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/plating, -/area/talon/deckone/bridge) -"ae" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8; - icon_state = "techfloororange_edges" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/deckone/bridge) -"af" = ( -/obj/machinery/computer/ship/helm{ - req_one_access = list(301) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/deckone/bridge) -"ag" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/bridge) -"ah" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/bridge) -"ai" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/bridge) "aj" = ( -/obj/machinery/computer/ship/sensors, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/deckone/bridge) -"ak" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4; - icon_state = "techfloororange_edges" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/deckone/bridge) -"al" = ( -/obj/machinery/computer/ship/navigation{ - dir = 4; - icon_state = "computer" - }, -/obj/effect/floor_decal/techfloor{ - dir = 8; - icon_state = "techfloororange_edges" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/deckone/bridge) -"am" = ( -/obj/structure/bed/chair/bay/comfy/brown{ - dir = 1; - icon_state = "bay_comfychair_preview" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/deckone/bridge) -"an" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/bridge) -"ao" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/bridge) -"ap" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/bridge) -"aq" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4; - icon_state = "techfloororange_edges" - }, -/obj/machinery/computer/ship/engines{ - dir = 8; - icon_state = "computer"; - req_one_access = list(301) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/deckone/bridge) -"ar" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8; - icon_state = "techfloororange_edges" - }, -/obj/structure/table/steel, /obj/machinery/light{ dir = 8; icon_state = "tube1"; pixel_y = 0 }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "talon_sensor"; - name = "sensor blast shields" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/deckone/bridge) -"as" = ( -/obj/structure/table/steel, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/deckone/bridge) -"at" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4; - icon_state = "techfloororange_edges" - }, -/obj/structure/table/steel, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "talon_windows"; - name = "window blast shields" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/deckone/bridge) -"au" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8; - icon_state = "techfloororange_edges" - }, -/obj/item/modular_computer/console/preset/talon{ - dir = 4; - icon_state = "console" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/deckone/bridge) -"av" = ( -/obj/structure/bed/chair/bay/comfy/blue{ - dir = 8; - icon_state = "bay_comfychair_preview"; - name = "doctor's seat" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/deckone/bridge) -"aw" = ( -/obj/structure/bed/chair/bay/comfy/red{ - dir = 4; - icon_state = "bay_comfychair_preview" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/deckone/bridge) -"ax" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4; - icon_state = "techfloororange_edges" - }, -/obj/item/modular_computer/console/preset/talon{ - dir = 8; - icon_state = "console" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/deckone/bridge) -"ay" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8; - icon_state = "techfloororange_edges" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/deckone/bridge) -"az" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/deckone/bridge) -"aB" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4; - icon_state = "techfloororange_edges" - }, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/port_eng) +"am" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) +"aq" = ( /obj/machinery/camera/network/talon{ dir = 9; icon_state = "camera" @@ -238,51 +29,20 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/simulated/floor/tiled/techfloor/grid, +/turf/simulated/floor/tiled/eris/dark/cyancorner, /area/talon/deckone/bridge) -"aC" = ( -/turf/simulated/wall/rshull, -/area/talon/maintenance/deckone_port) -"aD" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8; - icon_state = "techfloororange_edges" - }, +"ar" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 + dir = 1 }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - icon_state = "extinguisher_closed"; - pixel_x = -30 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/deckone/bridge) -"aE" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc/talon{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/deckone/bridge) -"aF" = ( +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/talon/deckone/armory) +"aA" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -291,298 +51,83 @@ pixel_x = 8; pixel_y = -26 }, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/bridge) -"aG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/bridge) -"aH" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/bridge) -"aI" = ( -/obj/machinery/alarm/talon{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/deckone/bridge) -"aJ" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4; - icon_state = "techfloororange_edges" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/techfloor/grid, +/turf/simulated/floor/tiled/eris/white/golden, /area/talon/deckone/bridge) +"aC" = ( +/turf/simulated/wall/rshull, +/area/talon/maintenance/deckone_port) "aK" = ( /turf/simulated/wall/rshull, /area/talon/maintenance/deckone_starboard) "aL" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_port) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/talon/deckone/medical) "aM" = ( /turf/simulated/wall, /area/talon/maintenance/deckone_port) -"aN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/command{ - name = "Talon Secure Airlock"; - req_one_access = list(301) - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/bridge) "aO" = ( /turf/simulated/wall, /area/talon/maintenance/deckone_starboard) -"aP" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) +"aQ" = ( +/obj/machinery/computer/ship/engines{ + dir = 8; + icon_state = "computer"; + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/bridge) "aR" = ( /turf/simulated/wall, /area/talon/deckone/secure_storage) -"aS" = ( -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/secure_storage) -"aT" = ( -/obj/structure/table/rack/steel, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/secure_storage) -"aU" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/talon{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/secure_storage) "aV" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 }, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/secure_storage) -"aW" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/steel_ridged, -/area/talon/deckone/bridge_hallway) -"aX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4{ - dir = 1; - icon_state = "steel_decals_central4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/bridge_hallway) +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) "aY" = ( /turf/simulated/wall, /area/talon/deckone/armory) -"aZ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light_switch{ - dir = 4; - icon_state = "light1"; - pixel_x = -24 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 5; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/armory) -"ba" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/talon{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/armory) -"bb" = ( -/obj/structure/table/rack/steel, -/obj/item/clothing/suit/armor/combat, -/obj/item/clothing/head/helmet/combat, -/obj/item/clothing/under/syndicate/combat, -/obj/machinery/camera/network/talon, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/armory) -"bc" = ( -/obj/structure/table/rack/steel, -/obj/item/clothing/suit/space/syndicate/black, -/obj/item/clothing/head/helmet/space/syndicate/black, -/obj/item/clothing/shoes/magboots, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/armory) -"bd" = ( -/obj/structure/barricade, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) -"be" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/secure_storage) -"bf" = ( -/obj/structure/cable/green{ - dir = 1; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/secure_storage) "bg" = ( -/obj/structure/cable/green{ - dir = 1; - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/armory) -"bh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/secure_storage) -"bi" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/plating, -/area/talon/deckone/secure_storage) +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/brig) "bj" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/bridge_hallway) -"bk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/bridge_hallway) -"bl" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/bridge_hallway) -"bm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, /obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/talon/deckone/armory) -"bn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/armory) -"bo" = ( +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"bk" = ( +/obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" + icon_state = "2-8" }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/secure_storage) -"bp" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/armory) -"bq" = ( -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/secure_storage) +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) "br" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -597,30 +142,6 @@ }, /turf/simulated/floor/plating, /area/talon/maintenance/deckone_port) -"bs" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled/monotile, -/area/talon/deckone/central_hallway) -"bt" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/secure_storage) "bu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4; @@ -639,61 +160,13 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/talon/deckone/secure_storage) -"bv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/bridge_hallway) "bw" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/catwalk_plated/dark, -/turf/simulated/floor/plating, -/area/talon/deckone/bridge_hallway) -"bx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4; icon_state = "intact-scrubbers" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4{ - dir = 4; - icon_state = "steel_decals_central4" - }, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/bridge_hallway) +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/port_eng) "by" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4; @@ -713,249 +186,70 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/talon/deckone/armory) -"bz" = ( +"bP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/starboard_eng) +"bQ" = ( +/turf/simulated/wall, +/area/talon/deckone/bridge_hallway) +"bR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/armory) -"bA" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1; - icon_state = "warning" - }, -/turf/simulated/floor/tiled/monotile, -/area/talon/deckone/central_hallway) -"bB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - id = "talon_windows" - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) -"bC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/blast/regular/open{ - id = "talon_windows" - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_port) -"bD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/secure_storage) -"bE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/talon/deckone/secure_storage) -"bF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/bridge_hallway) -"bG" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/bridge_hallway) -"bH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/talon/deckone/armory) -"bI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/armory) -"bJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/blast/regular/open{ - id = "talon_windows" - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) -"bK" = ( -/obj/machinery/alarm/talon{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/table/rack/steel, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/secure_storage) -"bL" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/secure_storage) -"bM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/bridge_hallway) -"bN" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "pipe-t" + icon_state = "pipe-s" }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/bridge_hallway) -"bO" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +/obj/machinery/door/firedoor/glass{ + dir = 2 }, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/armory) -"bP" = ( -/obj/machinery/alarm/talon{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/table/rack/steel, -/obj/item/weapon/grenade/spawnergrenade/manhacks/mercenary{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/item/device/spaceflare, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/armory) -"bQ" = ( -/turf/simulated/wall, -/area/talon/deckone/bridge_hallway) -"bR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/command{ - name = "Talon Secure Airlock"; - req_one_access = list(301) - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/bridge_hallway) -"bS" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_port) +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/talon/deckone/central_hallway) "bT" = ( -/obj/machinery/light/small{ - dir = 1; - icon_state = "bulb1" - }, -/obj/structure/toilet, -/obj/machinery/door/window/brigdoor/eastleft{ - dir = 8; - req_access = list(301) - }, -/turf/simulated/floor/tiled/white, -/area/talon/deckone/bridge_hallway) -"bU" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/talon/deckone/bridge_hallway) +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/plating/eris/under, +/area/talon/deckone/port_eng) "bV" = ( /obj/machinery/door/airlock, /obj/machinery/door/firedoor/glass/talon, /turf/simulated/floor/tiled/steel_grid, /area/talon/deckone/bridge_hallway) "bW" = ( +/obj/structure/table/steel, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "talon_sensor"; + name = "sensor blast shields" + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/bridge) +"cd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 8; + pixel_x = 0 + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) +"cg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -963,16 +257,6 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4{ - dir = 1; - icon_state = "steel_decals_central4" - }, /obj/structure/sign/securearea{ pixel_x = -32; pixel_y = 32 @@ -984,266 +268,16 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/steel, /area/talon/deckone/bridge_hallway) -"bX" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/white, -/area/talon/deckone/bridge_hallway) -"bY" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/white, -/area/talon/deckone/bridge_hallway) -"bZ" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) -"ca" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/talon{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_port) -"cb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/light/small{ - dir = 8; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/bridge_hallway) -"cd" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/talon{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) -"ce" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_port) -"cf" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_port) -"cg" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/plating, -/area/talon/deckone/bridge_hallway) -"ch" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/bridge_hallway) -"ci" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) -"cj" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) -"ck" = ( -/obj/structure/barricade, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_port) "cl" = ( /turf/simulated/wall, /area/talon/deckone/port_solar) -"cm" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/maintenance/engi{ - req_one_access = list(301) - }, -/turf/simulated/floor/plating, -/area/talon/deckone/port_solar) -"cn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/bridge_hallway) "co" = ( /turf/simulated/wall, /area/talon/deckone/starboard_solar) -"cp" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/maintenance/engi{ - req_one_access = list(301) - }, -/turf/simulated/floor/plating, -/area/talon/deckone/starboard_solar) "cr" = ( -/obj/structure/cable/yellow{ - icon_state = "16-0" - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/power/sensor{ - name = "Talon Port Solar Panels"; - name_tag = "TLN-PRT-SLR" - }, -/obj/effect/catwalk_plated/dark, -/turf/simulated/floor/plating, -/area/talon/deckone/port_solar) -"cs" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/deckone/port_solar) -"ct" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/smes/buildable/offmap_spawn{ - RCon_tag = "Talon Port SMES" - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/deckone/port_solar) -"cu" = ( -/obj/structure/cable/green{ - icon_state = "16-0" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/sensor{ - name = "Talon Port SMES Connection"; - name_tag = "TLN-PRT-SMES" - }, -/obj/machinery/camera/network/talon, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/deckone/port_solar) +/obj/structure/vehiclecage/spacebike, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) "cv" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/tiled/steel_ridged, @@ -1252,31 +286,6 @@ /obj/machinery/vending/sovietsoda, /turf/simulated/floor/tiled/steel_ridged, /area/talon/deckone/central_hallway) -"cx" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - dir = 1; - icon_state = "extinguisher_closed"; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"cy" = ( -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"cz" = ( -/obj/structure/stairs/east, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) "cA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1290,23 +299,13 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/steel_grid, /area/talon/deckone/bridge_hallway) -"cB" = ( -/obj/structure/stairs/west, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) "cC" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) +/turf/simulated/floor/tiled/eris/white/golden, +/area/talon/deckone/bridge) "cD" = ( /obj/machinery/vending/snack, /turf/simulated/floor/tiled/steel_ridged, @@ -1315,117 +314,45 @@ /obj/machinery/vending/fitness, /turf/simulated/floor/tiled/steel_ridged, /area/talon/deckone/central_hallway) -"cF" = ( -/obj/structure/cable/green{ - icon_state = "16-0" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/sensor{ - name = "Talon Starboard SMES Connection"; - name_tag = "TLN-SBD-SMES" - }, -/obj/machinery/camera/network/talon, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/deckone/starboard_solar) -"cG" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/smes/buildable/offmap_spawn{ - RCon_tag = "Talon Starboard SMES" - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/deckone/starboard_solar) -"cH" = ( -/obj/machinery/power/terminal{ - dir = 8; - icon_state = "term" - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/deckone/starboard_solar) "cI" = ( -/obj/structure/cable/yellow{ - icon_state = "16-0" +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/gun/energy/gun/burst, +/obj/item/weapon/cell/device/weapon{ + pixel_x = -5; + pixel_y = 2 }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/power/sensor{ - name = "Talon Starboard Solar Panels"; - name_tag = "TLN-SBD-SLR" - }, -/obj/effect/catwalk_plated/dark, -/turf/simulated/floor/plating, -/area/talon/deckone/starboard_solar) -"cJ" = ( -/obj/machinery/alarm/talon{ - dir = 8; - pixel_x = 22; - pixel_y = 0 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_port) +/obj/item/weapon/cell/device/weapon, +/obj/item/clothing/accessory/holster/waist, +/turf/simulated/floor/tiled/eris/white/danger, +/area/talon/deckone/armory) "cK" = ( -/obj/machinery/power/solar_control{ - dir = 4; - icon_state = "solar" - }, -/obj/structure/cable/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/deckone/port_solar) -"cL" = ( -/obj/structure/cable/yellow{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/deckone/port_solar) -"cM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/talon/deckone/bridge_hallway) +"cL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/deckone/port_solar) -"cN" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, /obj/structure/cable/green{ - icon_state = "1-8" + icon_state = "2-4" }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" }, -/obj/effect/catwalk_plated/dark, -/turf/simulated/floor/plating, -/area/talon/deckone/port_solar) +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/brig) "cO" = ( /obj/structure/cable/green{ d1 = 4; @@ -1438,116 +365,29 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/talon/deckone/port_solar) -"cP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) "cQ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked, +/turf/simulated/floor/tiled/eris/white/danger, +/area/talon/deckone/armory) "cR" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"cS" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"cT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4{ - dir = 1; - icon_state = "steel_decals_central4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"cU" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/talon/deckone/workroom) "cV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/structure/cable/green, +/obj/machinery/power/apc/talon{ + dir = 2; + name = "south bump"; + pixel_y = -24 }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4{ +/obj/machinery/light_switch{ dir = 4; - icon_state = "steel_decals_central4" + icon_state = "light1"; + pixel_x = -24 }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/starboard_solar) "cW" = ( /obj/structure/cable/green{ d1 = 4; @@ -1560,372 +400,51 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/talon/deckone/starboard_solar) -"cX" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/catwalk_plated/dark, -/turf/simulated/floor/plating, -/area/talon/deckone/starboard_solar) -"cY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/deckone/starboard_solar) -"cZ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/deckone/starboard_solar) "da" = ( -/obj/machinery/power/solar_control{ - dir = 8; - icon_state = "solar" - }, -/obj/structure/cable/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/deckone/starboard_solar) -"db" = ( -/obj/machinery/alarm/talon{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) -"dc" = ( /obj/structure/table/standard, /obj/fiftyspawner/phoron, -/turf/simulated/floor/tiled/techfloor/grid, +/turf/simulated/floor/tiled/eris/dark/cyancorner, /area/talon/deckone/port_solar) -"dd" = ( -/obj/machinery/alarm/talon{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/deckone/port_solar) -"de" = ( -/obj/machinery/light/small, -/obj/machinery/power/port_gen/pacman{ - anchored = 1 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/deckone/port_solar) -"df" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc/talon{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/deckone/port_solar) -"dg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"dh" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"di" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/turf/simulated/floor/tiled/monotile, -/area/talon/deckone/central_hallway) "dj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/emblem/talon_big/center, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"dk" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"dl" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc/talon{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/light_switch{ - dir = 4; - icon_state = "light1"; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/deckone/starboard_solar) -"dm" = ( -/obj/machinery/light/small, -/obj/machinery/power/port_gen/pacman{ - anchored = 1 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/deckone/starboard_solar) -"dn" = ( -/obj/machinery/alarm/talon{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/deckone/starboard_solar) -"do" = ( /obj/structure/table/standard, -/obj/fiftyspawner/phoron, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/deckone/starboard_solar) -"dp" = ( -/obj/machinery/alarm/talon{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"dq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"dr" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"ds" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"du" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"dv" = ( +/obj/item/weapon/storage/box/handcuffs, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/brig) +"dm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"dw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/borderfloor/corner2, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"dx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5; - icon_state = "intact-scrubbers" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/borderfloor/corner2{ dir = 9 }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"dy" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/starboard_eng) +"dz" = ( +/obj/structure/closet/crate/medical{ + name = "first-aid kits" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/weapon/storage/firstaid/fire, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/talon/deckone/medical) +"dB" = ( +/obj/item/modular_computer/console/preset/talon{ + dir = 8; + icon_state = "console" }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/bridge) +"dE" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; + dir = 1; icon_state = "1-2" }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/turf/simulated/floor/tiled/monotile, -/area/talon/deckone/central_hallway) -"dz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/effect/floor_decal/emblem/talon_big{ - dir = 10; - icon_state = "talon_big" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"dA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/floor_decal/emblem/talon_big, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"dB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"dC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"dD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"dE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"dF" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_port) -"dG" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/talon/deckone/secure_storage) "dH" = ( /turf/simulated/wall, /area/talon/deckone/brig) @@ -1936,163 +455,53 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/talon/deckone/brig) -"dJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass/talon/hidden{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"dK" = ( -/obj/machinery/door/firedoor/glass/talon/hidden{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) "dL" = ( /turf/simulated/wall, /area/talon/deckone/central_hallway) -"dM" = ( -/obj/machinery/door/firedoor/glass/talon/hidden{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"dN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass/talon/hidden{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) "dO" = ( /turf/simulated/wall, /area/talon/deckone/medical) "dP" = ( -/obj/effect/floor_decal/spline/plain, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/glass_medical{ - req_one_access = list(301) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/talon/deckone/medical) -"dQ" = ( /obj/structure/catwalk, /obj/machinery/light/small{ dir = 4; pixel_y = 0 }, -/turf/simulated/floor/plating, +/turf/simulated/floor/plating/eris/under, /area/talon/maintenance/deckone_port) -"dS" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/brig) -"dT" = ( -/obj/structure/bed/chair/bay/chair{ +"dQ" = ( +/obj/machinery/light{ dir = 8; - icon_state = "bay_chair_preview" - }, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/brig) -"dU" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/brig) -"dV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/talon/deckone/brig) -"dW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10; - icon_state = "borderfloorcorner2"; - pixel_x = 0 - }, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 4; - pixel_y = 26 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/brig) -"dX" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; + icon_state = "tube1"; pixel_y = 0 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 +/turf/simulated/floor/tiled/eris/dark/danger, +/area/talon/deckone/secure_storage) +"dR" = ( +/obj/machinery/vending/tool{ + req_log_access = 301 }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 5; - pixel_y = 24 +/turf/simulated/floor/tiled/eris/dark/brown_platform, +/area/talon/deckone/port_eng_store) +"dU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/brig) -"dY" = ( -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/brig) +/turf/simulated/floor/tiled/eris/dark/brown_platform, +/area/talon/deckone/port_eng_store) +"dV" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/machinery/light_switch{ + dir = 1; + on = 0; + pixel_x = -10; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/eris/dark/brown_platform, +/area/talon/deckone/port_eng_store) "dZ" = ( /obj/machinery/vending/security{ req_access = list(301); @@ -2100,160 +509,42 @@ }, /turf/simulated/floor/tiled/steel_ridged, /area/talon/deckone/brig) -"ea" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10; - icon_state = "borderfloorcorner2"; - pixel_x = 0 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +"ej" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"eb" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"ec" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"ed" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"ee" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 1 - }, -/obj/machinery/light_switch{ - dir = 4; - icon_state = "light1"; - pixel_x = -24 - }, -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/medical_stand/anesthetic, -/turf/simulated/floor/tiled/white, -/area/talon/deckone/medical) -"ef" = ( -/turf/simulated/floor/tiled/white, -/area/talon/deckone/medical) -"eg" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 4 - }, -/obj/machinery/vending/medical_talon, -/turf/simulated/floor/tiled/white, -/area/talon/deckone/medical) -"eh" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/machinery/chemical_dispenser/full, -/turf/simulated/floor/tiled/white, -/area/talon/deckone/medical) -"ei" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/weapon/gun/energy/gun/burst, -/obj/item/weapon/cell/device/weapon{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/weapon/cell/device/weapon, -/obj/item/clothing/accessory/holster/waist, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/armory) -"ek" = ( -/obj/structure/closet/crate/medical{ - name = "first-aid kits" - }, -/obj/item/weapon/storage/firstaid/toxin, -/obj/item/weapon/storage/firstaid/toxin, -/obj/item/weapon/storage/firstaid/o2, -/obj/item/weapon/storage/firstaid/o2, -/obj/item/weapon/storage/firstaid/fire, -/obj/item/weapon/storage/firstaid/fire, -/turf/simulated/floor/tiled/white, -/area/talon/deckone/medical) -"el" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 8; - pixel_x = 0 - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) -"em" = ( -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/brig) -"en" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5; icon_state = "intact-scrubbers" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/brig) +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"ek" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/machinery/alarm/talon{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/talon/deckone/medical) "eo" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2272,56 +563,39 @@ }, /turf/simulated/floor/tiled/dark, /area/talon/deckone/brig) -"ep" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/brig) "eq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "1-8" }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/brig) +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating/eris/under, +/area/talon/deckone/port_solar) "er" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/light_switch{ + dir = 2; + name = "light switch "; + pixel_x = 0; + pixel_y = 26 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" +/obj/machinery/atmospherics/pipe/cap/hidden{ + dir = 8; + icon_state = "cap" }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/brig) -"es" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central4{ - dir = 1; - icon_state = "steel_decals_central4" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/brig) +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/starboard_eng) "et" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -2345,326 +619,37 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/talon/deckone/brig) -"eu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"ev" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"ew" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/talon/deckone/central_hallway) -"ex" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) "ey" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4{ - dir = 4; - icon_state = "steel_decals_central4" - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"ez" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/glass_medical{ - req_one_access = list(301) - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/talon/deckone/medical) -"eA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/talon/deckone/medical) -"eB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/talon/deckone/medical) -"eC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 5 - }, -/obj/structure/table/standard, -/obj/machinery/reagentgrinder, -/turf/simulated/floor/tiled/white, -/area/talon/deckone/medical) -"eE" = ( -/obj/structure/bed, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/brig) -"eF" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/brig) -"eG" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, +/obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 }, -/turf/simulated/floor/plating, -/area/talon/deckone/brig) -"eH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/brig) -"eI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/brig) -"eJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/brig) -"eK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"eL" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"eM" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"eN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"eO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 8 - }, -/obj/structure/sign/warning/nosmoking_1{ - pixel_x = -26 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1; - icon_state = "pipe-t" - }, -/turf/simulated/floor/tiled/white, -/area/talon/deckone/medical) -"eP" = ( -/obj/machinery/optable, -/turf/simulated/floor/tiled/white, -/area/talon/deckone/medical) -"eQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/talon/deckone/medical) -"eR" = ( -/obj/machinery/door/airlock/maintenance/medical{ - req_one_access = list(301) - }, /obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/plating, -/area/talon/deckone/medical) +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "talon_windows" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) +"eB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/emblem/talon_big/center, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"eI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel, +/area/talon/deckone/bridge_hallway) "eS" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/blast/regular{ @@ -2672,300 +657,25 @@ }, /turf/simulated/floor/tiled/dark, /area/talon/deckone/brig) -"eT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/brig) "eV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/brig) -"eW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - icon_state = "extinguisher_closed"; - pixel_x = -30 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"eX" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"eY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/emblem/talon_big{ - dir = 1; - icon_state = "talon_big" - }, -/turf/simulated/floor/tiled/monotile, -/area/talon/deckone/central_hallway) -"eZ" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"fa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/sign/department/medbay{ - pixel_x = 29 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"fb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/closet/medical_wall{ - pixel_x = -32 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/structure/closet/crate/medical{ - name = "medicine cooler" - }, -/turf/simulated/floor/tiled/white, -/area/talon/deckone/medical) -"fc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/suit/surgicalapron, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/talon/deckone/medical) -"fd" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/item/weapon/deck/cards, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/brig) -"fe" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm/talon{ - alarm_id = "anomaly_testing"; - breach_detection = 0; - dir = 8; - frequency = 1439; - pixel_x = 22; - pixel_y = 0; - report_danger_level = 0 - }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /obj/structure/table/standard, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/brig) -"ff" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"fg" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"fh" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"fi" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"fj" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc/talon{ - cell_type = /obj/item/weapon/cell/apc; - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -25 - }, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/white, -/area/talon/deckone/medical) -"fk" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloorwhite, -/obj/item/weapon/storage/firstaid/regular, -/obj/effect/floor_decal/borderfloorwhite/corner2, -/obj/item/weapon/storage/firstaid/adv{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/machinery/alarm/talon{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/white, -/area/talon/deckone/medical) -"fl" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/structure/table/standard, /obj/item/weapon/storage/firstaid/surgery, -/turf/simulated/floor/tiled/white, -/area/talon/deckone/medical) -"fm" = ( -/obj/structure/table/standard, -/obj/item/device/sleevemate, -/turf/simulated/floor/tiled/white, -/area/talon/deckone/medical) -"fn" = ( -/obj/structure/table/standard, -/obj/item/device/defib_kit/loaded, -/obj/item/weapon/storage/belt/medical/emt, -/turf/simulated/floor/tiled/white, +/turf/simulated/floor/tiled/eris/white/bluecorner, /area/talon/deckone/medical) +"fi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/starboard_eng) +"fj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/aux, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/talonboat) "fo" = ( /obj/structure/catwalk, /obj/structure/sign/warning/moving_parts{ @@ -2977,121 +687,6 @@ }, /turf/space, /area/talon/maintenance/deckone_port) -"fq" = ( -/obj/item/modular_computer/console/preset/talon{ - dir = 4; - icon_state = "console" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/brig) -"fr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/structure/bed/chair/bay/chair{ - dir = 8; - icon_state = "bay_chair_preview" - }, -/obj/machinery/camera/network/talon{ - dir = 9; - icon_state = "camera" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/brig) -"fs" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"ft" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"fu" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"fv" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"fw" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1; - icon_state = "spline_plain" - }, -/obj/machinery/door/airlock/multi_tile/glass{ - req_access = list(301) - }, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/tiled/steel_grid, -/area/talon/deckone/medical) -"fx" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1; - icon_state = "spline_plain" - }, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/tiled/steel_grid, -/area/talon/deckone/medical) "fy" = ( /obj/structure/catwalk, /obj/structure/sign/warning/moving_parts{ @@ -3114,255 +709,28 @@ /obj/structure/catwalk, /turf/space, /area/talon/maintenance/deckone_port) -"fA" = ( -/obj/effect/map_helper/airlock/door/ext_door, -/obj/machinery/door/airlock/glass_external{ - req_one_access = list(301) - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_port) -"fB" = ( -/obj/machinery/airlock_sensor{ - pixel_y = 28; - req_one_access = list(301) - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - dir = 1; - id_tag = "talon_port"; - pixel_y = -30; - req_one_access = list(301) - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 4; - icon_state = "map_vent_aux" - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_port) -"fC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4; - icon_state = "intact-aux" - }, -/obj/effect/map_helper/airlock/door/int_door, -/obj/machinery/door/airlock/glass_external{ - req_one_access = list(301) - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_port) -"fD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4; - icon_state = "intact-aux" - }, -/obj/machinery/airlock_sensor{ - dir = 4; - pixel_x = -28; - pixel_y = 28; - req_one_access = list(301) - }, -/obj/effect/map_helper/airlock/sensor/int_sensor, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_port) -"fE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 10; - icon_state = "intact-aux" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_port) -"fF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/brig) -"fG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) "fH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/talon/deckone/central_hallway) -"fI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/talon/deckone/secure_storage) "fJ" = ( /turf/simulated/wall, /area/talon/deckone/workroom) -"fK" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10; - icon_state = "borderfloorcorner2"; - pixel_x = 0 - }, -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/workroom) "fL" = ( -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/workroom) -"fM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4; - icon_state = "borderfloorcorner2"; - pixel_y = 0 - }, -/obj/structure/fitness/weightlifter, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/workroom) -"fN" = ( -/obj/structure/extinguisher_cabinet{ - dir = 1; - icon_state = "extinguisher_closed"; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/workroom) -"fO" = ( -/obj/structure/table/standard, -/obj/fiftyspawner/steel, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/workroom) -"fP" = ( -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/workroom) -"fQ" = ( -/obj/machinery/autolathe, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/workroom) -"fR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 6; - icon_state = "intact-aux" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) -"fS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4; - icon_state = "intact-aux" - }, -/obj/machinery/airlock_sensor{ - dir = 8; - pixel_x = 28; - pixel_y = 28; - req_one_access = list(301) - }, -/obj/effect/map_helper/airlock/sensor/int_sensor, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) -"fT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4; - icon_state = "intact-aux" - }, -/obj/effect/map_helper/airlock/door/int_door, -/obj/machinery/door/airlock/glass_external{ - req_one_access = list(301) - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) -"fU" = ( -/obj/machinery/airlock_sensor{ - pixel_y = 28; - req_one_access = list(301) - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - dir = 1; - id_tag = "talon_starboard"; - pixel_y = -30; - req_one_access = list(301) - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 8; - icon_state = "map_vent_aux" - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) -"fV" = ( -/obj/effect/map_helper/airlock/door/ext_door, -/obj/machinery/door/airlock/glass_external{ - req_one_access = list(301) - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) +/obj/structure/disposalpipe/segment, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating/eris/under, +/area/talon/deckone/central_hallway) "fW" = ( /obj/machinery/airlock_sensor{ dir = 4; @@ -3374,130 +742,55 @@ /obj/structure/catwalk, /turf/space, /area/talon/maintenance/deckone_starboard) -"fX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_port) -"fY" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/brig) "fZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/full, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/talon/deckone/medical) +"ga" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ dir = 8 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10; - icon_state = "borderfloorcorner2"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/brig) -"ga" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc/talon{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/effect/floor_decal/borderfloor{ +/obj/structure/window/reinforced{ dir = 4 }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/brig) +/obj/machinery/door/blast/regular/open{ + id = "talon_windows" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/deckone/port_eng) "gb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4{ - dir = 4; - icon_state = "steel_decals_central4" +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/blast/regular/open{ + id = "talon_windows" }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) "gc" = ( /obj/machinery/door/firedoor/glass/talon, /turf/simulated/floor/tiled/steel_grid, /area/talon/deckone/workroom) -"gd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4{ - dir = 4; - icon_state = "steel_decals_central4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/brig) -"ge" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/plating, -/area/talon/deckone/workroom) -"gf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) "gg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 5; + icon_state = "intact-aux" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/brig) -"gh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/brig) +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) "gi" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloor{ +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, -/obj/item/weapon/storage/box/donut, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/brig) -"gj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, +/turf/simulated/floor/tiled/eris/steel, /area/talon/deckone/central_hallway) "gk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3522,198 +815,12 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/talon/deckone/workroom) -"gl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals_central4{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/workroom) -"gm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/workroom) -"gn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/workroom) -"go" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/bed/chair/office/light, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/workroom) -"gp" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/workroom) -"gq" = ( -/obj/structure/table/standard, -/obj/fiftyspawner/glass, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/workroom) -"gr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_port) "gs" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/brig) -"gt" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/suit_cycler/vintage/tguard, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/brig) -"gu" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloor, -/obj/structure/bedsheetbin, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/brig) -"gv" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/item/weapon/storage/box/handcuffs, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/brig) -"gw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"gx" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/workroom) -"gy" = ( -/obj/effect/floor_decal/borderfloor, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/workroom) -"gz" = ( -/obj/machinery/alarm/talon{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloor, -/obj/machinery/photocopier/faxmachine/talon, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/workroom) -"gA" = ( -/obj/effect/floor_decal/borderfloor, -/obj/item/modular_computer/console/preset/talon{ - dir = 1; - icon_state = "console" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/workroom) -"gB" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc/talon{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloor, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/workroom) -"gC" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/light, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1; - icon_state = "pipe-t" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/workroom) -"gD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux, /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) -"gE" = ( +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) +"gz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -3721,1076 +828,130 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/door/firedoor/glass/talon/hidden{ - dir = 2 +/obj/structure/sign/department/medbay{ + pixel_x = 29 }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"gF" = ( -/obj/machinery/door/firedoor/glass/talon/hidden{ - dir = 2 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"gG" = ( -/obj/machinery/door/firedoor/glass/talon/hidden{ - dir = 2 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"gH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass/talon/hidden{ - dir = 2 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, /obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, +/turf/simulated/floor/tiled/eris/steel, /area/talon/deckone/central_hallway) "gJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - id = "talon_windows" - }, -/turf/simulated/floor/plating, -/area/talon/deckone/port_eng) -"gK" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 1; - icon_state = "bulb1" - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_port) -"gL" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"gM" = ( -/obj/machinery/vending/wallmed1{ - pixel_y = 32 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) +/obj/structure/table/standard, +/obj/item/weapon/storage/toolbox/electrical, +/obj/item/stack/marker_beacon/thirty, +/obj/item/weapon/pipe_dispenser, +/turf/simulated/floor/tiled/eris/dark/brown_platform, +/area/talon/deckone/port_eng_store) "gN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/machinery/camera/network/talon, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"gO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/catwalk_plated, -/turf/simulated/floor/plating, -/area/talon/deckone/central_hallway) -"gP" = ( -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/shuttle/talonboat) "gQ" = ( /obj/machinery/vending/cola, /turf/simulated/floor/tiled/steel_ridged, /area/talon/deckone/central_hallway) "gR" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 +/obj/structure/sink{ + pixel_y = 22 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4; - icon_state = "borderfloorcorner2"; - pixel_y = 0 +/obj/structure/mirror{ + pixel_y = 32 }, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"gS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) +/obj/machinery/light/small, +/turf/simulated/floor/tiled/eris/white, +/area/talon/deckone/bridge_hallway) "gT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - id = "talon_windows" - }, -/turf/simulated/floor/plating, -/area/talon/deckone/starboard_eng) +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/talon/deckone/brig) "gU" = ( /turf/simulated/wall, /area/talon/deckone/port_eng_store) -"gV" = ( -/obj/structure/window/reinforced, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/structure/sign/deck1{ - pixel_x = -30 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) "gW" = ( -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"gX" = ( -/obj/structure/window/reinforced, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/structure/sign/deck1{ - pixel_x = 31 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) +/turf/simulated/floor/tiled/eris/dark/brown_platform, +/area/talon/deckone/starboard_eng_store) "gY" = ( /turf/simulated/wall, /area/talon/deckone/starboard_eng_store) -"gZ" = ( -/obj/machinery/vending/tool{ - req_log_access = 301 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/deckone/port_eng_store) "ha" = ( -/obj/machinery/vending/engineering{ - req_access = newlist(); - req_log_access = 301; - req_one_access = list(301) +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/deckone/port_eng_store) -"hb" = ( -/obj/machinery/vending/engivend{ - req_access = newlist(); - req_log_access = 301 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/deckone/port_eng_store) -"hc" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/talon{ - alarms_hidden = 1; - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/deckone/port_eng_store) -"hd" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/toolbox/electrical, -/obj/item/stack/marker_beacon/thirty, -/obj/item/weapon/pipe_dispenser, -/turf/simulated/floor/tiled/techfloor, -/area/talon/deckone/port_eng_store) -"he" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/talon/deckone/secure_storage) "hf" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = list(301) }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"hg" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"hh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"hi" = ( -/obj/structure/closet/crate/solar, -/turf/simulated/floor/tiled/techfloor, -/area/talon/deckone/starboard_eng_store) -"hj" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/talon{ - alarms_hidden = 1; - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/deckone/starboard_eng_store) -"hk" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4; - icon_state = "techfloororange_edges" - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/deckone/starboard_eng_store) -"hl" = ( -/obj/machinery/drone_fabricator/talon, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/deckone/starboard_eng_store) -"hm" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/deckone/starboard_eng_store) -"hn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_port) +/turf/simulated/floor/plating/eris/under, +/area/talon/deckone/starboard_eng) "ho" = ( -/obj/machinery/alarm/talon{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/deckone/port_eng_store) -"hp" = ( -/turf/simulated/floor/tiled/techfloor, -/area/talon/deckone/port_eng_store) -"hq" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techfloor, -/area/talon/deckone/port_eng_store) -"hr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/deckone/port_eng_store) -"hs" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/machinery/light_switch{ - dir = 1; - on = 0; - pixel_x = -10; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/deckone/port_eng_store) -"ht" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"hu" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"hv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"hw" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"hx" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"hy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"hz" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"hA" = ( -/obj/structure/closet/crate/engineering, -/obj/fiftyspawner/plastic, -/obj/fiftyspawner/floor, -/turf/simulated/floor/tiled/techfloor, -/area/talon/deckone/starboard_eng_store) -"hB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/deckone/starboard_eng_store) -"hC" = ( -/obj/machinery/light/small, -/obj/machinery/light_switch{ - dir = 1; - on = 0; - pixel_x = -10; - pixel_y = -24 - }, -/obj/effect/floor_decal/techfloor{ - dir = 4; - icon_state = "techfloororange_edges" - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/deckone/starboard_eng_store) -"hD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 8; - pixel_x = 0 - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) -"hE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/alarm/talon{ - dir = 8; - pixel_x = 22; - pixel_y = 0 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_port) -"hF" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1; - icon_state = "spline_plain" - }, -/obj/machinery/door/airlock/maintenance/engi{ - req_one_access = list(301) - }, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/tiled/steel_grid, -/area/talon/deckone/port_eng_store) -"hG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10; - icon_state = "borderfloorcorner2"; - pixel_x = 0 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"hH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"hI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"hJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/effect/floor_decal/borderfloor, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"hK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"hL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/borderfloor, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"hM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"hN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"hO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1; - icon_state = "spline_plain" - }, -/obj/machinery/door/airlock/maintenance/engi{ - req_one_access = list(301) - }, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/tiled/steel_grid, -/area/talon/deckone/starboard_eng_store) -"hP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/alarm/talon{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) -"hQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"hR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/power/thermoregulator, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"hS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/atmospherics/unary/freezer{ - anchored = 0 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"hT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4{ - dir = 1; - icon_state = "steel_decals_central4" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"hU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4; - icon_state = "borderfloorcorner2"; - pixel_y = 0 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/atmospherics/unary/heater{ - anchored = 0 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"hV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass/talon/hidden, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - dir = 1; - icon_state = "extinguisher_closed"; - pixel_y = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4; - icon_state = "steel_decals5" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"hW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/catwalk_plated, -/turf/simulated/floor/plating, -/area/talon/deckone/central_hallway) -"hX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"hY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/talon/deckone/central_hallway) -"hZ" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc/talon{ - cell_type = /obj/item/weapon/cell/apc; - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/machinery/alarm/talon{ - alarm_id = "anomaly_testing"; - breach_detection = 0; - dir = 8; - frequency = 1439; - pixel_x = 22; - pixel_y = 0; - report_danger_level = 0 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"ia" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"ib" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/obj/effect/catwalk_plated, -/turf/simulated/floor/plating, -/area/talon/deckone/central_hallway) -"ic" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass/talon/hidden{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8; - icon_state = "steel_decals5" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"id" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"ie" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4{ - dir = 1; - icon_state = "steel_decals_central4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"if" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4; - icon_state = "borderfloorcorner2"; - pixel_y = 0 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"ig" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"ih" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"ii" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 5; + dir = 4; icon_state = "intact-aux" }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"hs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/port_eng) +"ht" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 8; + frequency = 1380; + id_tag = "talonboat_docker"; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/shuttle/talonboat) +"hv" = ( /obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_port) +/obj/machinery/light/small{ + dir = 8; + pixel_x = 0 + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) +"hD" = ( +/obj/machinery/autolathe, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/talon/deckone/workroom) +"hL" = ( +/obj/structure/closet/crate/solar, +/turf/simulated/floor/tiled/eris/dark/brown_platform, +/area/talon/deckone/starboard_eng_store) +"hP" = ( +/obj/machinery/oxygen_pump{ + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1; + icon_state = "map" + }, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/starboard_eng) +"hQ" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/bridge) +"id" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4; + icon_state = "pipe-t" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"if" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/talon/deckone/armory) "ij" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ dir = 4; @@ -4800,147 +961,14 @@ /obj/machinery/door/firedoor/glass/talon, /turf/simulated/floor/plating, /area/talon/deckone/central_hallway) -"ik" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4; - icon_state = "intact-aux" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"il" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 10; - icon_state = "intact-aux" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) "im" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = list(301) }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) +/turf/simulated/floor/plating/eris/under, +/area/talon/deckone/port_solar) "in" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"io" = ( -/obj/machinery/door/firedoor/glass/talon/hidden, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4; - icon_state = "steel_decals5" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"ip" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"iq" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5; - icon_state = "warning" - }, -/turf/simulated/floor/tiled/monotile, -/area/talon/deckone/central_hallway) -"ir" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8; - icon_state = "warning" - }, -/turf/simulated/floor/tiled/monotile, -/area/talon/deckone/central_hallway) -"is" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4; - icon_state = "warning" - }, -/turf/simulated/floor/tiled/monotile, -/area/talon/deckone/central_hallway) -"it" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"iu" = ( -/obj/machinery/door/firedoor/glass/talon/hidden{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8; - icon_state = "steel_decals5" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"iv" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"iw" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"ix" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 6; - icon_state = "intact-aux" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -4948,563 +976,103 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"iy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4; - icon_state = "intact-aux" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"iz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 9; - icon_state = "intact-aux" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) -"iA" = ( -/turf/simulated/wall, -/area/talon/deckone/port_eng) -"iB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/spline/plain, -/obj/machinery/door/airlock/maintenance/engi{ - req_one_access = list(301) - }, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/tiled/steel_grid, -/area/talon/deckone/port_eng) -"iC" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled/monotile, -/area/talon/deckone/central_hallway) -"iD" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/monotile, -/area/talon/deckone/central_hallway) -"iE" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/tiled/monotile, -/area/talon/deckone/central_hallway) -"iF" = ( -/turf/simulated/wall, -/area/talon/deckone/starboard_eng) -"iG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/spline/plain, -/obj/machinery/door/airlock/maintenance/engi{ - req_one_access = list(301) - }, -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/talon/deckone/starboard_eng) -"iH" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/atmospherics/portables_connector/aux{ - dir = 4; - icon_state = "map_connector-aux" - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/port_eng) -"iI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 9; - icon_state = "intact-aux" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/catwalk_plated, -/turf/simulated/floor/plating, -/area/talon/deckone/port_eng) -"iJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 0; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/cap/hidden{ - dir = 4; - icon_state = "cap" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/port_eng) -"iK" = ( -/obj/machinery/oxygen_pump{ - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1; - icon_state = "map" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/port_eng) -"iL" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/port_eng) -"iM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/plating, -/area/talon/deckone/port_eng) -"iN" = ( -/obj/structure/ladder/up, -/turf/simulated/floor/tiled/steel_grid, -/area/talon/deckone/central_hallway) -"iO" = ( -/obj/effect/floor_decal/steeldecal/steel_decals8, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"iP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/plating, -/area/talon/deckone/starboard_eng) -"iQ" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/empty, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/starboard_eng) -"iR" = ( -/obj/machinery/oxygen_pump{ - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1; - icon_state = "map" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/starboard_eng) -"iS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 0; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/cap/hidden{ - dir = 8; - icon_state = "cap" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/starboard_eng) -"iT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 5; - icon_state = "intact-aux" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/catwalk_plated, -/turf/simulated/floor/plating, -/area/talon/deckone/starboard_eng) -"iU" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/atmospherics/portables_connector/aux{ - dir = 8; - icon_state = "map_connector-aux" - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/starboard_eng) -"iV" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/maintenance/engi{ - req_one_access = list(301) - }, -/turf/simulated/floor/plating, -/area/talon/deckone/port_eng) -"iW" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/talon/deckone/port_eng) -"iX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/port_eng) -"iY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/port_eng) -"iZ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8; - icon_state = "map" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/port_eng) -"ja" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"jb" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4; - icon_state = "map" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/starboard_eng) -"jc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/starboard_eng) -"jd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/starboard_eng) -"je" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 8; - icon_state = "up-scrubbers" - }, -/obj/structure/disposalpipe/up{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/talon/deckone/starboard_eng) -"jf" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/maintenance/engi{ - req_one_access = list(301) - }, -/turf/simulated/floor/plating, -/area/talon/deckone/starboard_eng) -"jg" = ( -/obj/machinery/airlock_sensor{ - dir = 4; - pixel_x = -28; - req_one_access = list(301) - }, -/obj/machinery/atmospherics/unary/vent_pump/aux{ - dir = 4; - icon_state = "map_vent_aux" - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, /obj/machinery/light/small{ - dir = 1; - icon_state = "bulb1" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"jh" = ( -/obj/structure/catwalk, -/obj/structure/loot_pile/maint/junk, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_port) -"ji" = ( -/turf/simulated/wall/rshull, -/area/talon/deckone/port_eng) -"jj" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/talon{ - cell_type = /obj/item/weapon/cell/apc; dir = 8; - name = "west bump"; - pixel_x = -28 + pixel_x = 0 }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/port_eng) -"jk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-8" +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel, +/area/talon/deckone/bridge_hallway) +"iq" = ( +/obj/machinery/light/small{ + dir = 8; + pixel_y = 0 }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/port_eng) -"jl" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/atmospherics/binary/pump{ - dir = 1 +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/talon/deckone/brig) +"ir" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" }, -/turf/simulated/floor/tiled/techmaint, +/obj/machinery/atmospherics/pipe/cap/hidden{ + dir = 1; + icon_state = "cap" + }, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, /area/talon/deckone/port_eng) -"jm" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/binary/pump, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/starboard_eng) -"jn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +"it" = ( +/obj/machinery/optable, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/talon/deckone/medical) +"iw" = ( +/obj/structure/catwalk, /obj/structure/cable/green{ d1 = 1; d2 = 4; icon_state = "1-4" }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/starboard_eng) -"jo" = ( /obj/structure/cable/green{ + d1 = 4; d2 = 8; - dir = 2; - icon_state = "0-8" + icon_state = "4-8" }, -/obj/machinery/power/apc/talon{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/starboard_eng) -"jp" = ( -/obj/structure/catwalk, -/obj/structure/loot_pile/maint/trash, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) -"jq" = ( -/obj/structure/catwalk, -/obj/structure/loot_pile/maint/technical, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) -"jr" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/port_eng) -"js" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/port_eng) -"ju" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/port_eng) -"jv" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/starboard_eng) -"jx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/starboard_eng) -"jy" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/suit_cycler/vintage/tengi, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/starboard_eng) -"jz" = ( -/obj/structure/catwalk, -/obj/structure/loot_pile/maint/boxfort, -/turf/simulated/floor/plating, +/turf/simulated/floor/plating/eris/under, /area/talon/maintenance/deckone_port) -"jA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/port_eng) -"jB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5; - icon_state = "intact-scrubbers" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/port_eng) -"jC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/port_eng) -"jD" = ( -/obj/machinery/alarm/talon{ - alarm_id = "anomaly_testing"; - breach_detection = 0; - dir = 8; - frequency = 1439; - pixel_x = 22; - pixel_y = 0; - report_danger_level = 0 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/port_eng) -"jE" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"jF" = ( -/obj/machinery/alarm/talon{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/starboard_eng) -"jG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/starboard_eng) -"jH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/starboard_eng) -"jI" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/starboard_eng) -"jJ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ +"ix" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ dir = 1 }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - dir = 8; - frequency = 1380; - id_tag = "talon_boatbay"; - pixel_x = 28 +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/blast/regular/open{ + id = "talon_windows" }, -/obj/structure/cable/green{ - icon_state = "1-8" +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) +"iA" = ( +/turf/simulated/wall, +/area/talon/deckone/port_eng) +"iB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/simulated/floor/tiled/steel, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/deckone/brig) +"iE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4; + icon_state = "intact-aux" + }, +/obj/machinery/airlock_sensor{ + dir = 4; + pixel_x = -28; + pixel_y = 28; + req_one_access = list(301) + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) +"iF" = ( +/turf/simulated/wall, +/area/talon/deckone/starboard_eng) +"iN" = ( +/obj/structure/ladder/up, +/turf/simulated/floor/tiled/steel_grid, /area/talon/deckone/central_hallway) -"jL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6; - icon_state = "intact-fuel" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/port_eng) -"jM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 1; - icon_state = "map-fuel" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/port_eng) -"jN" = ( +"iP" = ( +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/talon/deckone/bridge_hallway) +"iR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ dir = 10; icon_state = "intact-fuel" @@ -5514,84 +1082,95 @@ icon_state = "extinguisher_closed"; pixel_x = 30 }, -/turf/simulated/floor/tiled/techmaint, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, /area/talon/deckone/port_eng) -"jO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6; - icon_state = "intact-fuel" +"iT" = ( +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/structure/extinguisher_cabinet{ +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"iX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/port_eng) +"iY" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/talon/deckone/brig) +"jb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4; - icon_state = "extinguisher_closed"; - pixel_x = -30 + icon_state = "intact-scrubbers" }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/starboard_eng) -"jP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ +/obj/machinery/atmospherics/pipe/cap/hidden{ dir = 1; - icon_state = "map-fuel" + icon_state = "cap" }, -/turf/simulated/floor/tiled/techmaint, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, /area/talon/deckone/starboard_eng) -"jQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10; - icon_state = "intact-fuel" - }, -/turf/simulated/floor/tiled/techmaint, +"ji" = ( +/turf/simulated/wall/rshull, +/area/talon/deckone/port_eng) +"jj" = ( +/obj/machinery/suit_cycler/vintage/tguard, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/brig) +"jp" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/eris/white, +/area/talon/deckone/bridge_hallway) +"ju" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/plating/eris/under, /area/talon/deckone/starboard_eng) -"jS" = ( -/obj/machinery/atmospherics/binary/pump/fuel, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/camera/network/talon{ - dir = 4; - icon_state = "camera" +"jB" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc/talon{ + cell_type = /obj/item/weapon/cell/apc; + dir = 8; + name = "west bump"; + pixel_x = -28 }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/port_eng) -"jT" = ( -/obj/machinery/atmospherics/portables_connector/fuel{ - dir = 1; - icon_state = "map_connector-fuel" - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/port_eng) -"jU" = ( +/obj/structure/table/standard, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/brig) -"jV" = ( -/obj/machinery/alarm/talon{ - dir = 4; - pixel_x = -35; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/talon/deckone/medical) -"jW" = ( -/obj/machinery/atmospherics/portables_connector/fuel{ +/obj/machinery/firealarm{ dir = 1; - icon_state = "map_connector-fuel" + pixel_x = 0; + pixel_y = -25 }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/starboard_eng) -"jX" = ( -/obj/machinery/atmospherics/binary/pump/fuel, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/camera/network/talon{ - dir = 9; - icon_state = "camera" +/obj/machinery/recharger, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/talon/deckone/medical) +"jD" = ( +/obj/effect/floor_decal/emblem/talon_big{ + dir = 8; + icon_state = "talon_big" }, -/turf/simulated/floor/tiled/techmaint, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"jE" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/binary/pump, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, /area/talon/deckone/starboard_eng) +"jL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) +"jP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) "jY" = ( /turf/simulated/wall/rshull, /area/talon/deckone/starboard_eng) @@ -5664,14 +1243,6 @@ }, /turf/simulated/floor/reinforced/airless, /area/talon/deckone/starboard_eng) -"kk" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 1; - icon_state = "bulb1" - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) "kl" = ( /obj/machinery/light/small{ dir = 4; @@ -5688,337 +1259,136 @@ /obj/structure/catwalk, /turf/space, /area/talon/maintenance/deckone_starboard) -"kn" = ( -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/brig) -"ko" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/brig) -"kp" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/workroom) -"kq" = ( -/obj/machinery/fitness/punching_bag, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/workroom) "kr" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/structure/closet/crate/medical/blood, -/obj/item/weapon/reagent_containers/blood/prelabeled/OMinus, -/obj/item/weapon/reagent_containers/blood/prelabeled/OMinus, -/turf/simulated/floor/tiled/white, -/area/talon/deckone/medical) -"ks" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/workroom) +/obj/structure/barricade, +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) "kt" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central4{ - dir = 1; - icon_state = "steel_decals_central4" +/obj/structure/cable/yellow{ + icon_state = "16-0" }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/workroom) -"kv" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" }, -/obj/machinery/power/apc/talon{ - dir = 4; - name = "east bump"; - pixel_x = 24 +/obj/structure/cable/yellow{ + icon_state = "0-2" }, -/obj/structure/cable/green{ - d2 = 8; - dir = 2; - icon_state = "0-8" +/obj/machinery/power/sensor{ + name = "Talon Port Solar Panels"; + name_tag = "TLN-PRT-SLR" }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/bridge_hallway) +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating/eris/under, +/area/talon/deckone/port_solar) "kw" = ( -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"kx" = ( -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"ky" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central6{ - dir = 4; - icon_state = "steel_decals_central6" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/monotile, -/area/talon/deckone/central_hallway) +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/talon/deckone/workroom) "kz" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central6, -/turf/simulated/floor/tiled/monotile, -/area/talon/deckone/central_hallway) -"kA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 8; + icon_state = "1-8" }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/talon/deckone/central_hallway) +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/starboard_solar) "kB" = ( -/turf/simulated/floor/tiled/monotile, -/area/talon/deckone/central_hallway) -"kC" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central5, -/turf/simulated/floor/tiled/monotile, -/area/talon/deckone/central_hallway) -"kD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/vending/engivend{ + req_access = newlist(); + req_log_access = 301 }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/talon/deckone/central_hallway) +/turf/simulated/floor/tiled/eris/dark/brown_platform, +/area/talon/deckone/port_eng_store) "kE" = ( -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"kF" = ( -/obj/machinery/alarm/talon{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/floor_decal/borderfloor, -/turf/simulated/floor/tiled/monotile, +/obj/structure/stairs/west, +/turf/simulated/floor/tiled/eris/steel, /area/talon/deckone/central_hallway) "kG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/monotile, -/area/talon/deckone/central_hallway) -"kH" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/light, -/turf/simulated/floor/tiled/monotile, -/area/talon/deckone/central_hallway) -"kI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/bridge_hallway) +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) "kJ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/bridge) "kK" = ( -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/armory) -"kL" = ( -/obj/machinery/light{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/armory) -"kM" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/secure_storage) -"kN" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/armory) -"kO" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"kP" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8; - icon_state = "borderfloor"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"kQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable/green{ icon_state = "1-8" }, -/obj/effect/floor_decal/borderfloor{ +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"kL" = ( +/obj/machinery/shower, +/obj/item/weapon/soap/deluxe, +/obj/structure/curtain, +/turf/simulated/floor/tiled/eris/white, +/area/talon/deckone/bridge_hallway) +"kM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, +/turf/simulated/floor/tiled/eris/steel, /area/talon/deckone/central_hallway) -"kR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +"kN" = ( +/turf/simulated/floor/tiled/eris/dark/danger, +/area/talon/deckone/secure_storage) +"kP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5; - icon_state = "intact-scrubbers" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8; - icon_state = "borderfloor"; - pixel_x = 0 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"kS" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/weapon/gun/energy/netgun, -/obj/item/weapon/cell/device/weapon{ - pixel_x = -5; - pixel_y = 2 +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/brig) +"kQ" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = list(301) }, -/obj/item/weapon/cell/device/weapon{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/weapon/cell/device/weapon, -/obj/item/clothing/accessory/holster/waist, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/armory) -"kT" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/armory) -"kU" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/weapon/gun/energy/gun, -/obj/item/clothing/accessory/holster/machete, -/obj/item/weapon/material/knife/machete, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/armory) +/turf/simulated/floor/plating/eris/under, +/area/talon/deckone/starboard_eng_store) "kV" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, -/obj/machinery/chem_master, -/turf/simulated/floor/tiled/white, -/area/talon/deckone/medical) +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/talon/deckone/armory) "kX" = ( /obj/machinery/door/airlock/maintenance/sec{ req_one_access = list(301) @@ -6026,267 +1396,199 @@ /obj/machinery/door/firedoor/glass/talon, /turf/simulated/floor/plating, /area/talon/deckone/brig) -"kY" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/maintenance/engi{ - req_one_access = list(301) - }, -/turf/simulated/floor/plating, -/area/talon/deckone/starboard_eng_store) -"kZ" = ( -/obj/structure/catwalk, -/obj/machinery/suit_storage_unit, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_port) -"la" = ( -/obj/structure/catwalk, -/obj/machinery/suit_storage_unit, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) "lb" = ( /turf/simulated/wall/shull, /area/shuttle/talonboat) -"lc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/shuttle/talonboat) -"ld" = ( -/obj/machinery/computer/shuttle_control/explore/talonboat, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) "le" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"lf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/shuttle/talonboat) -"lg" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 1; - icon_state = "bay_chair_preview" - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/talonboat) -"lh" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - dir = 8; - frequency = 1380; - id_tag = "talonboat_docker"; - pixel_x = 28 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"li" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"lj" = ( -/obj/structure/fuel_port{ - dir = 4; - pixel_x = -30 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector/aux{ - dir = 4; - icon_state = "map_connector-aux" - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"lk" = ( -/obj/machinery/airlock_sensor{ - dir = 1; - pixel_x = 28; - pixel_y = -28; - req_one_access = list(301) - }, -/obj/effect/map_helper/airlock/sensor/int_sensor, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 10; - icon_state = "intact-aux" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"ll" = ( -/obj/effect/floor_decal/steeldecal/steel_decals3{ +/obj/machinery/light{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 5 +/turf/simulated/floor/tiled/eris/white/danger, +/area/talon/deckone/armory) +"lk" = ( +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 1; + icon_state = "map_connector-fuel" }, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"ln" = ( -/obj/effect/map_helper/airlock/door/int_door, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/door/airlock/glass_external{ - req_one_access = list(301) - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/talonboat) +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/starboard_eng) "lo" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"lp" = ( -/obj/effect/shuttle_landmark/shuttle_initializer/talonboat, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"lr" = ( -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - dir = 8; - id_tag = "talon_boat"; - pixel_x = 28 - }, -/obj/machinery/atmospherics/unary/vent_pump/aux{ - dir = 8; - icon_state = "map_vent_aux" - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"ls" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-s" }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/deckone/bridge) -"lt" = ( -/obj/effect/map_helper/airlock/door/simple, -/obj/structure/cable/green{ - dir = 1; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_external{ - req_one_access = list(301) - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/talonboat) -"lu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4; - icon_state = "warning" - }, -/obj/structure/cable/green{ - dir = 1; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, +/turf/simulated/floor/tiled/eris/steel, /area/talon/deckone/central_hallway) -"lw" = ( -/obj/machinery/power/apc/talon{ - dir = 4; - name = "east bump"; - pixel_x = 24 +"lt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 }, -/obj/structure/cable/green, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"lz" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8; - icon_state = "borderfloor"; - pixel_x = 0 - }, -/obj/effect/floor_decal/borderfloor/corner2{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/obj/machinery/computer/shuttle_control/explore/talonboat{ - dir = 4; - icon_state = "computer" +/obj/structure/cable/green{ + icon_state = "2-8" }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"lA" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8; - icon_state = "borderfloor"; - pixel_x = 0 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10; - icon_state = "borderfloorcorner2"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"lB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"lC" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/white/golden, +/area/talon/deckone/bridge) "lD" = ( /obj/effect/floor_decal/industrial/warning/dust/corner{ dir = 8 }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_port_aft_wing) -"lW" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ +"lM" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8; + icon_state = "map" + }, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/port_eng) +"lS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/bridge) +"lU" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/bridge) +"mb" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc/talon{ + cell_type = /obj/item/weapon/cell/apc; + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/machinery/alarm/talon{ + alarm_id = "anomaly_testing"; + breach_detection = 0; + dir = 8; + frequency = 1439; + pixel_x = 22; + pixel_y = 0; + report_danger_level = 0 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"mf" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id = "talon_windows" + }, +/obj/structure/cable/green{ + dir = 1; + icon_state = "4-8" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) +"mj" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/talon/deckone/armory) +"ml" = ( +/obj/machinery/alarm/talon{ + dir = 1; + pixel_y = -25 }, -/turf/simulated/floor/tiled/steel, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/machinery/photocopier/faxmachine/talon, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/talon/deckone/workroom) +"mB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/eris/steel, /area/talon/deckone/central_hallway) -"mv" = ( -/obj/structure/catwalk, +"mC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/turf/simulated/floor/plating, +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = list(301) + }, +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/talon/deckone/starboard_eng) +"mF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4; + icon_state = "intact-aux" + }, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/door/airlock/glass_external{ + req_one_access = list(301) + }, +/turf/simulated/floor/plating/eris/under, /area/talon/maintenance/deckone_port) +"mL" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/talon{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) "mM" = ( /obj/structure/catwalk, /obj/structure/cable/green{ @@ -6296,27 +1598,65 @@ }, /turf/space, /area/talon/maintenance/deckone_port_fore_wing) -"np" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/talon{ - dir = 9; - icon_state = "camera" +"mN" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" }, -/turf/simulated/floor/tiled/techfloor, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) +"mO" = ( +/obj/machinery/alarm/talon{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) +"mS" = ( +/obj/structure/table/standard, +/obj/fiftyspawner/steel, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/talon/deckone/workroom) +"mT" = ( +/obj/structure/fuel_port{ + dir = 4; + pixel_x = -30 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector/aux{ + dir = 4; + icon_state = "map_connector-aux" + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, /area/shuttle/talonboat) -"ns" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"na" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" +/obj/machinery/door/blast/regular/open{ + id = "talon_windows" }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) +"nc" = ( +/turf/simulated/floor/tiled/eris/dark/danger, +/area/talon/deckone/central_hallway) +"nu" = ( /obj/effect/floor_decal/emblem/talon_big{ - dir = 6; + dir = 5; icon_state = "talon_big" }, -/turf/simulated/floor/tiled/steel, +/turf/simulated/floor/tiled/eris/steel, /area/talon/deckone/central_hallway) "nv" = ( /obj/machinery/door/blast/regular/open{ @@ -6338,15 +1678,15 @@ }, /turf/space, /area/talon/maintenance/deckone_port_fore_wing) -"nL" = ( -/obj/structure/catwalk, +"nN" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_port) +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) "nR" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ @@ -6355,6 +1695,43 @@ }, /turf/space, /area/talon/maintenance/deckone_starboard_fore_wing) +"nT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/emblem/talon, +/turf/simulated/floor/tiled/eris/white/golden, +/area/talon/deckone/bridge) +"nW" = ( +/obj/machinery/atmospherics/binary/pump/fuel, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/camera/network/talon{ + dir = 9; + icon_state = "camera" + }, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/starboard_eng) +"ob" = ( +/obj/machinery/camera/network/talon{ + dir = 9; + icon_state = "camera" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"oc" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/gun/energy/netgun, +/obj/item/weapon/cell/device/weapon{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/weapon/cell/device/weapon, +/obj/item/clothing/accessory/holster/waist, +/turf/simulated/floor/tiled/eris/white/danger, +/area/talon/deckone/armory) +"oe" = ( +/obj/structure/stairs/east, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) "oh" = ( /obj/effect/shuttle_landmark{ landmark_tag = "talon_aft"; @@ -6362,13 +1739,54 @@ }, /turf/space, /area/space) -"oi" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 +"on" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/white/golden, +/area/talon/deckone/bridge) +"oz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/armory) +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"oG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/talon/deckone/bridge_hallway) +"oS" = ( +/obj/structure/bed/chair/bay/comfy/yellow{ + dir = 1; + icon_state = "bay_comfychair_preview" + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/bridge) +"oU" = ( +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + req_one_access = list(301) + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) +"oV" = ( +/obj/effect/floor_decal/emblem/talon_big{ + dir = 4; + icon_state = "talon_big" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) "pc" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 6; @@ -6376,6 +1794,44 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_fore_wing) +"pf" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/talonboat) +"pg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"pn" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"po" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/talon/deckone/secure_storage) +"pp" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/bed/chair/bay/chair{ + dir = 8; + icon_state = "bay_chair_preview" + }, +/obj/machinery/camera/network/talon{ + dir = 9; + icon_state = "camera" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/brig) "pr" = ( /obj/structure/cable/green{ d1 = 4; @@ -6387,6 +1843,87 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_port_fore_wing) +"ps" = ( +/obj/machinery/atmospherics/binary/pump/fuel, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/camera/network/talon{ + dir = 4; + icon_state = "camera" + }, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/port_eng) +"pw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/brig) +"pz" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/talon/deckone/workroom) +"pC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/bridge) +"pJ" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/talon{ + dir = 2; + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/bridge) +"pR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/power/thermoregulator, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"pX" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"qe" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/talon{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/talon/deckone/secure_storage) "qo" = ( /obj/machinery/power/pointdefense{ id_tag = "talon_pd" @@ -6402,16 +1939,64 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_port_aft_wing) +"qp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6; + icon_state = "intact-fuel" + }, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/port_eng) +"qz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/obj/structure/sign/warning/nosmoking_1{ + pixel_x = -26 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1; + icon_state = "pipe-t" + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/talon/deckone/medical) "qA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/aux, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/talonboat) +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) +"qB" = ( +/obj/machinery/alarm/talon{ + dir = 4; + pixel_x = -35; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/talon/deckone/medical) "qF" = ( /obj/effect/floor_decal/industrial/warning/dust/corner{ dir = 8 }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_fore_wing) +"qL" = ( +/obj/machinery/light/small, +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/port_solar) "rm" = ( /obj/effect/floor_decal/industrial/warning/dust/corner{ dir = 1; @@ -6419,6 +2004,23 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_aft_wing) +"rn" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/plating/eris/under, +/area/talon/deckone/workroom) +"rF" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/talon/deckone/workroom) "rH" = ( /obj/effect/floor_decal/industrial/warning/dust/corner, /turf/simulated/floor/hull/airless, @@ -6435,6 +2037,23 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_aft_wing) +"rQ" = ( +/turf/simulated/floor/tiled/eris/dark/brown_platform, +/area/talon/deckone/port_eng_store) +"rU" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/talon/deckone/workroom) +"sa" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) "sc" = ( /obj/structure/cable/green{ d1 = 1; @@ -6446,102 +2065,229 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_port_aft_wing) -"sk" = ( -/obj/structure/catwalk, -/obj/structure/sign/warning/airlock{ - pixel_x = 32 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) -"su" = ( -/obj/structure/catwalk, -/obj/structure/sign/warning/airlock{ - pixel_x = -31 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_port) -"sB" = ( -/obj/structure/catwalk, +"sd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"so" = ( +/obj/structure/bed, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/talon/deckone/brig) +"sy" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id = "talon_windows" }, /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/turf/simulated/floor/plating, +/turf/simulated/floor/plating/eris/under, /area/talon/maintenance/deckone_port) -"sD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +"sz" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"sI" = ( +/obj/structure/catwalk, +/obj/structure/loot_pile/maint/trash, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) +"sJ" = ( +/obj/structure/catwalk, +/obj/structure/sign/warning/airlock{ + pixel_x = 32 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) +"sK" = ( +/obj/structure/table/rack/steel, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/talon/deckone/secure_storage) +"sL" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) +"sS" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/gun/energy/gun, +/obj/item/clothing/accessory/holster/machete, +/obj/item/weapon/material/knife/machete, +/turf/simulated/floor/tiled/eris/white/danger, +/area/talon/deckone/armory) +"sY" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/brown_platform, +/area/talon/deckone/starboard_eng_store) +"ta" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 }, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/monotile, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, /area/talon/deckone/central_hallway) -"sE" = ( -/obj/effect/map_helper/airlock/door/ext_door, -/obj/machinery/door/airlock/glass_external{ - req_one_access = list(301) - }, -/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ - pixel_x = 28; - pixel_y = -4 - }, -/obj/effect/map_helper/airlock/sensor/ext_sensor, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/talonboat) -"sM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +"te" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/bridge) +/obj/machinery/door/firedoor/glass{ + dir = 2 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/talon/deckone/central_hallway) "tg" = ( /obj/effect/floor_decal/industrial/warning/dust/corner, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_port_aft_wing) +"tk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/deckone/secure_storage) +"tl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"tm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/talon/deckone/brig) +"tn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm/talon{ + alarm_id = "anomaly_testing"; + breach_detection = 0; + dir = 8; + frequency = 1439; + pixel_x = 22; + pixel_y = 0; + report_danger_level = 0 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/brig) +"tr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating/eris/under, +/area/talon/deckone/central_hallway) +"tv" = ( +/obj/machinery/camera/network/talon{ + dir = 9; + icon_state = "camera" + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/shuttle/talonboat) +"tw" = ( +/obj/item/modular_computer/console/preset/talon{ + dir = 4; + icon_state = "console" + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/bridge) +"tC" = ( +/obj/machinery/vending/wallmed1{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"tI" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/talon/deckone/secure_storage) "tJ" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 4 }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_port_fore_wing) -"tL" = ( -/obj/effect/floor_decal/emblem/talon_big{ - dir = 9; - icon_state = "talon_big" - }, -/turf/simulated/floor/tiled/monotile, -/area/talon/deckone/central_hallway) +"tQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/talon/deckone/brig) "tZ" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 8; @@ -6549,6 +2295,26 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_port_fore_wing) +"ug" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + icon_state = "extinguisher_closed"; + pixel_x = -30 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/bridge) +"uj" = ( +/obj/machinery/power/solar_control{ + dir = 8; + icon_state = "solar" + }, +/obj/structure/cable/yellow, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/starboard_solar) "uo" = ( /obj/machinery/power/pointdefense{ id_tag = "talon_pd" @@ -6564,19 +2330,105 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_aft_wing) -"vc" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 +"ur" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/plating/eris/under, +/area/talon/deckone/bridge_hallway) +"uy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/white/golden, +/area/talon/deckone/bridge) +"uB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel, +/area/talon/deckone/bridge_hallway) +"uL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/brig) +"uM" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/talon/deckone/armory) +"uN" = ( +/obj/structure/extinguisher_cabinet{ + dir = 1; + icon_state = "extinguisher_closed"; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/talon/deckone/workroom) +"uW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-s" }, -/turf/simulated/floor/tiled/steel, +/turf/simulated/floor/tiled/eris/steel, /area/talon/deckone/central_hallway) +"uZ" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + req_access = list(301) + }, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/tiled/steel_grid, +/area/talon/deckone/medical) +"vb" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 8; + icon_state = "bay_chair_preview" + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/talon/deckone/brig) +"vc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/table/standard, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/suit/surgicalapron, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/talon/deckone/medical) "vf" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 5; @@ -6584,39 +2436,30 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_fore_wing) -"vl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8; - icon_state = "borderfloor"; - pixel_x = 0 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4; - icon_state = "pipe-t" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"vs" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"vv" = ( -/obj/structure/catwalk, +"vi" = ( +/obj/effect/map_helper/airlock/door/simple, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; + dir = 1; icon_state = "4-8" }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) +/obj/machinery/door/airlock/glass_external{ + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/talonboat) +"vr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/emblem/talon_big, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"vw" = ( +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/brig) "vz" = ( /obj/effect/floor_decal/industrial/warning/dust, /turf/simulated/floor/hull/airless, @@ -6625,80 +2468,267 @@ /obj/effect/floor_decal/industrial/warning/dust, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_port_fore_wing) +"vK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"vL" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/port_solar) +"vV" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/port_eng) "we" = ( /obj/effect/floor_decal/emblem/talon, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_aft_wing) +"wh" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/talon/deckone/workroom) "wk" = ( /obj/structure/sign/warning/docking_area, /turf/simulated/wall, /area/talon/deckone/central_hallway) -"xk" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ +"wm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/door/blast/regular/open{ - id = "talon_windows" +/turf/simulated/floor/tiled/eris/white/golden, +/area/talon/deckone/bridge) +"wz" = ( +/obj/structure/table/rack/steel, +/obj/machinery/camera/network/talon, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/talon/deckone/secure_storage) +"wD" = ( +/obj/machinery/power/terminal{ + dir = 8; + icon_state = "term" + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/starboard_solar) +"wN" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/bridge) +"wP" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"wW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating/eris/under, +/area/talon/deckone/central_hallway) +"xc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, /obj/structure/cable/green{ - dir = 1; - icon_state = "4-8" + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) -"xo" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/starboard_eng) +"xd" = ( /obj/machinery/alarm/talon{ dir = 1; - icon_state = "alarm0"; - pixel_y = -22 + pixel_y = -25 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/deckone/starboard_eng_store) -"xI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/emblem/talon, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/bridge) -"xV" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/weapon/gun/energy/netgun, -/obj/item/weapon/cell/device/weapon{ +/obj/structure/table/rack/steel, +/obj/item/weapon/grenade/spawnergrenade/manhacks/mercenary{ pixel_x = -5; - pixel_y = 2 + pixel_y = 4 }, -/obj/item/weapon/cell/device/weapon, -/obj/item/clothing/accessory/holster/waist, -/turf/simulated/floor/tiled/dark, +/obj/item/device/spaceflare, +/turf/simulated/floor/tiled/eris/white/danger, /area/talon/deckone/armory) +"xk" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) +"xm" = ( +/obj/machinery/power/solar_control{ + dir = 4; + icon_state = "solar" + }, +/obj/structure/cable/yellow, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/port_solar) +"xu" = ( +/obj/effect/shuttle_landmark/shuttle_initializer/talonboat, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/shuttle/talonboat) +"xv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5; + icon_state = "intact-scrubbers" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"xw" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/talon/deckone/secure_storage) +"xE" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 1; + icon_state = "bulb1" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) +"xF" = ( +/obj/structure/closet/crate/engineering, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/floor, +/turf/simulated/floor/tiled/eris/dark/brown_platform, +/area/talon/deckone/starboard_eng_store) +"xH" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/talon/deckone/medical) +"xK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) +"xQ" = ( +/obj/machinery/airlock_sensor{ + pixel_y = 28; + req_one_access = list(301) + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 1; + id_tag = "talon_starboard"; + pixel_y = -30; + req_one_access = list(301) + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 8; + icon_state = "map_vent_aux" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) +"xU" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/empty, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/starboard_eng) +"xV" = ( +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/talon/deckone/secure_storage) "yd" = ( /obj/effect/floor_decal/industrial/warning/dust/corner{ dir = 8 }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_aft_wing) +"yf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4; + icon_state = "map" + }, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/starboard_eng) "yg" = ( /turf/space, /area/talon/deckone/starboard_eng) -"ym" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ +"yh" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"yl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "talon_windows" - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_port) +/obj/item/weapon/deck/cards, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/brig) "yn" = ( /obj/structure/catwalk, /obj/structure/cable/green{ @@ -6708,6 +2738,29 @@ }, /turf/space, /area/talon/maintenance/deckone_port_aft_wing) +"yo" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"ys" = ( +/obj/machinery/airlock_sensor{ + dir = 1; + pixel_x = 28; + pixel_y = -28; + req_one_access = list(301) + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 10; + icon_state = "intact-aux" + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/shuttle/talonboat) "yy" = ( /obj/structure/catwalk, /obj/structure/cable/green{ @@ -6723,20 +2776,47 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_fore_wing) -"yN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ +"yB" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 8; + icon_state = "up-scrubbers" + }, +/obj/structure/disposalpipe/up{ dir = 8 }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "talon_brigblast1"; - name = "blast door control"; - pixel_x = -28 +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/starboard_eng) +"yC" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/brig) +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) +"yD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"yN" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable/offmap_spawn{ + RCon_tag = "Talon Starboard SMES" + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/starboard_solar) "yO" = ( /obj/effect/floor_decal/industrial/warning/dust/corner{ dir = 1; @@ -6744,14 +2824,162 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_fore_wing) -"zC" = ( -/obj/structure/catwalk, +"yQ" = ( +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + req_one_access = list(301) + }, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + pixel_x = 28; + pixel_y = -4 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/talonboat) +"zq" = ( +/obj/machinery/alarm/talon{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/talon/deckone/central_hallway) +"zs" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"zt" = ( +/obj/machinery/alarm/talon{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/table/rack/steel, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/talon/deckone/secure_storage) +"zx" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/talon{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/talon/deckone/armory) +"zy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/turf/simulated/floor/tiled/eris/white/golden, +/area/talon/deckone/bridge) +"zE" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"zF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/talon/deckone/secure_storage) +"zH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/brig) +"Ae" = ( +/obj/structure/window/reinforced, +/obj/structure/sign/deck1{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"An" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, /obj/structure/cable/green{ d1 = 1; d2 = 4; icon_state = "1-4" }, -/turf/simulated/floor/plating, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating/eris/under, +/area/talon/deckone/starboard_solar) +"Ar" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4; + icon_state = "intact-aux" + }, +/obj/machinery/airlock_sensor{ + dir = 8; + pixel_x = 28; + pixel_y = 28; + req_one_access = list(301) + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) +"At" = ( +/obj/machinery/alarm/talon{ + dir = 8; + pixel_x = 22; + pixel_y = 0 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) +"Ay" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/talon/deckone/workroom) +"Az" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/brig) +"AB" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = list(301) + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/deckone/starboard_solar) +"AI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/plating/eris/under, /area/talon/maintenance/deckone_starboard) "AM" = ( /obj/structure/sign/warning/hot_exhaust{ @@ -6774,6 +3002,18 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_port_fore_wing) +"AQ" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/talon/deckone/workroom) +"AV" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) "AY" = ( /obj/effect/floor_decal/industrial/warning/dust/corner{ dir = 4 @@ -6787,6 +3027,23 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_port_fore_wing) +"Bj" = ( +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"Bm" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/suit_cycler/vintage/tengi, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/starboard_eng) +"Bn" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/glass_medical{ + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/talon/deckone/medical) "Bq" = ( /obj/structure/cable/green{ dir = 1; @@ -6798,53 +3055,104 @@ /obj/effect/floor_decal/industrial/warning/dust, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_aft_wing) -"Bz" = ( -/obj/machinery/camera/network/talon{ - dir = 9; - icon_state = "camera" +"Bu" = ( +/obj/structure/extinguisher_cabinet{ + dir = 1; + icon_state = "extinguisher_closed"; + pixel_y = 32 }, -/turf/simulated/floor/tiled/steel, +/turf/simulated/floor/tiled/eris/steel, /area/talon/deckone/central_hallway) -"Cm" = ( -/obj/effect/floor_decal/borderfloorblack{ +"BA" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = list(301) + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/deckone/port_eng) +"BD" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) +"BU" = ( +/obj/structure/cable/green{ + icon_state = "16-0" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/sensor{ + name = "Talon Port SMES Connection"; + name_tag = "TLN-PRT-SMES" + }, +/obj/machinery/camera/network/talon, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/port_solar) +"BZ" = ( +/obj/machinery/computer/shuttle_control/explore/talonboat, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/shuttle/talonboat) +"Ca" = ( +/obj/machinery/power/terminal{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/port_solar) +"CA" = ( +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/talon/deckone/central_hallway) +"CC" = ( +/obj/item/modular_computer/console/preset/talon{ + dir = 1; + icon_state = "console" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/talon/deckone/workroom) +"CH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/bridge) -"CN" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/structure/sign/deck1{ - pixel_y = 27 +/obj/machinery/atmospherics/unary/heater{ + anchored = 0 }, -/obj/structure/sign/directions/bridge{ - dir = 1; - icon_state = "direction_bridge"; - pixel_y = 41 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4; - icon_state = "borderfloorcorner2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel, +/turf/simulated/floor/tiled/eris/steel, /area/talon/deckone/central_hallway) +"CN" = ( +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 1; + icon_state = "map_connector-fuel" + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/port_eng) "CP" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 4; @@ -6852,6 +3160,18 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_fore_wing) +"CT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) "CU" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 9; @@ -6859,6 +3179,23 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_fore_wing) +"CW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5; + icon_state = "intact-scrubbers" + }, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/port_eng) +"CY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) "Dh" = ( /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_port_aft_wing) @@ -6869,6 +3206,11 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_fore_wing) +"Dm" = ( +/obj/structure/catwalk, +/obj/structure/loot_pile/maint/junk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) "Do" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 5; @@ -6876,6 +3218,11 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_port_fore_wing) +"Dq" = ( +/obj/structure/table/standard, +/obj/item/device/sleevemate, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/talon/deckone/medical) "Dr" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 6; @@ -6887,35 +3234,106 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_port_fore_wing) -"DF" = ( +"Dw" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) +"Dz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) +"DD" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id = "talon_windows" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/deckone/starboard_eng) +"DO" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/structure/sign/deck1{ - pixel_y = 27 +/obj/structure/cable/green{ + icon_state = "2-8" }, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, +/turf/simulated/floor/tiled/eris/steel, /area/talon/deckone/central_hallway) -"DQ" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass/talon, +"DU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"DY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = list(301) + }, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/tiled/steel_grid, +/area/talon/deckone/port_eng) +"Ea" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/command{ + name = "Talon Secure Airlock"; + req_one_access = list(301) + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/talon/deckone/bridge_hallway) "Ec" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 9; @@ -6924,19 +3342,70 @@ /obj/effect/floor_decal/industrial/warning/dust/corner, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_fore_wing) +"Ee" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9; + icon_state = "intact-aux" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) "Eo" = ( /obj/effect/floor_decal/industrial/warning/dust/corner, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_aft_wing) +"Eq" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/deckone/armory) +"Ex" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 10; + icon_state = "intact-aux" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) "ED" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 8 }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_fore_wing) +"EE" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) "EF" = ( /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_fore_wing) +"EL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/starboard_eng) "EM" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 10; @@ -6947,58 +3416,217 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_fore_wing) -"Fc" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +"ER" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/department/bridge{ + pixel_y = 31 }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) -"FJ" = ( -/obj/effect/floor_decal/borderfloor{ +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/talon/deckone/bridge_hallway) +"ES" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ dir = 4 }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"FZ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 6 +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/deckone/brig) +"Fg" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id = "talon_windows" }, -/obj/effect/floor_decal/steeldecal/steel_decals3, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"Gu" = ( -/obj/structure/catwalk, /obj/structure/cable/green{ - icon_state = "2-8" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor/plating, +/turf/simulated/floor/plating/eris/under, /area/talon/maintenance/deckone_starboard) -"Gy" = ( -/obj/structure/catwalk, +"Fl" = ( +/turf/simulated/floor/tiled/eris/white/danger, +/area/talon/deckone/armory) +"Fs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /obj/structure/cable/green{ - icon_state = "1-8" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_port) -"GF" = ( -/obj/machinery/firealarm{ +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/glass_medical{ + req_one_access = list(301) + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/talon/deckone/medical) +"FA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/talon/deckone/medical) +"FQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/port_solar) +"FR" = ( +/obj/machinery/computer/ship/helm{ + req_one_access = list(301) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/bridge) +"Gb" = ( +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/talon/deckone/medical) +"Gd" = ( +/obj/structure/cable/green{ dir = 1; - pixel_y = -24 + icon_state = "1-2" }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/secure_storage) +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/talon/deckone/armory) +"Gh" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/deck1{ + pixel_y = 27 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"Gi" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/talon{ + alarms_hidden = 1; + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/eris/dark/brown_platform, +/area/talon/deckone/port_eng_store) +"Gq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/brig) +"Gr" = ( +/obj/machinery/fitness/punching_bag, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/talon/deckone/workroom) +"Gt" = ( +/obj/structure/sign/periodic{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/talon/deckone/workroom) +"Gv" = ( +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 1; + icon_state = "map_connector-fuel" + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/port_eng) +"Gw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/talon/deckone/workroom) "GG" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 4 }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_port_aft_wing) +"GH" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) +"GI" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/portables_connector/aux{ + dir = 8; + icon_state = "map_connector-aux" + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/starboard_eng) +"GJ" = ( +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/tiled/steel_grid, +/area/talon/deckone/medical) +"GK" = ( +/obj/structure/table/standard, +/obj/item/device/defib_kit/loaded, +/obj/item/weapon/storage/belt/medical/emt, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/talon/deckone/medical) "GL" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 1; @@ -7031,17 +3659,113 @@ /obj/structure/catwalk, /turf/space, /area/talon/maintenance/deckone_starboard_fore_wing) -"Hp" = ( +"Hh" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/talon/deckone/secure_storage) +"Hl" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/talon/deckone/brig) +"Hn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4; icon_state = "intact-scrubbers" }, -/obj/machinery/atmospherics/pipe/cap/hidden{ - dir = 1; - icon_state = "cap" +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/port_eng) +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"Hp" = ( +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/starboard_eng_store) +"Hy" = ( +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/talon/deckone/brig) +"HQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/talon/deckone/bridge_hallway) +"HW" = ( +/obj/machinery/computer/ship/sensors, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/bridge) +"Id" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 6; + icon_state = "intact-aux" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"Ie" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6; + icon_state = "intact-fuel" + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + icon_state = "extinguisher_closed"; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/starboard_eng) +"Ih" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating/eris/under, +/area/talon/deckone/bridge_hallway) "Ij" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 9; @@ -7049,25 +3773,122 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_port_fore_wing) -"Im" = ( -/obj/machinery/atmospherics/portables_connector/fuel{ - dir = 1; - icon_state = "map_connector-fuel" +"Ik" = ( +/obj/structure/cable/green{ + icon_state = "0-4" }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/machinery/firealarm{ +/obj/machinery/power/apc/talon{ + cell_type = /obj/item/weapon/cell/apc; dir = 8; - pixel_x = -24 + name = "west bump"; + pixel_x = -28 }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/starboard_eng) +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/port_eng) +"Iy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"IA" = ( +/obj/structure/catwalk, +/obj/machinery/suit_storage_unit, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) +"ID" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/talon/deckone/brig) "IF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/emblem/talon_big{ - dir = 5; + dir = 1; icon_state = "talon_big" }, -/turf/simulated/floor/tiled/monotile, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"II" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/bed/chair/office/light, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/talon/deckone/workroom) +"IM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/plating/eris/under, +/area/talon/deckone/bridge) +"IO" = ( +/obj/machinery/alarm/talon{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/starboard_eng) +"IT" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/port_eng) +"IW" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"IZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "talon_brigblast2"; + name = "blast door control"; + pixel_x = -28 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/brig) +"Jn" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"Jr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"Jw" = ( +/obj/structure/window/reinforced, +/obj/structure/sign/deck1{ + pixel_x = 31 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/eris/steel, /area/talon/deckone/central_hallway) "JB" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ @@ -7080,17 +3901,149 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_fore_wing) +"JC" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/talon{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) +"JE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating/eris/under, +/area/talon/deckone/central_hallway) +"JF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"JG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "talon_brigblast1"; + name = "blast door control"; + pixel_x = -28 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/brig) "JI" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 5 }, /turf/simulated/floor/reinforced/airless, /area/talon/deckone/port_eng) -"JZ" = ( -/obj/structure/table/rack/steel, +"JM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/table/standard, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/talon/deckone/medical) +"JP" = ( +/obj/machinery/power/apc/talon{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + dir = 2; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/talon/deckone/bridge_hallway) +"JS" = ( +/obj/structure/cable/green{ + icon_state = "16-0" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/sensor{ + name = "Talon Starboard SMES Connection"; + name_tag = "TLN-SBD-SMES" + }, /obj/machinery/camera/network/talon, -/turf/simulated/floor/tiled/dark, -/area/talon/deckone/secure_storage) +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/starboard_solar) +"JX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass{ + dir = 2 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/talon/deckone/central_hallway) +"JY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) +"Ka" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 1; + icon_state = "bulb1" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) +"Kc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"Kk" = ( +/obj/machinery/power/apc/talon{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/shuttle/talonboat) "Km" = ( /obj/structure/cable/green{ d1 = 4; @@ -7103,6 +4056,91 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_port_aft_wing) +"Kr" = ( +/obj/structure/cable/yellow{ + icon_state = "16-0" + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/sensor{ + name = "Talon Starboard Solar Panels"; + name_tag = "TLN-SBD-SLR" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating/eris/under, +/area/talon/deckone/starboard_solar) +"Ks" = ( +/obj/machinery/vending/medical_talon, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/talon/deckone/medical) +"Kx" = ( +/obj/machinery/airlock_sensor{ + dir = 4; + pixel_x = -28; + req_one_access = list(301) + }, +/obj/machinery/atmospherics/unary/vent_pump/aux{ + dir = 4; + icon_state = "map_vent_aux" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/light/small{ + dir = 1; + icon_state = "bulb1" + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/talonboat) +"KF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass{ + dir = 2 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/talon/deckone/central_hallway) +"KI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/deck1{ + pixel_y = 27 + }, +/obj/structure/sign/directions/bridge{ + dir = 1; + icon_state = "direction_bridge"; + pixel_y = 41 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"KJ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/brig) "KM" = ( /obj/effect/shuttle_landmark{ landmark_tag = "talon_starboard"; @@ -7110,25 +4148,10 @@ }, /turf/space, /area/space) -"KN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - id = "talon_windows" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) +"KP" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/talon/deckone/bridge_hallway) "La" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -7155,6 +4178,20 @@ }, /turf/space, /area/space) +"Lf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"Lm" = ( +/obj/structure/table/rack/steel, +/obj/item/clothing/suit/armor/combat, +/obj/item/clothing/head/helmet/combat, +/obj/item/clothing/under/syndicate/combat, +/obj/machinery/camera/network/talon, +/turf/simulated/floor/tiled/eris/white/danger, +/area/talon/deckone/armory) "Lt" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ @@ -7178,12 +4215,114 @@ }, /turf/simulated/floor/tiled/dark, /area/talon/deckone/brig) -"LJ" = ( -/obj/machinery/shower, -/obj/item/weapon/soap/deluxe, -/obj/structure/curtain, -/turf/simulated/floor/tiled/steel_ridged, -/area/talon/deckone/bridge_hallway) +"Lz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"LC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5; + icon_state = "intact-scrubbers" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/talon/deckone/brig) +"LH" = ( +/turf/simulated/floor/tiled/eris/white/golden, +/area/talon/deckone/bridge) +"LI" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/portables_connector/aux{ + dir = 4; + icon_state = "map_connector-aux" + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/port_eng) +"LK" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc/talon{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/brig) +"LU" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) +"LW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"LZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"Mg" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"Mi" = ( +/obj/structure/cable/green{ + d2 = 8; + dir = 2; + icon_state = "0-8" + }, +/obj/machinery/power/apc/talon{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/starboard_eng) "Mm" = ( /obj/machinery/shipsensors{ dir = 1 @@ -7200,15 +4339,26 @@ /obj/effect/floor_decal/emblem/talon, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_port_aft_wing) -"Mu" = ( -/obj/structure/catwalk, +"Mv" = ( +/obj/machinery/camera/network/talon, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"Mz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_port) +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/brig) +"MB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) "ME" = ( /obj/effect/shuttle_landmark{ landmark_tag = "talon_fore"; @@ -7216,59 +4366,367 @@ }, /turf/space, /area/space) -"Nu" = ( -/obj/structure/bed/chair/bay/comfy/yellow{ - dir = 1; - icon_state = "bay_comfychair_preview" +"MG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/deckone/bridge) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"MH" = ( +/obj/machinery/airlock_sensor{ + pixel_y = 28; + req_one_access = list(301) + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 1; + id_tag = "talon_port"; + pixel_y = -30; + req_one_access = list(301) + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 4; + icon_state = "map_vent_aux" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) +"MJ" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) +"ML" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) +"MM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"MW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"Nc" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"Nm" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) +"Nn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/talonboat) +"Np" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/talon/deckone/bridge_hallway) +"Ns" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc/talon{ + dir = 2; + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/table/standard, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/talon/deckone/workroom) +"Nt" = ( +/obj/machinery/alarm/talon{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/eris/dark/brown_platform, +/area/talon/deckone/port_eng_store) +"Nu" = ( +/obj/structure/table/standard, +/obj/fiftyspawner/glass, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/talon/deckone/workroom) "Nx" = ( /obj/effect/floor_decal/emblem/talon, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_fore_wing) -"NR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ +"Ny" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) +"Nz" = ( +/obj/machinery/computer/ship/navigation{ + dir = 4; + icon_state = "computer" + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/bridge) +"NG" = ( +/obj/machinery/suit_cycler/vintage/tmedic, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/talon/deckone/medical) +"NP" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"NU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9; + icon_state = "intact-aux" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, -/obj/machinery/button/remote/blast_door{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating/eris/under, +/area/talon/deckone/port_eng) +"NV" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = list(301) + }, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/tiled/steel_grid, +/area/talon/deckone/port_eng_store) +"Of" = ( +/obj/structure/barricade, +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) +"Os" = ( +/obj/structure/bed/chair/bay/comfy/red{ dir = 4; - id = "talon_brigblast2"; - name = "blast door control"; - pixel_x = -28 + icon_state = "bay_comfychair_preview" }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/brig) -"OF" = ( -/obj/structure/sign/periodic{ - pixel_y = 32 +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/bridge) +"Ou" = ( +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/talon/deckone/secure_storage) +"Ow" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/alarm/talon{ + dir = 8; + pixel_x = 22; + pixel_y = 0 }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/workroom) +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) +"OJ" = ( +/obj/machinery/computer/shuttle_control/explore/talonboat{ + dir = 4; + icon_state = "computer" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"OP" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/port_eng) +"OQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/talon/deckone/bridge_hallway) "OS" = ( /obj/machinery/atmospherics/unary/engine/bigger{ dir = 1 }, /turf/space, /area/talon/deckone/port_eng) +"OU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 6; + icon_state = "intact-aux" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) +"OZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/port_eng) +"Pg" = ( +/obj/structure/table/standard, +/obj/structure/bedsheetbin, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/brig) "Pi" = ( /obj/structure/catwalk, /turf/space, /area/talon/maintenance/deckone_port_fore_wing) -"PG" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"PY" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -25 +"Pu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/tiled/techmaint, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"Pv" = ( +/obj/structure/catwalk, +/obj/machinery/suit_storage_unit, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) +"PD" = ( +/obj/machinery/door/firedoor/glass{ + dir = 2 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/talon/deckone/central_hallway) +"PF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4; + icon_state = "intact-aux" + }, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/door/airlock/glass_external{ + req_one_access = list(301) + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) +"PL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + icon_state = "extinguisher_closed"; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"PO" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled/eris/dark/brown_platform, +/area/talon/deckone/port_eng_store) +"Qc" = ( +/obj/structure/fitness/weightlifter, +/turf/simulated/floor/tiled/eris/steel/cargo, /area/talon/deckone/workroom) +"Qe" = ( +/obj/structure/catwalk, +/obj/structure/loot_pile/maint/boxfort, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) +"Qg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10; + icon_state = "intact-fuel" + }, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/starboard_eng) "Qi" = ( /obj/machinery/door/blast/regular/open{ dir = 4; @@ -7276,31 +4734,130 @@ }, /turf/space, /area/talon/deckone/bridge) +"Ql" = ( +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 1; + icon_state = "map_connector-fuel" + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/starboard_eng) +"Qx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + icon_state = "extinguisher_closed"; + pixel_y = 32 + }, +/obj/machinery/door/firedoor/glass{ + dir = 2 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/talon/deckone/central_hallway) +"QC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/starboard_eng) "QJ" = ( /obj/machinery/atmospherics/unary/engine/bigger{ dir = 1 }, /turf/space, /area/talon/deckone/starboard_eng) +"QT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/freezer{ + anchored = 0 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) "QX" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 4 }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_aft_wing) +"Rk" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/obj/structure/closet/crate/medical/blood, +/obj/item/weapon/reagent_containers/blood/prelabeled/OMinus, +/obj/item/weapon/reagent_containers/blood/prelabeled/OMinus, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/talon/deckone/medical) +"Rr" = ( +/obj/machinery/alarm/talon{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/starboard_solar) +"Rt" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) "Ru" = ( /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_aft_wing) +"RS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/white/golden, +/area/talon/deckone/bridge) +"RV" = ( +/obj/structure/cable/green{ + dir = 1; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/talon/deckone/central_hallway) "RW" = ( /obj/effect/floor_decal/emblem/talon, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_port_fore_wing) -"Sa" = ( -/obj/effect/floor_decal/emblem/talon_big{ - dir = 4; - icon_state = "talon_big" +"RX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/turf/simulated/floor/tiled/steel, +/turf/simulated/floor/tiled/eris/steel, /area/talon/deckone/central_hallway) "Sc" = ( /obj/effect/floor_decal/industrial/warning/dust{ @@ -7308,6 +4865,118 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_port_aft_wing) +"Se" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable/offmap_spawn{ + RCon_tag = "Talon Port SMES" + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/port_solar) +"Sh" = ( +/obj/machinery/vending/engineering{ + req_access = newlist(); + req_log_access = 301; + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/eris/dark/brown_platform, +/area/talon/deckone/port_eng_store) +"Sm" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/talon{ + alarms_hidden = 1; + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/eris/dark/brown_platform, +/area/talon/deckone/starboard_eng_store) +"Sr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/light_switch{ + dir = 2; + name = "light switch "; + pixel_x = 0; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/cap/hidden{ + dir = 4; + icon_state = "cap" + }, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/port_eng) +"SD" = ( +/obj/effect/floor_decal/emblem/talon_big{ + dir = 9; + icon_state = "talon_big" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"SE" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 5; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/brig) +"SF" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/brig) +"SI" = ( +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/talon/deckone/workroom) +"SK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass{ + dir = 2 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/talon/deckone/central_hallway) +"SO" = ( +/obj/machinery/light/small, +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/starboard_solar) +"SS" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc/talon{ + dir = 2; + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/port_solar) "SV" = ( /obj/effect/floor_decal/industrial/warning/dust, /turf/simulated/floor/hull/airless, @@ -7315,6 +4984,62 @@ "SX" = ( /turf/space, /area/talon/deckone/port_eng) +"Tc" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/talon/deckone/workroom) +"Te" = ( +/obj/machinery/drone_fabricator/talon, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/starboard_eng_store) +"Tm" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) +"Tq" = ( +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/talon/deckone/workroom) +"Tr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/command{ + name = "Talon Secure Airlock"; + req_one_access = list(301) + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/talon/deckone/bridge) +"Ts" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/closet/medical_wall{ + pixel_x = -32 + }, +/obj/structure/closet/crate/medical{ + name = "medicine cooler" + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/talon/deckone/medical) "Tz" = ( /obj/structure/cable/green{ d1 = 4; @@ -7323,6 +5048,29 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_port_fore_wing) +"TB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"TC" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) "TD" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 5; @@ -7333,6 +5081,59 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_port_fore_wing) +"TJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"TN" = ( +/obj/structure/table/rack/steel, +/obj/item/clothing/suit/space/syndicate/black, +/obj/item/clothing/head/helmet/space/syndicate/black, +/obj/item/clothing/shoes/magboots, +/turf/simulated/floor/tiled/eris/white/danger, +/area/talon/deckone/armory) +"TO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/alarm/talon{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) +"TP" = ( +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + req_one_access = list(301) + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) +"TX" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/gun/energy/netgun, +/obj/item/weapon/cell/device/weapon{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/weapon/cell/device/weapon{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/weapon/cell/device/weapon, +/obj/item/clothing/accessory/holster/waist, +/turf/simulated/floor/tiled/eris/white/danger, +/area/talon/deckone/armory) "Ue" = ( /obj/structure/catwalk, /obj/structure/sign/warning/moving_parts{ @@ -7348,6 +5149,71 @@ }, /turf/space, /area/talon/maintenance/deckone_starboard_fore_wing) +"Uq" = ( +/obj/machinery/alarm/talon{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"Ur" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4; + icon_state = "pipe-t" + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/talon/deckone/bridge_hallway) +"Ut" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/donut, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/brig) +"Uv" = ( +/obj/structure/table/steel, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "talon_windows"; + name = "window blast shields" + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/bridge) +"Uy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/port_eng) +"UC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/effect/floor_decal/emblem/talon_big{ + dir = 6; + icon_state = "talon_big" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"UG" = ( +/obj/machinery/door/airlock/maintenance/medical{ + req_one_access = list(301) + }, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/plating/eris/under, +/area/talon/deckone/medical) "UI" = ( /obj/structure/cable/green{ d1 = 4; @@ -7359,6 +5225,38 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_aft_wing) +"UM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"UN" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"UP" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/mirror{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/eris/white, +/area/talon/deckone/bridge_hallway) +"UQ" = ( +/obj/structure/catwalk, +/obj/structure/loot_pile/maint/technical, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) "UT" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/blast/regular{ @@ -7381,6 +5279,49 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_starboard_fore_wing) +"UV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/talon/deckone/bridge_hallway) +"UY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/deckone/armory) +"Ve" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/effect/floor_decal/emblem/talon_big{ + dir = 10; + icon_state = "talon_big" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) "Vf" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 10; @@ -7388,183 +5329,20 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_port_fore_wing) -"VB" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/hull/airless, -/area/talon/maintenance/deckone_port_fore_wing) -"Wh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8; - icon_state = "borderfloor"; - pixel_x = 0 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/structure/vehiclecage/spacebike, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"Ww" = ( -/obj/effect/floor_decal/emblem/talon_big{ - dir = 8; - icon_state = "talon_big" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"WB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8; - icon_state = "borderfloor"; - pixel_x = 0 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10; - icon_state = "borderfloorcorner2"; - pixel_x = 0 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/central_hallway) -"WE" = ( -/obj/structure/sign/poster{ - dir = 1; - icon_state = "" - }, -/turf/simulated/wall, -/area/talon/deckone/central_hallway) -"WI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ +"Vj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/talon/deckone/central_hallway) -"WL" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_port) -"WS" = ( -/obj/machinery/door/airlock/medical{ - req_one_access = list(301) - }, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/tiled/white, -/area/talon/deckone/medical) -"Xh" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) -"Xi" = ( -/obj/machinery/atmospherics/portables_connector/fuel{ - dir = 1; - icon_state = "map_connector-fuel" - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/port_eng) -"Xz" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/hull/airless, -/area/talon/maintenance/deckone_starboard_aft_wing) -"XC" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_starboard) -"Yg" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/deckone_port) -"Yt" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/deckone/workroom) -"YG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/machinery/atmospherics/pipe/cap/hidden{ - dir = 1; - icon_state = "cap" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon/deckone/starboard_eng) -"YS" = ( -/obj/structure/catwalk, -/turf/space, -/area/talon/maintenance/deckone_port_aft_wing) -"Za" = ( -/obj/structure/catwalk, -/turf/space, -/area/talon/maintenance/deckone_starboard_aft_wing) -"Zv" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/department/bridge{ - pixel_y = 31 - }, -/turf/simulated/floor/tiled/steel_ridged, +/turf/simulated/floor/tiled/eris/white/gray_platform, /area/talon/deckone/bridge_hallway) -"ZR" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 6; - icon_state = "intact" +"Vt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 5; + icon_state = "intact-aux" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/hull/airless, -/area/talon/maintenance/deckone_port_fore_wing) -"ZU" = ( -/obj/machinery/suit_cycler/vintage/tmedic, -/turf/simulated/floor/tiled/white, -/area/talon/deckone/medical) -"ZV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ d1 = 1; @@ -7573,8 +5351,495 @@ }, /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated, -/turf/simulated/floor/plating, +/turf/simulated/floor/plating/eris/under, +/area/talon/deckone/starboard_eng) +"VB" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_port_fore_wing) +"VJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/deckone/secure_storage) +"VN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/talon/deckone/armory) +"VQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/steel, /area/talon/deckone/central_hallway) +"VR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"VT" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) +"VU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/bridge) +"VX" = ( +/obj/structure/table/standard, +/obj/fiftyspawner/phoron, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/starboard_solar) +"VY" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) +"VZ" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 8; + id_tag = "talon_boat"; + pixel_x = 28 + }, +/obj/machinery/atmospherics/unary/vent_pump/aux{ + dir = 8; + icon_state = "map_vent_aux" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/talonboat) +"Wo" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id = "talon_windows" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_starboard) +"Wt" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/talon/deckone/central_hallway) +"WA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 1; + icon_state = "map-fuel" + }, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/starboard_eng) +"WE" = ( +/obj/structure/sign/poster{ + dir = 1; + icon_state = "" + }, +/turf/simulated/wall, +/area/talon/deckone/central_hallway) +"WF" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 8; + frequency = 1380; + id_tag = "talon_boatbay"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"WJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/talon/deckone/workroom) +"WM" = ( +/obj/machinery/door/airlock/medical{ + req_one_access = list(301) + }, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/talon/deckone/medical) +"Xa" = ( +/obj/item/modular_computer/console/preset/talon{ + dir = 4; + icon_state = "console" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/brig) +"Xd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/talon/deckone/medical) +"Xe" = ( +/obj/structure/catwalk, +/obj/structure/sign/warning/airlock{ + pixel_x = -31 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) +"Xk" = ( +/obj/machinery/alarm/talon{ + alarm_id = "anomaly_testing"; + breach_detection = 0; + dir = 8; + frequency = 1439; + pixel_x = 22; + pixel_y = 0; + report_danger_level = 0 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/port_eng) +"Xt" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/talon/deckone/central_hallway) +"Xz" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_starboard_aft_wing) +"XC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/talon/deckone/central_hallway) +"XG" = ( +/obj/machinery/light_switch{ + dir = 4; + icon_state = "light1"; + pixel_x = -24 + }, +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/medical_stand/anesthetic, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/talon/deckone/medical) +"XM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 10; + icon_state = "intact-aux" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) +"XQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/port_eng) +"XV" = ( +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/door/airlock/glass_external{ + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/talonboat) +"Ya" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"Yd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"Yf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"Yh" = ( +/obj/structure/bed/chair/bay/comfy/brown{ + dir = 1; + icon_state = "bay_comfychair_preview" + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/bridge) +"Yi" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = list(301) + }, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/tiled/steel_grid, +/area/talon/deckone/starboard_eng_store) +"Ym" = ( +/obj/machinery/light/small{ + dir = 1; + icon_state = "bulb1" + }, +/obj/structure/toilet, +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 8; + req_access = list(301) + }, +/turf/simulated/floor/tiled/eris/white, +/area/talon/deckone/bridge_hallway) +"Yo" = ( +/obj/machinery/light/small, +/obj/machinery/light_switch{ + dir = 1; + on = 0; + pixel_x = -10; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/eris/dark/brown_platform, +/area/talon/deckone/starboard_eng_store) +"YA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/port_eng) +"YG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/starboard_eng) +"YI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 1; + icon_state = "map-fuel" + }, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/port_eng) +"YK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/deckone/central_hallway) +"YM" = ( +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 8; + icon_state = "bay_comfychair_preview"; + name = "doctor's seat" + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/bridge) +"YO" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 1; + icon_state = "bay_chair_preview" + }, +/turf/simulated/floor/tiled/eris/steel/techfloor_grid, +/area/shuttle/talonboat) +"YS" = ( +/obj/structure/catwalk, +/turf/space, +/area/talon/maintenance/deckone_port_aft_wing) +"YT" = ( +/obj/machinery/alarm/talon{ + dir = 1; + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/bridge) +"Za" = ( +/obj/structure/catwalk, +/turf/space, +/area/talon/maintenance/deckone_starboard_aft_wing) +"Zg" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/starboard_solar) +"Zj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/starboard_eng) +"Zk" = ( +/obj/machinery/oxygen_pump{ + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1; + icon_state = "map" + }, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/port_eng) +"Zq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating/eris/under, +/area/talon/deckone/central_hallway) +"Zt" = ( +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/talon/deckone/armory) +"Zz" = ( +/obj/machinery/alarm/talon{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/deckone/port_solar) +"ZA" = ( +/obj/machinery/alarm/talon{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/eris/dark/brown_perforated, +/area/talon/deckone/starboard_eng_store) +"ZB" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/deckone_port) +"ZH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light_switch{ + dir = 4; + icon_state = "light1"; + pixel_x = -24 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 5; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/talon/deckone/armory) +"ZR" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6; + icon_state = "intact" + }, +/turf/simulated/floor/hull/airless, +/area/talon/maintenance/deckone_port_fore_wing) +"ZU" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/talon/deckone/brig) +"ZW" = ( +/obj/machinery/light, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1; + icon_state = "pipe-t" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/talon/deckone/workroom) (1,1,1) = {" aa @@ -15036,7 +13301,7 @@ Km Dh YS aC -fA +TP aC YS Dh @@ -15178,7 +13443,7 @@ yn YS YS aC -fB +MH aC YS YS @@ -15320,12 +13585,12 @@ La br aC aC -fC +mF aC aC aC -br -br +na +na aC aC aC @@ -15447,37 +13712,37 @@ Dr Do aa aC -jh -nL -mv -WL -mv -mv -mv -mv -mv -mv -mv -Gy -aL -aL -aL -fD -su -kZ +Dm +Dw +GH +VY +GH +GH +GH +GH +GH +GH +GH +ZB +am +am +am +iE +Xe +IA aC -aL -aL -aL -aL -aL -aL -aL -jz -aL -aL -aL -bC +am +am +am +am +am +am +am +Qe +am +am +am +gb aa aa aa @@ -15589,37 +13854,37 @@ tZ Bh aa aC -aL -Mu -ck +am +ML +kr aM -cJ -aL -aL -aL -aL -dQ -aL -aL -aL -aL -aL -fE -fX -fX -gr -fX -fX -fX -fX -hn -hE -fX -ii -aL -aL -aL -bC +At +am +am +am +am +dP +am +am +am +am +am +XM +JY +JY +jL +JY +JY +JY +JY +aV +Ow +JY +gg +am +am +am +gb aa aa aa @@ -15731,14 +13996,14 @@ Ij Bh aa aC -aL -Mu +am +ML cl cl cl cl cl -bS +gs dH dH dH @@ -15751,7 +14016,7 @@ dH dH dH dH -bS +gs gU gU gU @@ -15760,11 +14025,11 @@ dL ij iA iA -iV +BA ji ji -gJ -gJ +ga +ga ji ji ji @@ -15873,41 +14138,41 @@ Pi Lt aa aC -aL -Mu +am +ML cl -cr -cK -dc +kt +xm +da cl -aL +am dH -dS -kn -eE +ZU +iq +so dH -dS -dS +ZU +ZU dH -eE -kn -dS +so +iq +ZU dH -aL +am gU -gZ +dR +Nt +gU +NP ho -gU -hQ -ik iA -iH -iW -jj -jr -jA -jL -jS +LI +IT +Ik +aj +XQ +qp +ps jZ kh OS @@ -16010,46 +14275,46 @@ aC aC aC aC -La -br +sy +na aC aC aC -aL -Mu -cm -cs -cL -dd +am +ML +im +Ca +vL +Zz cl -aL +am dH -dT -em -em +vb +Hy +Hy eS -em -em +Hy +Hy UT -em -em -dT +Hy +Hy +vb dH -aL +am gU -ha -hp +Sh +rQ gU -hR -il -iB -iI -iX -jk -js -jB -jM -jT +pR +Ex +DY +NU +YA +hs +Uy +CW +YI +CN kb JI SX @@ -16148,50 +14413,50 @@ aa aa nv Mm -ym -aL -aL -aL -Yg -mv -mv -mv -WL -mv -sB +ey +am +am +am +yC +GH +GH +GH +VY +GH +iw cl -ct -cM -de +Se +FQ +qL cl -dF +LU dH -dU -en -eF +tQ +LC +gT dH -ko -em +Hl +Hy dH -fY -gg -jU -dH -gK -gU -hb -hq -gU -hS -im -iA -iJ iY -jl -iZ -Hp -jM -jT +tm +ID +dH +xE +gU +kB +PO +gU +QT +Bj +iA +Sr +iX +vV +lM +ir +YI +CN kb ji aa @@ -16299,41 +14564,41 @@ aR aR aR aM -aL -Mu +am +ML cl -cu -cN -df +BU +eq +SS cl -aL +am dH -dV +iB eo -eG +ES dH Ly -eG +ES dH -dV +iB eo -eG +ES dH -aL +am gU -hc -hr -hF -hT -in +Gi +dU +NV +LW +Bj iA -iK -iZ -iZ -ju -jC -jM -jT +Zk +lM +lM +OZ +bw +YI +CN kc kh OS @@ -16434,48 +14699,48 @@ aa aa ab ac -aS -be -aS -kM -aS +Ou +dQ +Ou +kN +Ou aR aM -aL -Mu +am +ML cl cl cO cl cl -bS -dH -dW -ep -eH -yN -eT -eT -NR -fZ -gh gs +dH +SF +kP +zH +JG +zH +zH +IZ +zH +Az +vw kX -aL +am gU -hd -hs +gJ +dV gU -hU -in +CH +Bj iA -iL -iL -iL -iL -jD -jN -Xi +OP +OP +OP +OP +Xk +iR +Gv ji JI SX @@ -16576,43 +14841,43 @@ aa aa ab ac -aS -bq -aS -bq -aS +Ou +kN +Ou +kN +Ou aR aM -ca -ce +JC +Ny aM cv -cP -dg -dp -du +oz +sz +Uq +Bj dH -dX -eq -dY -dY -dY -dY -dY -dY -dY -gt +SE +Gq +vw +vw +vw +vw +vw +vw +vw +jj dH -bS +gs gU gU gU gU -hV -io +Qx +PD iA -iM -iM +bT +bT iA iA iA @@ -16718,49 +14983,49 @@ ab ab ab ac -JZ -bq -aT -bq -bK +wz +kN +sK +kN +zt aR aM aM -cf +xK aM cw -cQ -dh -dq -dv +oz +pg +Iy +RX dI -es -er -eI -eI -fd -fq -dY -dY -dY -gu +vw +bg +uL +uL +yl +Xa +vw +vw +vw +Pg dH -gL -gV -cB -ht -hG -hW -ip -lz -vl -WB +Bj +Ae +kE +iT +sz +tr +jP +OJ +id +zE dL wk -Wh -kP -kP -lA +cr +Bj +Bj +Bj ki aa aa @@ -16860,49 +15125,49 @@ ac ac ac ac -aU -bf -bo -bq -GF +qe +dE +tI +xV +fH bQ -LJ +kL aM -cf +xK aM -cx -cQ -cy -cy -dw +Bu +oz +Bj +Bj +kM dH dZ -gd -eJ -eV -fe -fr -fF -ga -gi -gv +cL +pw +Mz +tn +pp +KJ +LK +Ut +dj dH -gM -gW -cy -hu -hH -kQ -PG -FZ -vs -ja -ja -jE -ja -kw -cy -cy +tC +bj +Bj +wP +MM +LZ +Jn +Jn +EE +Bj +Bj +sz +Bj +Bj +Bj +Bj ki aa aa @@ -16995,28 +15260,28 @@ aa aa ab ac -ae -al -ar -au -ay -aD +lS +Nz +bW +tw +wN +ug ac -aV -bh -bt -bD -bL +Hh +zF +xw +po +ha bQ -bT +Ym aM -cf +xK aM -cy -cR -cy -dr -dx +Bj +Mg +Bj +AV +xv dH dH et @@ -17029,22 +15294,22 @@ dH dH dH dH -gN -cy -cC -cy -hI +Mv +Bj +Bj +Bj +MG wk -bs -ir -ir -ir -ir -ir -ir -ir -ir -iC +nc +nc +nc +nc +nc +nc +nc +nc +nc +nc ki aa aa @@ -17137,56 +15402,56 @@ aa aa ab ac -af -am -as -av -az -aE +FR +Yh +hQ +YM +kJ +pJ ac aR -bi +tk bu -bE +VJ aR bQ -bU +UP aM -cf +xK aM -cz -cS -ew -di -dy -dJ -ea -eu -eK -eW -ff -fs -fG -fG -fG -fG -gE -gO -he -kA -hv -hJ -hY -bA +oe +Nc +YK +YK +TB +SK +Yd +kK +UM +PL +yD +Lz +Pu +Pu +Pu +Pu +te +JE +CT +Pu +VR +yh +wW +nc lb lb -lf -lf +pf +pf lb lb lb lb -iD +nc ki aa aa @@ -17278,57 +15543,57 @@ aa aa aa Qi -ad -ag -an -an -an -an -aF +IM +zy +LH +LH +LH +LH +aA ac -aW -bj -bv -bG -bN +KP +Vj +UV +iP +Ur bQ bV bQ -cg +ur bQ bQ -DF -tL -Ww -dz -dK -eb -ev -lW -eX -fg -ft -ev -eL -eX -eb -gF -cy -hf -kB -hw -hM +Gh +SD +jD +Ve +PD +Bj +Bj +MB +Bj +zs +CY +Bj +Bj +Bj +Bj +PD +Bj +zs +Bj +CY +MG dL -bA -lc -ld -lg -lg -lj +nc +Nn +BZ +YO +YO +mT lb -jg +Kx lb -iD +nc ki aa aa @@ -17420,57 +15685,57 @@ aa aa aa Qi -ad -ah -ao -xI -ao -sM -aG -aN -aX -bk -bw -bF -bM -bR -bW -cb -ch -cn +IM +RS +on +nT +on +uy +lt +Tr +cK +OQ +Ih +HQ +oG +Ea +cg +in +uB +eI cA -cT -eY -dj -dA +MW +IF +eB +vr dL dL -gj -ky -kF +Wt +XC +zq dL WE -kG -kz -kH +CA +CA +Xt dL dL -gP -cy -kC -cy -hK -hZ -bA -lc -le -lg -lg -lk -ln -qA -sE -iD +pn +Bj +Bj +Bj +uW +mb +nc +Nn +gN +YO +YO +ys +XV +fj +yQ +nc ki aa aa @@ -17562,57 +15827,57 @@ aa aa aa Qi -ad -ai -ap -ap -ap -Cm -aH +IM +wm +LH +LH +LH +cC +zy ac -Zv -bl -bx -kI -kv +ER +iP +UV +Np +JP bQ bV bQ -cg +ur bQ bQ -CN -IF -Sa -ns -dM -ec -ex -vc -eZ -fh -fu -ex -eM -eZ -ec -gG -cy -hg -kB -hx -hX +KI +nu +oV +UC +PD +Bj +Bj +MB +Bj +gi +Yf +Bj +Bj +Bj +Bj +PD +Bj +gi +Bj +Yf +MG dL -bA -lc -np -lh -lp -lw +nc +Nn +tv +ht +xu +Kk lb -lr +VZ lb -iD +nc ki aa aa @@ -17705,56 +15970,56 @@ aa aa ab ac -aj -Nu -as -aw -ls -aI +HW +oS +hQ +Os +VU +YT ac aY -bm +Eq by -bH +UY aY bQ -bX +gR aO -ci +nN aO -cB -cU -fH -WI -sD -dN -ed -ey -eN -fa -fi -fv -fI -gb -ey -gw -gH -ZV -hh -kD -hy -hL -hY -bA +kE +DO +yo +yo +kG +KF +sd +DU +Ya +gz +JF +TJ +Jr +Jr +DU +Jr +JX +fL +vK +Jr +ta +mB +wW +nc lb lb lb -lt +vi lb lb lb lb -iD +nc ki aa aa @@ -17847,31 +16112,31 @@ aa aa ab ac -ak -aq -at -ax -aB -aJ -ac -aZ -bn -bz -bI -bO -bQ -bY -aO -ci -aO -cy -cR -cy -dr +lU +aQ +Uv dB +aq +pC +ac +ZH +if +mj +VN +ar +bQ +jp +aO +nN +aO +Bj +Mg +Bj +AV +tl dO dO -ez +Fs dO dO dO @@ -17882,21 +16147,21 @@ gk fJ fJ gQ -cy -cC -cy -hI +Bj +Bj +Bj +MG wk -iq -is -is -is -lu -is -is -is -is -iE +nc +nc +nc +nc +RV +nc +nc +nc +nc +nc ki aa aa @@ -17996,49 +16261,49 @@ ac ac ac ac -ba -bg -bp -kK -oi +zx +Gd +uM +Zt +kV bQ bQ aO -ci +nN aO -cC -cQ -cy -iO -dC +Bj +oz +Bj +Bj +lo dO -ee -eA -eO -fb -fj +XG +aL +qz +Ts +jB dO -fK -gl -ks -gx +Tc +cR +Ay +rU fJ -gR -gW -cy -hu -ia -kR -li -ll -lo -lo -jJ -kO -kJ -kx -cy -cy +sa +bj +Bj +wP +VQ +ej +Rt +Rt +Rt +Rt +WF +IW +Bj +Bj +Bj +Bj ki aa aa @@ -18138,49 +16403,49 @@ ab ab ab ac -bb -kK -bc -kK -bP +Lm +Fl +TN +Fl +xd aY aO -aP -ci +qA +nN aO cD -cQ -dh -dq -dD -dP -ef -eB -ef -ef -ef -fw -kt -fL -gm -gy +oz +pg +Iy +Kc +Bn +Gb +FA +Gb +Gb +Gb +uZ +Tq +Tq +Gw +kw fJ -gS -gX -cz -hz -hN -ib -it -Bz -kE +Bj +Jw +oe +iT +IW +Zq +Lf +ob +Bj iN dL wk -lB -ds -ds -lC +UN +Bj +Bj +Bj ki aa aa @@ -18280,43 +16545,43 @@ aa aa ab ac -kS -kK -xV -kK -ei +TX +Fl +oc +Fl +cI aY aO -cd -cj +mL +Tm aO cE -cV -dk -FJ -dE +oz +IW +pX +EE dO -eg -eB -eP -ef -ef -fx -kt -fL -gn -gz +Ks +FA +it +Gb +Gb +GJ +Tq +Tq +WJ +ml fJ -bZ +Nm gY gY gY gY -ic -iu +bR +PD iF -iP -iP +ju +ju iF iF iF @@ -18422,48 +16687,48 @@ aa aa ab ac -kT -kL -kT -kN -kU +cQ +le +cQ +Fl +sS aY aO -aP -vv +qA +xk co co cW co co -bZ +Nm dO -eh -eB -ef -ef -fk +fZ +FA +Gb +Gb +ek dO -fM -fL -go -gA +Qc +Tq +II +CC fJ -aP +qA gY -hi -hA +hL +xF gY -id -iv +MG +Bj iF -iQ -iQ -iQ -iQ -jF -jO -Im +xU +xU +xU +xU +IO +Ie +lk kd kj QJ @@ -18571,41 +16836,41 @@ aY aY aY aO -aP -vv +qA +xk co -cF -cX -dl +JS +An +cV co -aP +qA dO -kV -eC -eQ -fc -fl +xH +JM +Xd +vc +eV dO -fN -fP -gp -gB +uN +SI +rF +Ns fJ -aP +qA gY -hj -hB -hO -ie -iv +Sm +sY +Yi +Hn +Bj iF -iR -jb -jb -jv -jG -jP -jW +hP +yf +yf +bP +fi +WA +Ql kf GP yg @@ -18705,49 +16970,49 @@ aa aa aa aK -jp -bd -aP -XC -Fc -Fc -Fc -DQ -Fc -Xh +sI +Of +qA +mN +sL +sL +sL +BD +sL +MJ co -cG -cY -dm +yN +kz +SO co -dG +VT dO dO dO -WS +WM dO dO dO -fO -gq -Yt -gC +mS +Nu +wh +ZW fJ -kk -kY -hk -hC +Ka +kQ +gW +Yo gY -if -iw +MG +Bj iF -iS -jc -jm +er +Zj +jE +yf jb -YG -jP -jW +WA +Ql kf jY aa @@ -18850,46 +17115,46 @@ aK aK aK aK +mf +Wo +aK +aK +aK +qA xk -bB -aK -aK -aK -aP -vv -cp -cH -cZ -dn +AB +wD +Zg +Rr co -aP +qA dO -ZU -ef -ef -jV -fm +NG +Gb +Gb +qB +Dq dO -fQ -kp -fP -PY +hD +pz +SI +AQ fJ -aP +qA gY -hl -xo +Te +ZA gY -ig -ix -iG -iT -jd -jn -jx -jH -jP -jW +VQ +Id +mC +Vt +xc +EL +YG +dm +WA +Ql ke kj QJ @@ -18997,41 +17262,41 @@ Hb nR aa aK -aP -vv +qA +xk co -cI -da -do +Kr +uj +VX co -aP +qA dO -ek -kr -ef -ef -fn +dz +Rk +Gb +Gb +GK dO -OF -fP -fP -kq +Gt +SI +SI +Gr fJ -aP +qA gY -hm -hm +Hp +Hp gY -ih -iy +NP +ho iF -iU -je -jo -jy -jI -jQ -jX +GI +yB +Mi +Bm +QC +Qg +nW kg GP yg @@ -19139,27 +17404,27 @@ vf CP aa aK -aP -vv +qA +xk co co co co co -bZ +Nm dO dO dO -eR +UG dO dO dO fJ -ge +rn fJ fJ fJ -bZ +Nm gY gY gY @@ -19168,11 +17433,11 @@ dL ij iF iF -jf +hf jY jY -gT -gT +DD +DD jY jY jY @@ -19281,37 +17546,37 @@ CP CP aa aK -aP -vv -aP +qA +xk +qA aO -db -aP -aP -aP -aP -el -aP -aP -bd -jq -aP -fR -gf -gf -gD -gf -gf -gf -gf -hD -hP -gf -iz -aP -aP -aP -bJ +mO +qA +qA +qA +qA +hv +qA +qA +Of +UQ +qA +OU +Dz +Dz +AI +Dz +Dz +Dz +Dz +cd +TO +Dz +Ee +qA +qA +qA +ix aa aa aa @@ -19423,37 +17688,37 @@ EM CU aa aK -jp -Gu -Fc -DQ -Fc -Fc -Fc -Fc -Fc -Fc -Fc -zC -aP -aP -aP -fS -sk -la +sI +bk +sL +BD +sL +sL +sL +sL +sL +sL +sL +TC +qA +qA +qA +Ar +sJ +Pv aK -aP -aP -aP -aP -aP -aP -bd -aP -aP -aP -aP -bJ +qA +qA +qA +qA +qA +qA +Of +qA +qA +qA +qA +ix aa aa aa @@ -19576,16 +17841,16 @@ aK aK aK aK -KN -bB +Fg +Wo aK aK -fT +PF aK aK aK -bB -bB +Wo +Wo aK aK aK @@ -19722,7 +17987,7 @@ yy Za Za aK -fU +xQ aK Za Za @@ -19864,7 +18129,7 @@ UI Ru Za aK -fV +oU aK Za Ru diff --git a/maps/tether/submaps/offmap/talon2.dmm b/maps/tether/submaps/offmap/talon2.dmm index cb8c0dbff5..b4331dabbc 100644 --- a/maps/tether/submaps/offmap/talon2.dmm +++ b/maps/tether/submaps/offmap/talon2.dmm @@ -8,19 +8,6 @@ "ac" = ( /turf/simulated/wall, /area/talon/decktwo/bridge_upper) -"ad" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/blast/regular/open{ - id = "talon_windows" - }, -/turf/simulated/floor/plating, -/area/talon/decktwo/bridge_upper) "ae" = ( /turf/simulated/open, /area/talon/decktwo/bridge_upper) @@ -35,10 +22,6 @@ /obj/structure/railing, /turf/simulated/open, /area/talon/decktwo/bridge_upper) -"ah" = ( -/obj/machinery/computer/ship/navigation, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/decktwo/bridge_upper) "ai" = ( /obj/structure/railing{ dir = 8 @@ -62,19 +45,6 @@ }, /turf/simulated/open, /area/talon/decktwo/bridge_upper) -"al" = ( -/obj/structure/table/steel, -/obj/item/weapon/paper/dockingcodes, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/decktwo/bridge_upper) -"am" = ( -/obj/structure/bed/chair/bay/comfy/blue{ - dir = 1; - icon_state = "bay_comfychair_preview"; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/decktwo/bridge_upper) "an" = ( /obj/machinery/light{ dir = 4 @@ -92,50 +62,18 @@ "ap" = ( /turf/simulated/wall/rshull, /area/talon/decktwo/cap_room) -"aq" = ( -/obj/machinery/alarm/talon{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/decktwo/bridge_upper) -"ar" = ( -/turf/simulated/floor/tiled/techfloor, -/area/talon/decktwo/bridge_upper) -"as" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/decktwo/bridge_upper) "at" = ( +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"au" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/camera/network/talon{ - dir = 10; - icon_state = "camera" - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/decktwo/bridge_upper) -"au" = ( -/obj/structure/cable/green{ - d2 = 8; - dir = 2; - icon_state = "0-8" - }, -/obj/machinery/power/apc/talon{ - dir = 2; - name = "south bump"; - pixel_y = -28; - req_access = list(67) - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/decktwo/bridge_upper) +/obj/machinery/camera/network/talon, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) "av" = ( /obj/structure/railing{ dir = 8 @@ -174,32 +112,22 @@ /turf/simulated/floor/carpet/blucarpet, /area/talon/decktwo/cap_room) "aB" = ( -/obj/effect/floor_decal/spline/plain, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/command{ - name = "Talon Secure Airlock"; - req_one_access = list(301) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/talon/decktwo/cap_room) -"aC" = ( -/turf/simulated/wall, -/area/talon/decktwo/cap_room) -"aD" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/techfloor, -/area/talon/decktwo/central_hallway) -"aE" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/vending/nifsoft_shop, -/turf/simulated/floor/tiled/techfloor, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, /area/talon/decktwo/central_hallway) +"aC" = ( +/turf/simulated/wall, +/area/talon/decktwo/cap_room) "aF" = ( /obj/structure/bed/chair/bay/chair, /turf/simulated/floor/wood, @@ -213,29 +141,11 @@ /turf/simulated/floor/wood, /area/talon/decktwo/bar) "aH" = ( -/obj/item/weapon/stool/baystool/padded, -/obj/effect/floor_decal/spline/plain{ +/obj/structure/toilet{ dir = 8 }, -/obj/machinery/camera/network/talon{ - dir = 6; - icon_state = "camera" - }, -/turf/simulated/floor/lino, -/area/talon/decktwo/bar) -"aI" = ( -/obj/structure/table/standard, -/turf/simulated/floor/lino, -/area/talon/decktwo/bar) -"aJ" = ( -/obj/machinery/vending/boozeomat{ - density = 0; - pixel_y = 32; - req_access = list(301); - req_log_access = 301 - }, -/turf/simulated/floor/lino, -/area/talon/decktwo/bar) +/turf/simulated/floor/tiled/eris/white, +/area/talon/decktwo/central_hallway) "aK" = ( /turf/simulated/floor/carpet/blucarpet, /area/talon/decktwo/cap_room) @@ -250,31 +160,6 @@ "aM" = ( /turf/simulated/floor/wood, /area/talon/decktwo/cap_room) -"aN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"aO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) "aP" = ( /obj/machinery/alarm/talon{ dir = 4; @@ -288,70 +173,11 @@ "aQ" = ( /turf/simulated/floor/wood, /area/talon/decktwo/bar) -"aR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/item/weapon/stool/baystool/padded, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/talon/decktwo/bar) -"aS" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/item/weapon/storage/dicecup/loaded, -/turf/simulated/floor/lino, -/area/talon/decktwo/bar) -"aT" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/talon/decktwo/bar) -"aU" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10; - icon_state = "borderfloorcorner2"; - pixel_x = 0 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) "aV" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/vending/coffee{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"aW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, /area/talon/decktwo/bar) "aX" = ( /obj/structure/bed/chair/bay/chair{ @@ -360,31 +186,6 @@ }, /turf/simulated/floor/wood, /area/talon/decktwo/bar) -"aY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/weapon/stool/baystool/padded, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/talon/decktwo/bar) -"aZ" = ( -/turf/simulated/floor/lino, -/area/talon/decktwo/bar) -"ba" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - id = "talon_windows" - }, -/turf/simulated/floor/plating, -/area/talon/decktwo/cap_room) "bb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -425,142 +226,10 @@ }, /turf/simulated/floor/wood, /area/talon/decktwo/cap_room) -"be" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/command{ - id_tag = "talon_capdoor"; - name = "Talon Secure Airlock"; - req_one_access = list(301) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/talon/decktwo/cap_room) -"bf" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"bg" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"bh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/item/weapon/stool/baystool/padded, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/structure/cable/green{ - dir = 1; - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/talon/decktwo/bar) -"bi" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/green{ - dir = 1; - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/talon/decktwo/bar) "bj" = ( -/obj/machinery/chemical_dispenser/bar_alc/full{ - dir = 8; - icon_state = "booze_dispenser" - }, -/obj/structure/table/marble, -/obj/structure/cable/green{ - dir = 1; - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/talon/decktwo/bar) -"bk" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - id = "talon_windows" - }, -/turf/simulated/floor/plating, -/area/talon/decktwo/bar) -"bl" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - id = "talon_windows" - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_port) +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/decktwo/central_hallway) "bm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, @@ -580,58 +249,10 @@ }, /turf/simulated/floor/wood, /area/talon/decktwo/cap_room) -"bp" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/sign/department/commander{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) "bq" = ( /obj/structure/table/standard, /turf/simulated/floor/wood, /area/talon/decktwo/bar) -"br" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/weapon/stool/baystool/padded, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/talon/decktwo/bar) -"bs" = ( -/obj/machinery/chemical_dispenser/bar_soft/full{ - dir = 8 - }, -/obj/structure/table/marble, -/turf/simulated/floor/lino, -/area/talon/decktwo/bar) -"bt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - id = "talon_windows" - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_starboard) "bu" = ( /obj/machinery/light/small{ dir = 8; @@ -648,18 +269,6 @@ }, /turf/simulated/floor/wood, /area/talon/decktwo/cap_room) -"bw" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) "bx" = ( /obj/structure/cable/green{ icon_state = "0-2" @@ -676,25 +285,6 @@ }, /turf/simulated/floor/wood, /area/talon/decktwo/bar) -"by" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/turf/simulated/floor/lino, -/area/talon/decktwo/bar) -"bz" = ( -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/lino, -/area/talon/decktwo/bar) -"bA" = ( -/obj/effect/floor_decal/spline/plain, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/talon/decktwo/bar) "bB" = ( /obj/machinery/alarm/talon{ dir = 4; @@ -719,46 +309,22 @@ /turf/simulated/floor/carpet/blucarpet, /area/talon/decktwo/cap_room) "bF" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"bG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/sign/department/bar{ - pixel_x = 29 - }, -/turf/simulated/floor/tiled/steel, +/turf/simulated/floor/tiled/eris/steel, /area/talon/decktwo/central_hallway) "bH" = ( /obj/structure/cable/green{ @@ -802,31 +368,6 @@ /obj/item/modular_computer/console/preset/talon, /turf/simulated/floor/carpet/blucarpet, /area/talon/decktwo/cap_room) -"bN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"bO" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/talon/decktwo/bar) "bP" = ( /obj/structure/extinguisher_cabinet{ dir = 8; @@ -848,64 +389,18 @@ }, /turf/simulated/floor/carpet/blucarpet, /area/talon/decktwo/cap_room) -"bS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4; - icon_state = "pipe-t" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) "bT" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"bU" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 10; icon_state = "intact-scrubbers" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2 - }, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/tiled/steel_grid, -/area/talon/decktwo/bar) +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) "bV" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -938,46 +433,6 @@ }, /turf/simulated/floor/wood, /area/talon/decktwo/bar) -"bX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/obj/machinery/vending/food{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/talon/decktwo/bar) -"bY" = ( -/obj/machinery/vending/coffee{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1; - icon_state = "spline_plain" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/talon/decktwo/bar) -"bZ" = ( -/obj/machinery/vending/dinnerware{ - dir = 1; - icon_state = "dinnerware" - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1; - icon_state = "spline_plain" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/talon/decktwo/bar) -"ca" = ( -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_starboard) "cb" = ( /turf/simulated/wall/rshull, /area/talon/maintenance/decktwo_port) @@ -1049,33 +504,12 @@ /turf/simulated/open, /area/talon/decktwo/central_hallway) "cn" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/structure/sign/deck2{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"co" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4{ +/obj/machinery/vending/dinnerware{ dir = 1; - icon_state = "steel_decals_central4" + icon_state = "dinnerware" }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/talon/decktwo/bar) "cp" = ( /obj/structure/lattice, /obj/structure/cable/green{ @@ -1119,19 +553,16 @@ /obj/effect/floor_decal/industrial/warning/dust/corner, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) -"cx" = ( -/obj/structure/railing{ - dir = 1 - }, +"cv" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass/talon, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_port) +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_starboard) "cy" = ( /obj/structure/railing, /obj/structure/lattice, @@ -1150,43 +581,13 @@ /turf/simulated/open, /area/talon/decktwo/central_hallway) "cB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 +/obj/structure/sign/deck2{ + pixel_y = 28 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 +/obj/machinery/door/firedoor/glass{ + dir = 2 }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"cC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"cD" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel, +/turf/simulated/floor/tiled/eris/dark/monofloor, /area/talon/decktwo/central_hallway) "cE" = ( /obj/structure/railing, @@ -1198,170 +599,7 @@ "cF" = ( /turf/simulated/wall, /area/talon/maintenance/decktwo_starboard) -"cG" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_starboard) -"cH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_port) -"cI" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"cJ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/camera/network/talon, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"cK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass/talon/hidden, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4; - icon_state = "steel_decals5" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) "cL" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4; - icon_state = "borderfloorcorner2"; - pixel_y = 0 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"cM" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"cN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"cO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"cP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"cQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -1377,254 +615,19 @@ }, /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated, -/turf/simulated/floor/plating, +/turf/simulated/floor/plating/eris/under, +/area/talon/decktwo/central_hallway) +"cP" = ( +/obj/machinery/alarm/talon{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, /area/talon/decktwo/central_hallway) "cR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"cS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"cT" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"cU" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass/talon/hidden{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8; - icon_state = "steel_decals5" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"cV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/camera/network/talon, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"cW" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"cX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 8; - pixel_x = 0 - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_starboard) -"cY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_port) -"cZ" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"da" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"db" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/talon/hidden, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4; - icon_state = "steel_decals5" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"dc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/oxygen_pump{ - dir = 1; - icon_state = "oxygen_tank"; - pixel_y = -30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"dd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"de" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"df" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4; icon_state = "intact-scrubbers" @@ -1638,233 +641,21 @@ name = "south bump"; pixel_y = -24 }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-s" }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"dg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/sign/directions/evac{ - pixel_y = -38 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"dh" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"di" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/sign/department/shield{ - pixel_y = -31 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"dj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"dk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/oxygen_pump{ - dir = 1; - icon_state = "oxygen_tank"; - pixel_y = -30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"dl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/talon/hidden{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8; - icon_state = "steel_decals5" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel, +/turf/simulated/floor/tiled/eris/steel, /area/talon/decktwo/central_hallway) "dm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"dn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"do" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_starboard) -"dp" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - icon_state = "extinguisher_closed"; - pixel_x = -30 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"dq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_port) "dr" = ( /turf/simulated/wall, /area/talon/decktwo/eng_room) @@ -1888,47 +679,20 @@ "du" = ( /turf/simulated/wall, /area/talon/decktwo/pilot_room) -"dv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ +"dw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"dw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ +/obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - icon_state = "extinguisher_closed"; - pixel_x = 30 +/obj/machinery/door/blast/regular/open{ + id = "talon_windows" }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"dx" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) +/turf/simulated/floor/plating/eris/under, +/area/talon/decktwo/cap_room) "dy" = ( /obj/structure/table/woodentable, /obj/item/modular_computer/laptop/preset/custom_loadout/standard/talon/engineer, @@ -1947,92 +711,13 @@ }, /turf/simulated/floor/carpet, /area/talon/decktwo/eng_room) -"dB" = ( +"dE" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/machinery/alarm/talon{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/structure/table/standard, -/obj/item/weapon/paper/talon_shields, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/tech) -"dC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/machinery/computer/ship/helm{ - req_one_access = list(301) - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/tech) -"dD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4{ - dir = 1; - icon_state = "steel_decals_central4" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/tech) -"dE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4; - icon_state = "borderfloorcorner2"; - pixel_y = 0 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/tech) -"dF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/railing, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/structure/table/standard, -/obj/item/device/bluespaceradio/talon_prelinked, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/tech) +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) "dG" = ( /obj/item/weapon/bedsheet, /obj/structure/bed/padded, @@ -2053,42 +738,6 @@ /obj/item/modular_computer/laptop/preset/custom_loadout/standard/talon/pilot, /turf/simulated/floor/carpet, /area/talon/decktwo/pilot_room) -"dJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm/talon{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_port) -"dK" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) "dL" = ( /obj/structure/cable/green{ icon_state = "0-2" @@ -2118,81 +767,15 @@ }, /turf/simulated/floor/carpet, /area/talon/decktwo/eng_room) -"dO" = ( -/obj/machinery/power/apc/talon{ - cell_type = /obj/item/weapon/cell/apc; - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10; - icon_state = "borderfloorcorner2"; - pixel_x = 0 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/tech) -"dP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/tech) "dQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 +/obj/structure/table/steel, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "talon_windows"; + name = "window blast shields" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5; - icon_state = "intact-scrubbers" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/railing, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/tech) -"dR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/tech) -"dS" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central4{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/tech) +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/decktwo/bridge_upper) "dT" = ( /obj/machinery/alarm/talon{ dir = 4; @@ -2222,57 +805,12 @@ }, /turf/simulated/floor/carpet, /area/talon/decktwo/pilot_room) -"dW" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) "dX" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + icon_state = "2-4" }, -/obj/machinery/alarm/talon{ - dir = 8; - pixel_x = 22; - pixel_y = 0 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_starboard) -"dY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/sign/directions/roomnum{ - dir = 4; - icon_state = "roomnum"; - pixel_x = 32; - pixel_y = -9 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/decktwo/bridge_upper) "dZ" = ( /obj/structure/cable/green{ d1 = 1; @@ -2297,33 +835,11 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/talon/decktwo/eng_room) -"ec" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/tech) "ed" = ( /obj/structure/cable/green, /obj/machinery/power/shield_generator/charged, /turf/simulated/floor/tiled/techfloor, /area/talon/decktwo/tech) -"ee" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/tech) "ef" = ( /obj/machinery/camera/network/talon{ dir = 9; @@ -2357,87 +873,6 @@ }, /turf/simulated/floor/wood, /area/talon/decktwo/pilot_room) -"ej" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10; - icon_state = "borderfloorcorner2"; - pixel_x = 0 - }, -/obj/structure/sign/directions/roomnum{ - pixel_x = -31; - pixel_y = -9 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"ek" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"el" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4{ - dir = 4; - icon_state = "steel_decals_central4" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"em" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/door/airlock{ - id_tag = "talon_engdoor"; - name = "Engineer's Cabin"; - req_one_access = list(301) - }, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/tiled/steel_grid, -/area/talon/decktwo/eng_room) "en" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -2466,76 +901,10 @@ }, /turf/simulated/floor/wood, /area/talon/decktwo/eng_room) -"eq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/machinery/computer/ship/engines{ - dir = 1; - icon_state = "computer" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/tech) "er" = ( /obj/machinery/light/small, /turf/simulated/floor/carpet/blucarpet, /area/talon/decktwo/cap_room) -"es" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 2; - pixel_y = -28 - }, -/obj/structure/sign/directions/evac{ - pixel_y = -38 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/tech) -"et" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/tech) -"eu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/light/small, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/tech) "ev" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -2562,89 +931,6 @@ }, /turf/simulated/floor/wood, /area/talon/decktwo/pilot_room) -"ey" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/door/airlock{ - id_tag = "talon_pilotdoor"; - name = "Pilot's Cabin"; - req_one_access = list(301) - }, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/tiled/steel_grid, -/area/talon/decktwo/pilot_room) -"ez" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"eA" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"eB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_port) -"eC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) "eD" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -2708,28 +994,6 @@ }, /turf/simulated/floor/wood, /area/talon/decktwo/pilot_room) -"eL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"eM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_starboard) "eN" = ( /turf/simulated/wall/rpshull, /area/talon/decktwo/lifeboat) @@ -2745,53 +1009,13 @@ /turf/simulated/floor/tiled/techfloor, /area/talon/decktwo/lifeboat) "eQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 10; + icon_state = "intact-scrubbers" }, /obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_port) -"eR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/plating, -/area/talon/decktwo/central_hallway) -"eS" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) "eT" = ( /turf/simulated/wall, /area/talon/decktwo/med_room) @@ -2814,28 +1038,14 @@ /turf/simulated/floor/carpet, /area/talon/decktwo/med_room) "eX" = ( -/obj/machinery/computer/shuttle_control/explore/talon_lifeboat{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/firealarm{ dir = 4; - icon_state = "computer" + pixel_x = 26 }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/decktwo/lifeboat) -"eY" = ( -/obj/machinery/vending/wallmed1{ - emagged = 1; - pixel_y = 32; - shut_up = 0 - }, -/obj/item/weapon/bedsheet, -/obj/structure/bed/padded, -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/decktwo/lifeboat) +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) "eZ" = ( /turf/simulated/wall, /area/talon/decktwo/sec_room) @@ -2857,80 +1067,16 @@ /obj/item/modular_computer/laptop/preset/custom_loadout/standard/talon/security, /turf/simulated/floor/carpet, /area/talon/decktwo/sec_room) -"fd" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, +"fh" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"fe" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_starboard) -"ff" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_starboard) -"fj" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, +/turf/simulated/floor/plating/eris/under, /area/talon/maintenance/decktwo_port) -"fk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) "fl" = ( /obj/structure/cable/green{ icon_state = "0-2" @@ -2960,31 +1106,6 @@ }, /turf/simulated/floor/carpet, /area/talon/decktwo/med_room) -"fo" = ( -/obj/machinery/power/apc/talon/hyper{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/closet/crate/plastic, -/obj/item/clothing/suit/space/emergency, -/obj/item/device/flashlight, -/obj/item/weapon/storage/briefcase/inflatable, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/device/flashlight/glowstick, -/obj/item/device/flashlight/glowstick, -/obj/item/device/flashlight/glowstick, -/obj/item/weapon/storage/box/metalfoam, -/obj/item/weapon/tank/oxygen, -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/item/device/survivalcapsule/luxury, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/decktwo/lifeboat) "fp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -2995,25 +1116,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/talon/decktwo/lifeboat) -"fq" = ( -/obj/machinery/alarm/talon{ - alarm_id = "anomaly_testing"; - breach_detection = 0; - dir = 8; - frequency = 1439; - pixel_x = 22; - pixel_y = 0; - report_danger_level = 0 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/decktwo/lifeboat) "fr" = ( /obj/machinery/alarm/talon{ dir = 4; @@ -3043,41 +1145,15 @@ }, /turf/simulated/floor/carpet, /area/talon/decktwo/sec_room) -"fu" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 8; - pixel_x = 0 - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_starboard) "fx" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_port) -"fy" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_starboard) "fz" = ( /obj/structure/cable/green{ d1 = 1; @@ -3102,18 +1178,6 @@ /obj/machinery/suit_cycler/vintage/tmedic, /turf/simulated/floor/wood, /area/talon/decktwo/med_room) -"fC" = ( -/obj/machinery/camera/network/talon{ - dir = 4; - icon_state = "camera" - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/item/weapon/paper/talon_lifeboat, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/decktwo/lifeboat) "fD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -3121,20 +1185,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/talon/decktwo/lifeboat) -"fE" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/decktwo/lifeboat) "fF" = ( /obj/machinery/light/small{ dir = 8; @@ -3158,62 +1208,6 @@ }, /turf/simulated/floor/wood, /area/talon/decktwo/sec_room) -"fI" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_starboard) -"fJ" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_port) -"fK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"fL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/door/airlock{ - id_tag = "talon_meddoor"; - name = "Doctor's Cabin"; - req_one_access = list(301) - }, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/tiled/steel_grid, -/area/talon/decktwo/med_room) "fM" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -3239,12 +1233,10 @@ /turf/simulated/floor/wood, /area/talon/decktwo/med_room) "fP" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/decktwo/lifeboat) +/obj/structure/catwalk, +/obj/structure/loot_pile/maint/trash, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_port) "fQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -3258,14 +1250,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/talon/decktwo/lifeboat) -"fR" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/decktwo/lifeboat) "fS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -3292,67 +1276,27 @@ }, /turf/simulated/floor/wood, /area/talon/decktwo/sec_room) -"fV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, +"fY" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/door/airlock{ - id_tag = "talon_secdoor"; - name = "Guard's Cabin"; - req_one_access = list(301) - }, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/tiled/steel_grid, -/area/talon/decktwo/sec_room) -"fW" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"fX" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_starboard) -"fY" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4; - icon_state = "extinguisher_closed"; - pixel_x = -30 + icon_state = "intact-scrubbers" }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/command{ + id_tag = "talon_capdoor"; + name = "Talon Secure Airlock"; + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/talon/decktwo/cap_room) "fZ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -3403,35 +1347,6 @@ }, /turf/simulated/floor/wood, /area/talon/decktwo/sec_room) -"gf" = ( -/obj/machinery/door/firedoor/glass/talon/hidden{ - dir = 2 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"gg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass/talon/hidden{ - dir = 2 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) "gh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -3441,78 +1356,6 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/talon/maintenance/decktwo_aft) -"gi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass/talon/hidden{ - dir = 2 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"gj" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass/talon/hidden{ - dir = 2 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"gk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/machinery/camera/network/talon{ - dir = 9; - icon_state = "camera" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"gl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5; - icon_state = "intact-scrubbers" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"gm" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4; - icon_state = "borderfloorcorner2"; - pixel_y = 0 - }, -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) "gn" = ( /turf/simulated/open, /area/talon/maintenance/decktwo_aft) @@ -3523,95 +1366,12 @@ }, /turf/simulated/open, /area/talon/maintenance/decktwo_aft) -"gp" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 6 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) -"gq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) -"gt" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 5 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) "gu" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/open, /area/talon/maintenance/decktwo_aft) -"gv" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10; - icon_state = "borderfloorcorner2"; - pixel_x = 0 - }, -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"gw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"gx" = ( -/obj/machinery/alarm/talon{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"gy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"gz" = ( -/obj/machinery/door/firedoor/glass/talon/hidden, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4; - icon_state = "steel_decals5" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"gA" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) "gB" = ( /obj/structure/railing{ dir = 1 @@ -3637,66 +1397,6 @@ }, /turf/simulated/open, /area/talon/maintenance/decktwo_aft) -"gE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 10; - icon_state = "intact-scrubbers" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) -"gF" = ( -/obj/machinery/door/firedoor/glass/talon/hidden{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8; - icon_state = "steel_decals5" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"gG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm/talon{ - alarm_id = "anomaly_testing"; - breach_detection = 0; - dir = 8; - frequency = 1439; - pixel_x = 22; - pixel_y = 0; - report_danger_level = 0 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"gH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1; - icon_state = "pipe-t" - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"gI" = ( -/obj/structure/sign/deck2{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/talon/decktwo/central_hallway) "gJ" = ( /obj/structure/railing{ dir = 8 @@ -3716,78 +1416,21 @@ /obj/structure/lattice, /turf/simulated/open, /area/talon/maintenance/decktwo_aft) -"gM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals3, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"gN" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"gO" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"gP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"gQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"gR" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) "gS" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) +/obj/structure/catwalk, +/obj/machinery/airlock_sensor{ + dir = 1; + pixel_x = -28; + pixel_y = -28; + req_one_access = list(301) + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/machinery/atmospherics/pipe/simple/visible/aux{ + dir = 10; + icon_state = "intact-aux" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) "gT" = ( /obj/structure/railing, /turf/simulated/open, @@ -3807,142 +1450,9 @@ }, /turf/simulated/open, /area/talon/maintenance/decktwo_aft) -"gW" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass, -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"gX" = ( -/obj/machinery/alarm/talon{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_port) -"gY" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d2 = 8; - dir = 2; - icon_state = "0-8" - }, -/obj/machinery/power/apc/talon{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_port) "gZ" = ( /turf/simulated/wall, /area/talon/maintenance/decktwo_port) -"ha" = ( -/turf/simulated/floor/tiled/white, -/area/talon/decktwo/central_hallway) -"hb" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/talon/decktwo/central_hallway) -"hc" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) -"hd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 9 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) -"he" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) -"hf" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 5 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) -"hg" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) -"hh" = ( -/obj/machinery/cryopod/talon{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon/decktwo/central_hallway) -"hi" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/landmark/talon, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/talon/decktwo/central_hallway) -"hj" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_starboard) -"hk" = ( -/obj/machinery/alarm/talon{ - dir = 8; - pixel_x = 22; - pixel_y = 0 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_starboard) -"hl" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_port) -"hm" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/talon/decktwo/central_hallway) "hn" = ( /obj/structure/railing{ dir = 1 @@ -3960,82 +1470,22 @@ }, /turf/simulated/open, /area/talon/maintenance/decktwo_aft) -"hp" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 6 - }, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 8; - pixel_x = 0 - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) -"hq" = ( -/obj/machinery/computer/cryopod{ - pixel_x = 32 - }, -/obj/machinery/light/small, -/obj/effect/landmark/talon, -/turf/simulated/floor/tiled/steel_ridged, -/area/talon/decktwo/central_hallway) -"hr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_starboard) -"hs" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d2 = 8; - dir = 2; - icon_state = "0-8" - }, -/obj/machinery/power/apc/talon{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_starboard) "ht" = ( /turf/simulated/wall/rshull, /area/talon/maintenance/decktwo_aft) "hu" = ( /turf/simulated/wall, /area/talon/maintenance/decktwo_aft) -"hw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/disposalpipe/segment, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) "hx" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 6; - icon_state = "intact-aux" - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/plating/eris/under, +/area/talon/decktwo/central_hallway) "hy" = ( /obj/structure/railing{ dir = 8 @@ -4051,51 +1501,6 @@ /obj/structure/railing, /turf/simulated/open, /area/talon/maintenance/decktwo_aft) -"hB" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) -"hC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) -"hD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) "hE" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/zpipe/down/supply{ @@ -4121,17 +1526,19 @@ /turf/simulated/open, /area/talon/maintenance/decktwo_aft) "hL" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 10; - icon_state = "intact-scrubbers" +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 +/obj/structure/window/reinforced{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) +/obj/machinery/door/blast/regular/open{ + id = "talon_windows" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_port) "hO" = ( /obj/effect/overmap/visitable/ship/talon, /turf/space, @@ -4144,54 +1551,6 @@ /obj/structure/table/bench/wooden, /turf/simulated/floor/wood, /area/talon/decktwo/cap_room) -"hR" = ( -/obj/structure/ladder, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) -"hS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 5 - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/obj/effect/catwalk_plated, -/turf/simulated/floor/plating, -/area/talon/decktwo/central_hallway) -"hT" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/structure/sign/deck2{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"hU" = ( -/obj/structure/catwalk, -/obj/structure/loot_pile/maint/trash, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_port) -"hV" = ( -/obj/structure/catwalk, -/obj/structure/loot_pile/maint/trash, -/turf/simulated/floor/lino, -/area/talon/maintenance/decktwo_aft) -"hW" = ( -/obj/structure/loot_pile/maint/trash, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_starboard) "hX" = ( /obj/structure/railing, /obj/structure/railing{ @@ -4199,149 +1558,46 @@ }, /turf/simulated/open, /area/talon/maintenance/decktwo_aft) -"hY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 4; - icon_state = "intact-aux" - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) -"ia" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/talon{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) "ic" = ( /obj/structure/lattice, /obj/structure/railing, /turf/simulated/open, /area/talon/maintenance/decktwo_aft) -"id" = ( -/obj/machinery/airlock_sensor{ - dir = 4; - pixel_x = -28; - req_one_access = list(301) - }, -/obj/machinery/atmospherics/unary/vent_pump/aux{ - dir = 1; - icon_state = "map_vent_aux" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - dir = 8; - id_tag = "talon_aft_solar"; - pixel_x = 28; - req_one_access = list(301) - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) -"ie" = ( -/obj/effect/map_helper/airlock/door/ext_door, -/obj/machinery/door/airlock/glass_external{ - req_one_access = list(301) - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) -"ig" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/structure/sign/warning/falling{ - pixel_x = 31 - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) -"ih" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 9 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 10; - icon_state = "intact-aux" - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) -"ii" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 6; - icon_state = "intact-aux" - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) -"ij" = ( -/obj/machinery/atmospherics/portables_connector/aux{ - dir = 1; - icon_state = "map_connector-aux" - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) "ik" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/aux{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4; - icon_state = "intact-aux" + icon_state = "intact-scrubbers" }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + id_tag = "talon_engdoor"; + name = "Engineer's Cabin"; + req_one_access = list(301) + }, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/tiled/steel_grid, +/area/talon/decktwo/eng_room) "il" = ( -/obj/structure/catwalk, -/obj/machinery/airlock_sensor{ - dir = 1; - pixel_x = -28; - pixel_y = -28; - req_one_access = list(301) +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 }, -/obj/effect/map_helper/airlock/sensor/int_sensor, -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 10; - icon_state = "intact-aux" +/obj/machinery/alarm/talon{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) -"im" = ( -/obj/structure/catwalk, -/obj/machinery/light/small, -/obj/structure/sign/warning/airlock{ - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) -"in" = ( -/obj/effect/map_helper/airlock/door/int_door, -/obj/machinery/atmospherics/pipe/simple/visible/aux, -/obj/machinery/door/airlock/glass_external{ - req_one_access = list(301) - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) -"ip" = ( -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 8; - pixel_y = -26 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/decktwo/bridge_upper) +/obj/structure/table/standard, +/obj/item/weapon/paper/talon_shields, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/talon/decktwo/tech) "iq" = ( /obj/machinery/telecomms/allinone/talon{ id = "talon_aio"; @@ -4349,16 +1605,6 @@ }, /turf/simulated/floor/bluegrid, /area/talon/decktwo/tech) -"ir" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) "is" = ( /turf/simulated/open/vacuum, /area/space) @@ -4375,6 +1621,27 @@ }, /turf/simulated/floor/reinforced/airless, /area/talon/maintenance/decktwo_solars) +"iw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) +"ix" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1; + icon_state = "pipe-t" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) "iz" = ( /obj/machinery/power/tracker, /obj/structure/cable/yellow{ @@ -4387,26 +1654,20 @@ }, /turf/simulated/floor/reinforced/airless, /area/talon/maintenance/decktwo_solars) -"iJ" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 5; - icon_state = "intact-aux" +"iA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) -"iK" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 9; - icon_state = "intact-aux" +/obj/structure/cable/green{ + icon_state = "1-8" }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/talon/decktwo/tech) "iL" = ( /turf/simulated/open/vacuum, /area/talon/maintenance/decktwo_solars) @@ -4414,30 +1675,78 @@ /obj/machinery/ntnet_relay, /turf/simulated/floor/bluegrid, /area/talon/decktwo/tech) -"jD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" +"iV" = ( +/obj/machinery/computer/ship/engines{ + dir = 1; + icon_state = "computer" }, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/talon/decktwo/tech) +"jy" = ( +/obj/machinery/cryopod/talon{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/talon/decktwo/central_hallway) +"jz" = ( +/obj/structure/cable/green{ + d2 = 8; + dir = 2; + icon_state = "0-8" + }, +/obj/machinery/power/apc/talon{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/decktwo/bridge_upper) +"jI" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/landmark/talon, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/talon/decktwo/central_hallway) +"jK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/railing, +/obj/structure/table/standard, +/obj/item/device/bluespaceradio/talon_prelinked, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/talon/decktwo/tech) +"jQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"jV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-s" }, -/turf/simulated/floor/tiled/steel, +/turf/simulated/floor/tiled/eris/steel, /area/talon/decktwo/central_hallway) "kh" = ( /obj/structure/cable/green{ @@ -4445,19 +1754,139 @@ }, /turf/simulated/floor/wood, /area/talon/decktwo/bar) +"kn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) "kv" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall/rshull, /area/talon/maintenance/decktwo_aft) +"kO" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_starboard) +"kS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_port) +"la" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"lx" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_port) +"ly" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"lI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/light/small, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/talon/decktwo/tech) "lL" = ( /obj/machinery/power/solar, /obj/structure/cable/yellow, /turf/simulated/floor/plating/eris/under/airless, /area/talon/maintenance/decktwo_solars) +"lR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass{ + dir = 2 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/talon/decktwo/central_hallway) "mh" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) +"mm" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) +"mo" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_starboard) +"mr" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/talon{ + dir = 9; + icon_state = "camera" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) "mC" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -4467,24 +1896,122 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) -"mN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +"mD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5; + icon_state = "intact-scrubbers" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"mJ" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_starboard) +"mL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) +"mN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm/talon{ + alarm_id = "anomaly_testing"; + breach_detection = 0; + dir = 8; + frequency = 1439; + pixel_x = 22; + pixel_y = 0; + report_danger_level = 0 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"mR" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 2; + req_access = list(301) + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) +"mS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 +/obj/machinery/door/blast/regular/open{ + id = "talon_windows" }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 +/turf/simulated/floor/plating/eris/under, +/area/talon/decktwo/bar) +"mV" = ( +/obj/structure/cable/green{ + icon_state = "2-4" }, -/obj/machinery/oxygen_pump{ +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"nj" = ( +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/simple/visible/aux, +/obj/machinery/door/airlock/glass_external{ + req_one_access = list(301) + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) +"ns" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/firealarm{ dir = 4; - icon_state = "oxygen_tank"; - pixel_x = 30 + layer = 3.3; + pixel_x = 26 }, -/turf/simulated/floor/tiled/steel, +/turf/simulated/floor/tiled/eris/steel, /area/talon/decktwo/central_hallway) "nu" = ( /obj/structure/table/bench/wooden, @@ -4499,6 +2026,27 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) +"nI" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"nL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) "nR" = ( /obj/machinery/suit_cycler/vintage/tcaptain, /turf/simulated/floor/wood, @@ -4510,6 +2058,42 @@ }, /turf/simulated/wall, /area/talon/decktwo/bar) +"om" = ( +/obj/machinery/vending/boozeomat{ + density = 0; + pixel_y = 32; + req_access = list(301); + req_log_access = 301 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/talon/decktwo/bar) +"oA" = ( +/obj/machinery/atmospherics/portables_connector/aux{ + dir = 1; + icon_state = "map_connector-aux" + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) +"oJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2 + }, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/tiled/steel_grid, +/area/talon/decktwo/bar) "oX" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -4526,9 +2110,56 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) +"pb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/talon/decktwo/tech) "pi" = ( /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) +"pp" = ( +/obj/machinery/power/apc/talon{ + cell_type = /obj/item/weapon/cell/apc; + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/talon/decktwo/tech) +"pt" = ( +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + req_one_access = list(301) + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) +"pK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) "pY" = ( /obj/structure/cable/green{ d1 = 1; @@ -4541,6 +2172,37 @@ }, /turf/simulated/floor/wood, /area/talon/decktwo/bar) +"qa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/talon/decktwo/central_hallway) +"qb" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 5 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) +"qi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) "qG" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -4548,6 +2210,17 @@ }, /turf/simulated/wall/rshull, /area/talon/maintenance/decktwo_aft) +"qP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/sign/directions/roomnum{ + dir = 4; + icon_state = "roomnum"; + pixel_x = 32; + pixel_y = -9 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) "qW" = ( /obj/structure/cable/green{ d1 = 4; @@ -4574,6 +2247,27 @@ }, /turf/simulated/floor/tiled/techmaint, /area/talon/maintenance/decktwo_aft) +"re" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/aux{ + dir = 6; + icon_state = "intact-aux" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) +"rz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/vending/food{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/talon/decktwo/bar) "rA" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -4590,19 +2284,40 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) -"rE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 6 +"rB" = ( +/turf/simulated/floor/tiled/eris/white, +/area/talon/decktwo/central_hallway) +"rH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" }, -/obj/structure/catwalk, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "talon_lifeboatbay"; - pixel_x = 8; - pixel_y = 28; +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"rJ" = ( +/obj/machinery/airlock_sensor{ + dir = 4; + pixel_x = -28; req_one_access = list(301) }, -/turf/simulated/floor/plating, +/obj/machinery/atmospherics/unary/vent_pump/aux{ + dir = 1; + icon_state = "map_vent_aux" + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 8; + id_tag = "talon_aft_solar"; + pixel_x = 28; + req_one_access = list(301) + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/plating/eris/under, /area/talon/maintenance/decktwo_aft) "rQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -4615,6 +2330,43 @@ /obj/effect/shuttle_landmark/shuttle_initializer/talon_lifeboat, /turf/simulated/floor/tiled/techfloor, /area/talon/decktwo/lifeboat) +"rU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/weapon/stool/baystool/padded, +/turf/simulated/floor/tiled/eris/cafe, +/area/talon/decktwo/bar) +"rW" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/green{ + dir = 1; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/talon/decktwo/bar) +"sm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + id_tag = "talon_pilotdoor"; + name = "Pilot's Cabin"; + req_one_access = list(301) + }, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/tiled/steel_grid, +/area/talon/decktwo/pilot_room) "sn" = ( /obj/structure/cable/green{ icon_state = "0-2" @@ -4630,6 +2382,17 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) +"sv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/visible/aux{ + dir = 4; + icon_state = "intact-aux" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) "sx" = ( /obj/machinery/button/remote/airlock{ dir = 4; @@ -4640,23 +2403,59 @@ }, /turf/simulated/floor/wood, /area/talon/decktwo/cap_room) -"tx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"tC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ +"sy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ dir = 4 }, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/talon/decktwo/tech) +"sQ" = ( /obj/structure/catwalk, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_x = 1; - pixel_y = 32 +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_port) +"sX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/sign/department/bar{ + pixel_x = 29 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"tM" = ( +/obj/structure/loot_pile/maint/trash, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_starboard) +"tN" = ( +/obj/structure/table/steel, +/obj/item/weapon/paper/dockingcodes, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/decktwo/bridge_upper) +"tO" = ( +/obj/machinery/computer/cryopod{ + pixel_x = 32 + }, +/obj/machinery/light/small, +/obj/effect/landmark/talon, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/talon/decktwo/central_hallway) "tY" = ( /obj/structure/cable/yellow{ d2 = 8; @@ -4665,19 +2464,95 @@ /obj/machinery/power/solar, /turf/simulated/floor/plating/eris/under/airless, /area/talon/maintenance/decktwo_solars) -"uP" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ +"tZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 9 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/aux{ + dir = 10; + icon_state = "intact-aux" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) +"us" = ( +/obj/machinery/power/apc/talon/hyper{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/closet/crate/plastic, +/obj/item/clothing/suit/space/emergency, +/obj/item/device/flashlight, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/device/flashlight/glowstick, +/obj/item/device/flashlight/glowstick, +/obj/item/device/flashlight/glowstick, +/obj/item/weapon/storage/box/metalfoam, +/obj/item/weapon/tank/oxygen, +/obj/item/device/survivalcapsule/luxury, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon/decktwo/lifeboat) +"uz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4; icon_state = "intact-scrubbers" }, -/obj/structure/catwalk, -/obj/structure/sign/securearea{ - pixel_x = 0; - pixel_y = 30 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) -"vc" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + id_tag = "talon_secdoor"; + name = "Guard's Cabin"; + req_one_access = list(301) + }, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/tiled/steel_grid, +/area/talon/decktwo/sec_room) +"uA" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"uJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/talon/decktwo/central_hallway) +"uL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"uM" = ( +/obj/item/weapon/stool/baystool/padded, +/obj/machinery/camera/network/talon{ + dir = 6; + icon_state = "camera" + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/talon/decktwo/bar) +"uQ" = ( +/obj/machinery/chemical_dispenser/bar_soft/full{ + dir = 8 + }, +/obj/structure/table/marble, +/turf/simulated/floor/tiled/eris/cafe, +/area/talon/decktwo/bar) +"vi" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ @@ -4690,11 +2565,12 @@ id = "talon_windows" }, /obj/structure/cable/green{ - dir = 1; + d1 = 4; + d2 = 8; icon_state = "4-8" }, -/turf/simulated/floor/plating, -/area/talon/decktwo/bar) +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_port) "vj" = ( /obj/machinery/conveyor{ dir = 8; @@ -4707,6 +2583,23 @@ }, /turf/simulated/floor/tiled/techmaint, /area/talon/maintenance/decktwo_aft) +"vw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/structure/sign/directions/evac{ + pixel_y = -38 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) "vB" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -4714,6 +2607,11 @@ }, /turf/simulated/floor/wood, /area/talon/decktwo/bar) +"vC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) "vO" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -4730,6 +2628,43 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) +"vQ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"vW" = ( +/obj/structure/cable/green{ + dir = 1; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/talon/decktwo/bar) +"ws" = ( +/obj/machinery/alarm/talon{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_port) "wE" = ( /obj/structure/cable/green{ dir = 1; @@ -4769,29 +2704,42 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) -"xm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"xi" = ( +/obj/machinery/computer/shuttle_control/explore/talon_lifeboat{ dir = 4; - icon_state = "intact-scrubbers" + icon_state = "computer" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon/decktwo/lifeboat) +"xn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 5 }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) +"xv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"xB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/structure/sign/department/telecoms{ - pixel_y = -31 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" - }, -/turf/simulated/floor/tiled/steel, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, /area/talon/decktwo/central_hallway) "xV" = ( /obj/structure/cable/heavyduty{ @@ -4809,14 +2757,27 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) -"yb" = ( -/obj/structure/table/steel, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "talon_windows"; - name = "window blast shields" +"yd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" }, -/turf/simulated/floor/tiled/techfloor/grid, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) +"ym" = ( +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 8; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, /area/talon/decktwo/bridge_upper) "yF" = ( /obj/structure/disposalpipe/trunk{ @@ -4855,20 +2816,28 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) -"zm" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +"yK" = ( +/obj/structure/ladder, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) +"yL" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass/talon, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-s" +/obj/machinery/door/blast/regular/open{ + id = "talon_windows" }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_starboard) +/turf/simulated/floor/plating/eris/under, +/area/talon/decktwo/bridge_upper) +"yW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) "zs" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -4891,6 +2860,58 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) +"zv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 6 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) +"zB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating/eris/under, +/area/talon/decktwo/bar) +"zW" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/aux{ + dir = 5; + icon_state = "intact-aux" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) +"Af" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"As" = ( +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 1; + icon_state = "bay_comfychair_preview"; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/decktwo/bridge_upper) +"Az" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_starboard) "AA" = ( /obj/structure/sign/poster{ dir = 4; @@ -4898,32 +2919,145 @@ }, /turf/simulated/wall, /area/talon/maintenance/decktwo_starboard) +"AB" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) "AC" = ( /obj/structure/cable/green{ icon_state = "1-8" }, /turf/simulated/floor/wood, /area/talon/decktwo/bar) -"BC" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/machinery/camera/network/talon{ +"AD" = ( +/obj/machinery/alarm/talon{ dir = 4; - icon_state = "camera" + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/decktwo/bridge_upper) +"AE" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id = "talon_windows" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_starboard) +"AX" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 8; + pixel_x = 0 + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_starboard) +"Bb" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) +"Bd" = ( +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/decktwo/bridge_upper) +"Bv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/sign/warning/falling{ + pixel_x = 31 + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) "BL" = ( /obj/structure/cable/heavyduty{ icon_state = "2-4" }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) +"Ce" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/oxygen_pump{ + dir = 8; + icon_state = "oxygen_tank"; + pixel_x = -30 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"Cg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/talon/decktwo/tech) +"Ci" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_x = 1; + pixel_y = 32 + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) +"Cj" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon/decktwo/lifeboat) +"Cl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) "CB" = ( /obj/machinery/power/pointdefense{ id_tag = "talon_pd" @@ -4963,6 +3097,41 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) +"CN" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon/decktwo/lifeboat) +"CW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/talon/decktwo/tech) +"CZ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id = "talon_windows" + }, +/obj/structure/cable/green{ + dir = 1; + icon_state = "4-8" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/decktwo/bar) +"Db" = ( +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/talon/decktwo/tech) "Dk" = ( /obj/structure/cable/green{ d1 = 1; @@ -4977,6 +3146,21 @@ }, /turf/simulated/floor/wood, /area/talon/decktwo/bar) +"Dl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/item/weapon/stool/baystool/padded, +/turf/simulated/floor/tiled/eris/cafe, +/area/talon/decktwo/bar) +"Dr" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) "DT" = ( /obj/machinery/airlock_sensor{ pixel_x = -28; @@ -4997,6 +3181,16 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_aft) +"Ez" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) "EA" = ( /obj/machinery/conveyor{ dir = 8; @@ -5005,29 +3199,46 @@ }, /turf/simulated/floor/tiled/techmaint, /area/talon/maintenance/decktwo_aft) -"FD" = ( +"Fc" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor{ - dir = 4 +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/camera/network/talon{ - dir = 9; - icon_state = "camera" - }, -/turf/simulated/floor/tiled/steel, +/turf/simulated/floor/tiled/eris/steel, /area/talon/decktwo/central_hallway) +"Fu" = ( +/obj/structure/extinguisher_cabinet{ + dir = 4; + icon_state = "extinguisher_closed"; + pixel_x = -30 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"FA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/button/remote/blast_door{ + id = "talontrashblast"; + pixel_y = 28 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) "FF" = ( /obj/structure/cable/green{ d1 = 1; @@ -5039,31 +3250,72 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) +"FG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_port) +"FM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) "FT" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) -"Gq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ - dir = 8 +"Gi" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4; + icon_state = "pipe-t" }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10; - icon_state = "borderfloorcorner2"; - pixel_x = 0 +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"Gm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" }, -/obj/structure/sign/directions/roomnum{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/oxygen_pump{ dir = 1; - icon_state = "roomnum"; - pixel_x = -31; - pixel_y = -9 + icon_state = "oxygen_tank"; + pixel_y = -30 }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"Gq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/steel, /area/talon/decktwo/central_hallway) "GQ" = ( /obj/structure/cable/heavyduty{ @@ -5071,6 +3323,38 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) +"GX" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_starboard) +"Hs" = ( +/obj/structure/catwalk, +/obj/structure/loot_pile/maint/trash, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) +"HD" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_port) "HF" = ( /obj/structure/cable/yellow{ d2 = 4; @@ -5079,6 +3363,52 @@ /obj/machinery/power/solar, /turf/simulated/floor/plating/eris/under/airless, /area/talon/maintenance/decktwo_solars) +"HH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"HK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) +"HM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/computer/ship/helm{ + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/talon/decktwo/tech) +"HV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 9 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) +"HZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) "Ib" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -5102,6 +3432,17 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) +"Ie" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_starboard) "Iw" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -5113,63 +3454,231 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) -"IL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ - dir = 8 +"IB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 6 }, -/obj/machinery/oxygen_pump{ +/obj/structure/catwalk, +/obj/machinery/light/small{ dir = 8; - icon_state = "oxygen_tank"; - pixel_x = -30 + pixel_x = 0 }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, -/area/talon/decktwo/central_hallway) -"Jf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - id = "talon_windows" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/talon/decktwo/cap_room) -"JL" = ( +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) +"IO" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/floor_decal/borderfloor{ +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"IX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 +/obj/structure/sign/department/telecoms{ + pixel_y = -31 }, -/turf/simulated/floor/tiled/steel, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" + }, +/turf/simulated/floor/tiled/eris/steel, /area/talon/decktwo/central_hallway) +"Jd" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"Jh" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/structure/catwalk, +/obj/structure/sign/securearea{ + pixel_x = 0; + pixel_y = 30 + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) +"Jo" = ( +/obj/machinery/camera/network/talon{ + dir = 4; + icon_state = "camera" + }, +/obj/item/weapon/paper/talon_lifeboat, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon/decktwo/lifeboat) +"Ju" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/aux{ + dir = 9; + icon_state = "intact-aux" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) +"Jw" = ( +/obj/machinery/alarm/talon{ + dir = 8; + pixel_x = 22; + pixel_y = 0 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_starboard) +"JF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5; + icon_state = "intact-scrubbers" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/railing, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/talon/decktwo/tech) +"JG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"Ka" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/sign/directions/roomnum{ + pixel_x = -31; + pixel_y = -9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"KE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + id_tag = "talon_meddoor"; + name = "Doctor's Cabin"; + req_one_access = list(301) + }, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/tiled/steel_grid, +/area/talon/decktwo/med_room) +"KR" = ( +/obj/machinery/chemical_dispenser/bar_alc/full{ + dir = 8; + icon_state = "booze_dispenser" + }, +/obj/structure/table/marble, +/obj/structure/cable/green{ + dir = 1; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/talon/decktwo/bar) +"Ld" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 2; + pixel_y = -28 + }, +/obj/structure/sign/directions/evac{ + pixel_y = -38 + }, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/talon/decktwo/tech) "Lg" = ( /obj/effect/floor_decal/industrial/warning/dust, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) +"Lh" = ( +/obj/machinery/vending/wallmed1{ + emagged = 1; + pixel_y = 32; + shut_up = 0 + }, +/obj/item/weapon/bedsheet, +/obj/structure/bed/padded, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon/decktwo/lifeboat) "Lj" = ( /obj/structure/cable/heavyduty{ icon_state = "0-8" }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) +"Lm" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/command{ + name = "Talon Secure Airlock"; + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/talon/decktwo/cap_room) +"Lo" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_port) +"LH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 8; + pixel_x = 0 + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_starboard) +"Mk" = ( +/obj/structure/catwalk, +/obj/machinery/light/small, +/obj/structure/sign/warning/airlock{ + pixel_y = -32 + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) "Mn" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -5188,36 +3697,109 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) +"MF" = ( +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_starboard) +"MJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/talon/decktwo/tech) "MO" = ( /obj/structure/cable/heavyduty{ icon_state = "2-8" }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) -"MS" = ( +"MV" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_starboard) +"Nb" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + icon_state = "extinguisher_closed"; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"Ni" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"Nm" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/talon/decktwo/bar) +"Np" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon/decktwo/lifeboat) +"Nr" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/weapon/storage/dicecup/loaded, +/turf/simulated/floor/tiled/eris/cafe, +/area/talon/decktwo/bar) +"NE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ - dir = 4 +/obj/machinery/oxygen_pump{ + dir = 4; + icon_state = "oxygen_tank"; + pixel_x = 30 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/sign/directions/roomnum{ - dir = 8; - icon_state = "roomnum"; - pixel_x = 32; - pixel_y = -9 - }, -/turf/simulated/floor/tiled/steel, +/turf/simulated/floor/tiled/eris/steel, /area/talon/decktwo/central_hallway) -"Nc" = ( +"NT" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"NX" = ( /obj/machinery/conveyor_switch/oneway{ id = "talontrash" }, @@ -5230,8 +3812,20 @@ dir = 10; icon_state = "intact-scrubbers" }, -/turf/simulated/floor/plating, +/turf/simulated/floor/plating/eris/under, /area/talon/maintenance/decktwo_aft) +"NZ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/talon{ + dir = 10; + icon_state = "camera" + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/decktwo/bridge_upper) "Oc" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -5255,6 +3849,18 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) +"OC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/item/weapon/stool/baystool/padded, +/obj/structure/cable/green{ + dir = 1; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/talon/decktwo/bar) "OO" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -5271,31 +3877,51 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) +"OR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/sign/directions/roomnum{ + dir = 1; + icon_state = "roomnum"; + pixel_x = -31; + pixel_y = -9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) "OS" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) -"Px" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - id = "talon_windows" - }, +"OY" = ( +/obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 4; d2 = 8; - icon_state = "4-8" + dir = 2; + icon_state = "0-8" }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_port) +/obj/machinery/power/apc/talon{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_starboard) +"Pb" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"Pp" = ( +/obj/structure/sign/department/commander{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) "PA" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -5306,35 +3932,78 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) +"PD" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/decktwo/bridge_upper) +"PG" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/eris/white, +/area/talon/decktwo/central_hallway) +"PS" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) "PX" = ( /obj/structure/cable/heavyduty{ icon_state = "1-4" }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) +"Qi" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d2 = 8; + dir = 2; + icon_state = "0-8" + }, +/obj/machinery/power/apc/talon{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_port) "Qm" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass/talon, /turf/simulated/floor/plating, /area/talon/maintenance/decktwo_aft) -"QF" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, +"Qt" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass/talon, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + d1 = 1; + d2 = 2; + icon_state = "1-2" }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_port) +"QA" = ( /obj/structure/catwalk, -/obj/machinery/button/remote/blast_door{ - id = "talontrashblast"; - pixel_y = 28 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_starboard) "QJ" = ( /obj/machinery/power/solar, /obj/structure/cable/yellow{ @@ -5343,6 +4012,33 @@ }, /turf/simulated/floor/plating/eris/under/airless, /area/talon/maintenance/decktwo_solars) +"QM" = ( +/obj/machinery/alarm/talon{ + alarm_id = "anomaly_testing"; + breach_detection = 0; + dir = 8; + frequency = 1439; + pixel_x = 22; + pixel_y = 0; + report_danger_level = 0 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon/decktwo/lifeboat) +"Rm" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/vending/nifsoft_shop, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/decktwo/central_hallway) "Rv" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 1 @@ -5375,6 +4071,46 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) +"RD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/aux{ + dir = 6; + icon_state = "intact-aux" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) +"RH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/talon/decktwo/tech) +"RQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" + }, +/obj/machinery/door/firedoor/glass{ + dir = 2 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/talon/decktwo/central_hallway) "Sb" = ( /obj/machinery/power/pointdefense{ id_tag = "talon_pd" @@ -5390,19 +4126,53 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) -"Se" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon/decktwo/bridge_upper) "SU" = ( /obj/effect/landmark/start{ name = "Talon Captain" }, /turf/simulated/floor/carpet/blucarpet, /area/talon/decktwo/cap_room) +"SV" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm/talon{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_port) +"Tg" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/talon{ + dir = 9; + icon_state = "camera" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"Tn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) "Tz" = ( /obj/machinery/light/small{ dir = 1 @@ -5412,6 +4182,21 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_aft) +"TA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) "TC" = ( /obj/structure/sign/poster{ dir = 8; @@ -5419,6 +4204,40 @@ }, /turf/simulated/wall, /area/talon/decktwo/central_hallway) +"TM" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"TX" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"TY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating/eris/under, +/area/talon/decktwo/central_hallway) "Uf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -5439,6 +4258,20 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) +"Ul" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 6 + }, +/obj/structure/catwalk, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "talon_lifeboatbay"; + pixel_x = 8; + pixel_y = 28; + req_one_access = list(301) + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) "Us" = ( /obj/structure/cable/heavyduty{ dir = 2; @@ -5471,6 +4304,26 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) +"UJ" = ( +/obj/machinery/camera/network/talon{ + dir = 4; + icon_state = "camera" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"UQ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + icon_state = "extinguisher_closed"; + pixel_x = -30 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) "UW" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -5487,6 +4340,60 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) +"UY" = ( +/turf/simulated/floor/tiled/eris/cafe, +/area/talon/decktwo/bar) +"Va" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"Vg" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/talon/decktwo/central_hallway) +"Vu" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id = "talon_windows" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/decktwo/cap_room) +"Vz" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/aux{ + dir = 4; + icon_state = "intact-aux" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) +"VH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) "VV" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -5494,6 +4401,35 @@ }, /turf/simulated/wall/rshull, /area/talon/maintenance/decktwo_aft) +"VZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/cafe, +/area/talon/decktwo/bar) +"Wa" = ( +/obj/machinery/computer/ship/navigation, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/talon/decktwo/bridge_upper) +"WD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/talon{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) +"WG" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) "WO" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -5502,12 +4438,29 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) +"WS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/weapon/stool/baystool/padded, +/turf/simulated/floor/tiled/eris/cafe, +/area/talon/decktwo/bar) "WZ" = ( /obj/structure/cable/green{ icon_state = "4-8" }, /turf/simulated/floor/wood, /area/talon/decktwo/cap_room) +"Xa" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) "Xg" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -5524,25 +4477,13 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) -"Xh" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ +"Xi" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, -/obj/machinery/door/blast/regular/open{ - id = "talon_windows" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_starboard) +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) "Xn" = ( /obj/structure/cable/yellow{ d2 = 8; @@ -5554,23 +4495,40 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) -"Xp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ - dir = 4 +"Xs" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 +/obj/structure/cable/green{ + icon_state = "2-4" }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, -/turf/simulated/floor/tiled/steel, +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"XU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/talon/decktwo/central_hallway) +"XY" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, /area/talon/decktwo/central_hallway) "Yc" = ( /obj/effect/floor_decal/industrial/warning/dust{ @@ -5578,6 +4536,80 @@ }, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) +"Yh" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_aft) +"Yv" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"Yz" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm/talon{ + dir = 8; + pixel_x = 22; + pixel_y = 0 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_starboard) +"YA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/structure/sign/department/shield{ + pixel_y = -31 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-s" + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"YD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/sign/directions/roomnum{ + dir = 8; + icon_state = "roomnum"; + pixel_x = 32; + pixel_y = -9 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"YE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) "YH" = ( /obj/structure/cable/yellow, /obj/machinery/power/solar, @@ -5590,33 +4622,51 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/hull/airless, /area/talon/maintenance/decktwo_solars) -"Zd" = ( -/obj/structure/cable/green{ - dir = 1; - icon_state = "4-8" +"Zm" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 }, -/turf/simulated/floor/lino, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"Zn" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/eris/cafe, /area/talon/decktwo/bar) +"Zp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) +"Zt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id = "talon_windows" + }, +/turf/simulated/floor/plating/eris/under, +/area/talon/maintenance/decktwo_starboard) "ZF" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" +/obj/machinery/light{ + dir = 4 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/turf/simulated/floor/tiled/eris/cafe, +/area/talon/decktwo/bar) +"ZW" = ( +/obj/structure/sign/deck2{ + pixel_y = 28 }, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/door/window/brigdoor/eastleft{ - dir = 2; - req_access = list(301) - }, -/turf/simulated/floor/plating, -/area/talon/maintenance/decktwo_aft) +/turf/simulated/floor/tiled/eris/steel, +/area/talon/decktwo/central_hallway) (1,1,1) = {" aa @@ -13787,8 +12837,8 @@ cb cb cb cb -Px -bl +vi +hL cb cb cb @@ -13919,31 +12969,31 @@ CL YH cb ch -cx -cH -cY -cY -cY -dJ -cY -cY -eB -cY -eQ -fj -fx -fJ -fx -fx -fx -fx -fx -fx -fx -gX -hl +HD +kS +dm +dm +dm +SV +dm +dm +fh +dm +FG +sQ +lx +Qt +lx +lx +lx +lx +lx +lx +lx +ws +Lo hu -hV +Hs hE ht pi @@ -14071,7 +13121,7 @@ cc cc cc TC -eR +hx cc cc cc @@ -14082,11 +13132,11 @@ cc cc cc cc -gY -hU +Qi +fP hu -gp -hd +zv +HV ht ao zs @@ -14204,31 +13254,31 @@ pi cb ci cc -cI -cZ -dp -dx -dK -dx -ek -dx -dx -eS -fk -fy -fK -fY -gf -BC -gx -gH -gO +mV +ly +UQ +TX +nI +TX +XY +TX +TX +Jd +aB +IO +nL +Fu +XU +UJ +cP +ix +dE cc gZ gZ hu -gq -he +WG +mm ht ao zs @@ -14337,8 +13387,8 @@ ap ap ap ap -Jf -ba +Vu +dw ap ap ap @@ -14346,31 +13396,31 @@ ap cb cj cc -cJ -da -dq -dq -dq -dY -el -eC -mN -Xp -dq -MS -el -eC -gg -gl -gy -gM -gP -gS -ha -ha +au +jV +vC +vC +vC +qP +Cl +vC +NE +eX +vC +YD +Cl +vC +uJ +mD +JG +JG +YE +uA +rB +rB Qm -gq -he +WG +mm ht ao zs @@ -14488,31 +13538,31 @@ aC aC cc cc -cK -db +lR +RQ dr dr dr dr -em +ik dr dr eT eT eT -fL +KE eT eT -gm -gz -gz -gz +FM +at +at +at cc -hb -hm +PG +aH hu -hx -ij +RD +oA ht ao zs @@ -14630,8 +13680,8 @@ aM aC ck cy -cL -dc +NT +Gm dr dy dL @@ -14647,13 +13697,13 @@ fZ eT cc cc -gI +cB cc cc cc cc hu -hY +sv hu ht ao @@ -14772,8 +13822,8 @@ aK aC cl cz -cM -dd +kn +jQ dr dz dM @@ -14792,11 +13842,11 @@ gn gn gn gT -hp -hc -hc -ih -iJ +IB +yW +yW +tZ +zW ht ao zs @@ -14914,8 +13964,8 @@ bR aC cl cz -cN -de +NT +qi dr dA dN @@ -14934,11 +13984,11 @@ gn gn gn gT -gq +WG gB gu hy -ik +Vz ht ao zs @@ -15042,9 +14092,9 @@ ae ae ae aj -aq -Se -aB +AD +PD +Lm aM sx bd @@ -15056,8 +14106,8 @@ er aC cm cz -cO -df +Fc +cR dr dr dr @@ -15076,11 +14126,11 @@ go go go gU -gq +WG gC gn hX -ik +Vz ht ao zs @@ -15184,12 +14234,12 @@ ae ae ae ak -ip +ym ac aC aC aC -be +fY aC aC aC @@ -15198,13 +14248,13 @@ aC aC cl cA -cN -jD +NT +bF ds -dB -dO -dS -eq +il +pp +Db +iV ds eN eN @@ -15213,16 +14263,16 @@ eN eN eN hu -rE -hc -hc -hc -hc -hd +Ul +yW +yW +yW +yW +HV hn ic -ii -iK +re +Ju ht ao zs @@ -15320,50 +14370,50 @@ aa aa aa aa -ad +yL ae ae ae ag -al -ar +tN +Bd ac -aD -aN -aU -bf -bp -bw -bF -bw -bS +bj +at +at +vQ +Pp +at +Dr +at +Gi cc -cn -cB -cP -dg +ZW +at +NT +vw ds -dC -dP -ec -es +HM +iA +RH +Ld ds eN -eX -fo -fC -fP +xi +us +Jo +Cj eN hu -tC +Ci gB gJ gu gV -he +mm gC gT -ik +Vz ht ht ht @@ -15462,33 +14512,33 @@ aa aa aa aa -ad +yL ae ae af -ah -am -as +Wa +As +dX ay -aE -aO -aV -bg -aV -FD -bG -bN -bT +Rm +Gq +Gq +Af +Gq +mr +sX +Tn +Xs cd -co -cC -cQ -dh +xv +xB +cL +Yv dt -dD -dQ +MJ +JF ed -et +pb eH eO rQ @@ -15497,18 +14547,18 @@ fD fQ Ib gh -gt +qb gC gK gn gT -he +mm gC gT -il -in -id -ie +gS +nj +rJ +pt DT pi My @@ -15604,50 +14654,50 @@ aa aa aa aa -ad +yL ae ae ae ai -yb +dQ +NZ +aw +aw +aw +zB +zB +zB +aw +aw +Nm +oJ +aw +ZW at -aw -aw -aw -aW -aW -aW -aw -aw -bO -bU -aw -hT -cD -cR -di +NT +YA ds -dE -dR -ee -eu +Cg +CW +sy +lI ds eN -eY -fq -fE -fR +Lh +QM +Np +CN eN hu -uP +Jh gD gL go gU -he +mm gC gT -im +Mk ht VV kv @@ -15752,7 +14802,7 @@ ae ae ae ai -au +jz aw aF aP @@ -15766,10 +14816,10 @@ bV aw cl cE -cN -xm +NT +IX ds -dF +jK iq ef iM @@ -15781,16 +14831,16 @@ eN eN eN hu -gE -hg -hg -hg -hg -hf +eQ +HK +HK +HK +HK +xn hn ic -he -he +mm +mm wW ao oX @@ -15908,8 +14958,8 @@ bW aw cm cz -cN -de +NT +qi du du du @@ -15928,11 +14978,11 @@ gu gu gu gV -gA +iw gC gn gV -he +mm wW ao oX @@ -16038,20 +15088,20 @@ ac ac aw aw -aH -aR -aY -bh -br -by +uM +Dl +rU +OC +WS +VZ bI Uf -bX +rz aw cl cz -cN -de +NT +qi du dG dT @@ -16070,11 +15120,11 @@ gn gn gn gT -gA +iw ho go hz -he +mm wW ao oX @@ -16180,20 +15230,20 @@ ab ab ax ol -aI -aS -aI -bi -aI -bz +Zn +Nr +Zn +rW +Zn +UY aQ vB -bY +aV aw cl cz -cS -dj +HH +rH du dH dU @@ -16212,11 +15262,11 @@ gn gn gn gT -hL -ia -ig -ir -hR +bT +WD +Bv +Ez +yK wW ao oX @@ -16322,20 +15372,20 @@ aa aa ax aw -aJ -aT -aZ -Zd -aZ -bA +om +ZF +UY +vW +UY +ZF bJ bP -bZ +cn aw ck cy -cT -dk +NT +Gm du dI dV @@ -16351,13 +15401,13 @@ ge eZ cc cc -gI +cB cc cc cc cc hu -hB +Bb hu wW ao @@ -16467,8 +15517,8 @@ aw aw aw aw -bj -bs +KR +uQ aw aw aw @@ -16476,30 +15526,30 @@ aw aw cc cc -cU -dl +lR +RQ du du du du -ey +sm du du eZ eZ eZ -fV +uz eZ eZ -gv -gF -gF -gF +Xi +at +at +at cc -hh -hh +jy +jy hu -hC +yd rb qG ao @@ -16609,39 +15659,39 @@ ax ax ax ax -vc -bk +CZ +mS ax ax bQ -hW -ca +tM +MF cp cc -cV -dm -dv -dv -dv -ej -ez -eL -IL -dv -dv -Gq -ez -eL -gi -gw -tx -hS -gQ -gW -hi -hq +au +HZ +Va +Va +Va +Ka +TA +Va +Ce +Va +Va +OR +TA +Va +qa +Zp +Ni +TY +pK +VH +jI +tO hu -QF +FA vj ht ao @@ -16756,34 +15806,34 @@ pi pi pi bQ -ca -ca +MF +MF cq cc -cW -dn -dw -dn -dW -dn -eA -JL -dn -fd -dW -dn -fW -dw -gj -gk -gG -gN -gR +Pb +uL +Nb +uL +la +uL +Xa +ns +uL +TM +la +uL +AB +Nb +Vg +Tg +mN +PS +Zm cF -zm +GX cF hu -ZF +mR EA ht ao @@ -16911,7 +15961,7 @@ cF cF cF AA -fe +kO cF cF cF @@ -16922,10 +15972,10 @@ cF cF cF cF -hj -hr -hw -hD +Ie +mo +Yh +mL yF ht ao @@ -17043,31 +16093,31 @@ Us YH bQ cr -cG -cX -do -do -do -dX -do -do -eM -do -ff -fu -fI -fX -fI -fI -fI -fI -fI -fI -fI -hk -hs +MV +LH +fx +fx +fx +Yz +fx +fx +cv +fx +mJ +AX +QA +Az +QA +QA +QA +QA +QA +QA +QA +Jw +OY hu -Nc +NX hF ht pi @@ -17195,8 +16245,8 @@ bQ bQ bQ bQ -Xh -bt +AE +Zt bQ bQ bQ From ce3db722d7186e77d25df6958d7d944a3536cd6a Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Thu, 28 May 2020 11:42:27 -0400 Subject: [PATCH 09/38] Add is_plating feature to flooring --- code/game/turfs/flooring/flooring.dm | 1 + code/game/turfs/simulated/floor.dm | 7 +++++-- code/game/turfs/simulated/floor_types_eris.dm | 6 +++--- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/code/game/turfs/flooring/flooring.dm b/code/game/turfs/flooring/flooring.dm index 8608cb8ce1..5c6888d8c9 100644 --- a/code/game/turfs/flooring/flooring.dm +++ b/code/game/turfs/flooring/flooring.dm @@ -45,6 +45,7 @@ var/list/flooring_types var/can_paint var/list/footstep_sounds = list() // key=species name, value = list of sounds, // For instance, footstep_sounds = list("key" = list(sound.ogg)) + var/is_plating = FALSE /decl/flooring/grass name = "grass" diff --git a/code/game/turfs/simulated/floor.dm b/code/game/turfs/simulated/floor.dm index 89962bb15a..238bbf085a 100644 --- a/code/game/turfs/simulated/floor.dm +++ b/code/game/turfs/simulated/floor.dm @@ -33,7 +33,9 @@ var/lava = 0 /turf/simulated/floor/is_plating() - return !flooring + if(!flooring || flooring.is_plating) + return TRUE + return FALSE /turf/simulated/floor/Initialize(mapload, floortype) . = ..() @@ -95,8 +97,9 @@ update_icon(1) /turf/simulated/floor/levelupdate() + var/floored_over = !is_plating() for(var/obj/O in src) - O.hide(O.hides_under_flooring() && src.flooring) + O.hide(O.hides_under_flooring() && floored_over) /turf/simulated/floor/rcd_values(mob/living/user, obj/item/weapon/rcd/the_rcd, passed_mode) switch(passed_mode) diff --git a/code/game/turfs/simulated/floor_types_eris.dm b/code/game/turfs/simulated/floor_types_eris.dm index 1eecacb5c4..5c1d3cba3e 100644 --- a/code/game/turfs/simulated/floor_types_eris.dm +++ b/code/game/turfs/simulated/floor_types_eris.dm @@ -872,11 +872,11 @@ flags = TURF_REMOVE_WRENCH | TURF_HAS_CORNERS | TURF_HAS_EDGES | TURF_CAN_BURN | TURF_CAN_BREAK can_paint = 1 has_base_range = 18 + is_plating = TRUE //build_type = /obj/item/stack/material/steel /* Eris features we lack on flooring decls plating_type = /decl/flooring/reinforced/plating/under - is_plating = TRUE footstep_sound = "plating" space_smooth = FALSE removal_time = 150 @@ -908,12 +908,12 @@ icon_base = "under" flags = TURF_HAS_CORNERS | TURF_HAS_EDGES | TURF_CAN_BURN | TURF_CAN_BREAK has_base_range = 0 + is_plating = TRUE //build_type = /obj/item/stack/material/underplating /* Eris features we lack on flooring decls plating_type = /decl/flooring/reinforced/plating/hull - is_plating = TRUE removal_time = 250 health = 200 resistance = RESISTANCE_ARMOURED @@ -941,11 +941,11 @@ flags = TURF_HAS_EDGES | TURF_HAS_CORNERS | TURF_REMOVE_WRENCH | TURF_CAN_BURN | TURF_CAN_BREAK build_type = /obj/item/stack/material/plasteel has_base_range = 35 + is_plating = FALSE /* Eris features we lack on flooring decls try_update_icon = 0 plating_type = null - is_plating = TRUE health = 350 resistance = RESISTANCE_HEAVILY_ARMOURED removal_time = 1 MINUTES //Cutting through the hull is very slow work From ad820c6bc5c87018f72ee3210244a29edc5742d8 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Thu, 28 May 2020 12:56:00 -0400 Subject: [PATCH 10/38] Make being disconnected painfully obvious --- code/modules/client/client procs.dm | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/code/modules/client/client procs.dm b/code/modules/client/client procs.dm index a97c449115..335e74e9e3 100644 --- a/code/modules/client/client procs.dm +++ b/code/modules/client/client procs.dm @@ -332,8 +332,7 @@ if (config.panic_bunker && !holder && !deadmin_holder) log_adminwarn("Failed Login: [key] - New account attempting to connect during panic bunker") message_admins("Failed Login: [key] - New account attempting to connect during panic bunker") - to_chat_immediate(src, "Sorry but the server is currently not accepting connections from never before seen players.") - qdel(src) + disconnect_with_message("Sorry but the server is currently not accepting connections from never before seen players.") return 0 // IP Reputation Check @@ -351,12 +350,10 @@ //Take action if required if(config.ipr_block_bad_ips && config.ipr_allow_existing) //We allow players of an age, but you don't meet it - to_chat_immediate(src, "Sorry, we only allow VPN/Proxy/Tor usage for players who have spent at least [config.ipr_minimum_age] days on the server. If you are unable to use the internet without your VPN/Proxy/Tor, please contact an admin out-of-game to let them know so we can accommodate this.") - qdel(src) + disconnect_with_message("Sorry, we only allow VPN/Proxy/Tor usage for players who have spent at least [config.ipr_minimum_age] days on the server. If you are unable to use the internet without your VPN/Proxy/Tor, please contact an admin out-of-game to let them know so we can accommodate this.") return 0 else if(config.ipr_block_bad_ips) //We don't allow players of any particular age - to_chat_immediate(src, "Sorry, we do not accept connections from users via VPN/Proxy/Tor connections. If you believe this is in error, contact an admin out-of-game.") - qdel(src) + disconnect_with_message("Sorry, we do not accept connections from users via VPN/Proxy/Tor connections. If you believe this is in error, contact an admin out-of-game.") return 0 else log_admin("Couldn't perform IP check on [key] with [address]") @@ -528,3 +525,9 @@ client/verb/character_setup() else ip_reputation = score return TRUE + +/client/proc/disconnect_with_message(var/message = "You have been intentionally disconnected by the server.
This may be for security or administrative reasons.") + message = "You Have Been Disconnected
[message]


If you feel this is in error, you can contact an administrator out-of-game (for example, on Discord)." + window_flash(src) + src << browse(message,"window=dropmessage;size=480x360;can_close=1") + qdel(src) From dacacf8bc81836ff4d04c59b07793f63530ac415 Mon Sep 17 00:00:00 2001 From: Unknown Date: Thu, 28 May 2020 14:06:21 -0400 Subject: [PATCH 11/38] Localization updates --- code/modules/clothing/head/solgov_vr.dm | 240 ++++++++++++++++------- code/modules/clothing/suits/solgov_vr.dm | 207 +++++++++++++------ code/modules/clothing/under/solgov_vr.dm | 135 ++++++++----- 3 files changed, 397 insertions(+), 185 deletions(-) diff --git a/code/modules/clothing/head/solgov_vr.dm b/code/modules/clothing/head/solgov_vr.dm index 0a9ddd2c41..d1b7b50bdb 100644 --- a/code/modules/clothing/head/solgov_vr.dm +++ b/code/modules/clothing/head/solgov_vr.dm @@ -1,172 +1,268 @@ //SolGov uniform hats //Utility -/obj/item/clothing/head/soft/sol +/obj/item/clothing/head/soft/solgov name = "\improper SolCom cap" desc = "It's a blue ballcap in Terran Commonwealth Government colors." -/obj/item/clothing/head/soft/sol/expedition +/obj/item/clothing/head/soft/solgov/veteranhat + name = "veteran hat" + desc = "It's a tacky black ballcap bearing the yellow service ribbon of the Gaia Conflict." + +/obj/item/clothing/head/soft/solgov/sifguard name = "\improper NDF cap" desc = "It's a black ballcap bearing a Nanotrasen Defense Force crest." -/obj/item/clothing/head/soft/sol/fleet +/obj/item/clothing/head/soft/solgov/sifguard/co + name = "\improper NDF captain's cap" + desc = "It's a black ballcap bearing the Nanotrasen Defense Force crest. The brim has gold trim." + +/obj/item/clothing/head/soft/solgov/fleet name = "fleet cap" desc = "It's a navy blue ballcap with a TCG Fleet crest." -/obj/item/clothing/head/utility - name = "utility cover" - desc = "An eight-point utility cover." - /obj/item/clothing/head/utility/fleet name = "fleet utility cover" desc = "A navy blue utility cover bearing the crest of a TCG Fleet." -/obj/item/clothing/head/utility/marine +/obj/item/clothing/head/utility/army name = "marine utility cover" - desc = "A grey utility cover bearing the crest of the TCG Marine Corps." + desc = "A green utility cover bearing the crest of the TCG Marines." -/obj/item/clothing/head/utility/marine/tan +/obj/item/clothing/head/utility/army/tan name = "tan utility cover" - desc = "A tan utility cover bearing the crest of the TCG Marine Corps." + desc = "A tan utility cover bearing the crest of the TCG Marines." -/obj/item/clothing/head/utility/marine/green - name = "green utility cover" - desc = "A green utility cover bearing the crest of the TCG Marine Corps." - -/obj/item/clothing/head/utility/marine/green/officer // "And YOU told me you were gonna wear something nice!" - name = "\improper officer's cap" - desc = "A green utility cover bearing the crest of the TCG Marine Corps. This one has an officer's emblem." - icon_state = "UNSCsoft" - icon = 'icons/obj/clothing/hats_vr.dmi' - icon_override = 'icons/mob/head_vr.dmi' +/obj/item/clothing/head/utility/army/urban + name = "urban utility cover" + desc = "A grey utility cover bearing the crest of the TCG Marines." //Service +/obj/item/clothing/head/service/sifguard + name = "\improper NDF peaked cap" + desc = "A peaked black uniform cap belonging to the Nanotrasen Defense Force Corps." -/obj/item/clothing/head/service - name = "service cover" - desc = "A service uniform cover." +/obj/item/clothing/head/service/sifguard/command + name = "\improper NDF officer's peaked cap" + desc = "A peaked black uniform cap belonging to the Nanotrasen Defense Force. This one is trimmed in gold." -/obj/item/clothing/head/service/marine +/obj/item/clothing/head/service/sifguard/captain + name = "\improper NDF captain's peaked cap" + desc = "A gold-trimmed peaked black uniform cap belonging to a Captain of the Nanotrasen Defense Force." + +/obj/item/clothing/head/service/sifguard/senior_command + name = "senior NDF officer's peaked cap" + desc = "A peaked grey uniform cap belonging to the Nanotrasen Defense Force. This one is trimmed in gold and blue." + +/obj/item/clothing/head/service/army name = "marine wheel cover" - desc = "A green service uniform cover with an TCG Marine Corps crest." + desc = "A green service uniform cover with an TCG Marine crest." -/obj/item/clothing/head/service/marine/command +/obj/item/clothing/head/service/army/command name = "marine officer's wheel cover" - desc = "A green service uniform cover with an TCG Marine Corps crest and gold stripe." + desc = "A green service uniform cover with an TCG Marine crest and gold stripe." -/obj/item/clothing/head/service/marine/garrison +/obj/item/clothing/head/service/army/garrison name = "marine garrison cap" - desc = "A green garrison cap belonging to the TCG Marine Corps." + desc = "A green garrison cap belonging to the TCG Marine." -/obj/item/clothing/head/service/marine/garrison/command +/obj/item/clothing/head/service/army/garrison/command name = "marine officer's garrison cap" - desc = "A green garrison cap belonging to the TCG Marine Corps. This one has a gold pin." + desc = "A green garrison cap belonging to the TCG Marine. This one has a gold pin." -/obj/item/clothing/head/service/marine/campaign +/obj/item/clothing/head/service/army/campaign name = "campaign cover" - desc = "A green campaign cover with an TCG Marine Corps crest. Only found on the heads of Drill Instructors." - icon_state = "greendrill" + desc = "A green campaign cover with an TCG Marine crest. Only found on the heads of Drill Sergeants." //Dress - -/obj/item/clothing/head/dress/expedition - name = "\improper NDF dress cap" - desc = "A peaked grey dress uniform cap belonging to the Nanotrasen Defense Force." - -/obj/item/clothing/head/dress/expedition/command - name = "\improper NDF command dress cap" - desc = "A peaked grey dress uniform cap belonging to the Nanotrasen Defense Force. This one is trimmed in gold." +/obj/item/clothing/head/dress/fleet/garrison + name = "fleet garrison cap" + desc = "A white dress uniform cap. The classic sailor's choice." /obj/item/clothing/head/dress/fleet name = "fleet dress wheel cover" desc = "A white dress uniform cover. This one has an TCG Fleet crest." /obj/item/clothing/head/dress/fleet/command - name = "fleet command dress wheel cover" + name = "fleet officer's dress wheel cover" desc = "A white dress uniform cover. This one has a gold stripe and an TCG Fleet crest." -/obj/item/clothing/head/dress/marine +/obj/item/clothing/head/dress/army name = "marine dress wheel cover" - desc = "A white dress uniform cover with an TCG Marine Corps crest." + desc = "A white dress uniform cover with an TCG Marine crest." -/obj/item/clothing/head/dress/marine/command +/obj/item/clothing/head/dress/army/command name = "marine officer's dress wheel cover" - desc = "A white dress uniform cover with an TCG Marine Corps crest and gold stripe." - -/obj/item/clothing/head/dress/marine/command/admiral - name = "admiral's dress wheel cover" - desc = "A white dress uniform cover with an TCG Navy crest and gold stripe." + desc = "A white dress uniform cover with an TCG Marine crest and gold stripe." //Berets -/obj/item/clothing/head/beret/sol +/obj/item/clothing/head/beret/solgov name = "peacekeeper beret" - desc = "A beret in Terran Commonwealth colors. For peacekeepers that are more inclined towards style than safety." + desc = "A beret in Terran Commonwealth Government colors. For peacekeepers that are more inclined towards style than safety." -/obj/item/clothing/head/beret/sol/gateway +/obj/item/clothing/head/beret/solgov/homeguard + name = "home guard beret" + desc = "A red beret denoting service in the Sol Home Guard. For personnel that are more inclined towards style than safety." + +/obj/item/clothing/head/beret/solgov/gateway name = "gateway administration beret" desc = "An orange beret denoting service in the Gateway Administration. For personnel that are more inclined towards style than safety." -/obj/item/clothing/head/beret/sol/customs +/obj/item/clothing/head/beret/solgov/customs name = "customs and trade beret" desc = "A purple beret denoting service in the Customs and Trade Bureau. For personnel that are more inclined towards style than safety." -/obj/item/clothing/head/beret/sol/orbital +/obj/item/clothing/head/beret/solgov/orbital name = "orbital assault beret" desc = "A blue beret denoting orbital assault training. For helljumpers that are more inclined towards style than safety." -/obj/item/clothing/head/beret/sol/research +/obj/item/clothing/head/beret/solgov/research name = "government research beret" desc = "A green beret denoting service in the Bureau of Research. For explorers that are more inclined towards style than safety." -/obj/item/clothing/head/beret/sol/health +/obj/item/clothing/head/beret/solgov/health name = "health service beret" desc = "A white beret denoting service in the Interstellar Health Service. For medics that are more inclined towards style than safety." -/obj/item/clothing/head/beret/sol/expedition +/obj/item/clothing/head/beret/solgov/marcom + name = "\improper MARSCOM beret" + desc = "A red beret with a gold insignia, denoting service in the TCGDF Mars Central Command. For brass who are more inclined towards style than safety." + +/obj/item/clothing/head/beret/solgov/stratcom + name = "\improper STRATCOM beret" + desc = "A grey beret with a silver insignia, denoting service in the TCGDF Strategic Command. For intelligence personnel who are more inclined towards style than safety." + +/obj/item/clothing/head/beret/solgov/diplomatic + name = "diplomatic security beret" + desc = "A tan beret denoting service in the TCG Marines Diplomatic Security Group. For security personnel who are more inclined towards style than safety." + +/obj/item/clothing/head/beret/solgov/borderguard + name = "border security beret" + desc = "A green beret with a silver emblem, denoting service in the Bureau of Border Security. For border guards who are more inclined towards style than safety." + +/obj/item/clothing/head/beret/solgov/sifguard name = "\improper NDF beret" desc = "A black beret belonging to the Nanotrasen Defense Force. For personnel that are more inclined towards style than safety." -/obj/item/clothing/head/beret/sol/expedition/security +/obj/item/clothing/head/beret/solgov/sifguard/security name = "\improper NDF security beret" desc = "A Nanotrasen Defense Force beret with a security crest. For personnel that are more inclined towards style than safety." -/obj/item/clothing/head/beret/sol/expedition/medical +/obj/item/clothing/head/beret/solgov/sifguard/medical name = "\improper NDF medical beret" desc = "A Nanotrasen Defense Force beret with a medical crest. For personnel that are more inclined towards style than safety." -/obj/item/clothing/head/beret/sol/expedition/engineering +/obj/item/clothing/head/beret/solgov/sifguard/engineering name = "\improper NDF engineering beret" desc = "A Nanotrasen Defense Force beret with an engineering crest. For personnel that are more inclined towards style than safety." -/obj/item/clothing/head/beret/sol/expedition/supply +/obj/item/clothing/head/beret/solgov/sifguard/supply name = "\improper NDF supply beret" desc = "A Nanotrasen Defense Force beret with a supply crest. For personnel that are more inclined towards style than safety." -/obj/item/clothing/head/beret/sol/expedition/command +/obj/item/clothing/head/beret/solgov/sifguard/service + name = "\improper NDF service beret" + desc = "An Nanotrasen Defense Force beret with a service crest. For personnel that are more inclined towards style than safety." + +/obj/item/clothing/head/beret/solgov/sifguard/command name = "\improper NDF command beret" desc = "A Nanotrasen Defense Force beret with a command crest. For personnel that are more inclined towards style than safety." -/obj/item/clothing/head/beret/sol/fleet +/obj/item/clothing/head/beret/solgov/sifguard/branch + name = "\improper Field Operations beret" + desc = "An Nanotrasen Defense Force beret carrying insignia of the Field Operations section of the Nanotrasen Defense Force. For personnel that are more inclined towards style than safety." + +/obj/item/clothing/head/beret/solgov/sifguard/branch/observatory + name = "\improper Observatory beret" + desc = "An Nanotrasen Defense Force beret carrying insignia of the Observatory section of the Nanotrasen Defense Force. For personnel that are more inclined towards style than safety." + +/obj/item/clothing/head/beret/solgov/fleet name = "fleet beret" desc = "A navy blue beret belonging to the TCG Fleet. For personnel that are more inclined towards style than safety." -/obj/item/clothing/head/beret/sol/fleet/security +/obj/item/clothing/head/beret/solgov/fleet/security name = "fleet security beret" desc = "An TCG Fleet beret with a security crest. For personnel that are more inclined towards style than safety." -/obj/item/clothing/head/beret/sol/fleet/medical +/obj/item/clothing/head/beret/solgov/fleet/medical name = "fleet medical beret" desc = "An TCG Fleet beret with a medical crest. For personnel that are more inclined towards style than safety." -/obj/item/clothing/head/beret/sol/fleet/engineering +/obj/item/clothing/head/beret/solgov/fleet/engineering name = "fleet engineering beret" desc = "An TCG Fleet with an engineering crest. For personnel that are more inclined towards style than safety." -/obj/item/clothing/head/beret/sol/fleet/supply +/obj/item/clothing/head/beret/solgov/fleet/supply name = "fleet supply beret" desc = "An TCG Fleet beret with a supply crest. For personnel that are more inclined towards style than safety." -/obj/item/clothing/head/beret/sol/fleet/command +/obj/item/clothing/head/beret/solgov/fleet/service + name = "fleet service beret" + desc = "An TCG Fleet beret with a service crest. For personnel that are more inclined towards style than safety." + +/obj/item/clothing/head/beret/solgov/fleet/exploration + name = "fleet exploration beret" + desc = "An TCG Fleet beret with an exploration crest. For personnel that are more inclined towards style than safety." + +/obj/item/clothing/head/beret/solgov/fleet/command name = "fleet command beret" - desc = "An TCG Fleet beret with a command crest. For personnel that are more inclined towards style than safety." \ No newline at end of file + desc = "An TCG Fleet beret with a command crest. For personnel that are more inclined towards style than safety." + +/obj/item/clothing/head/beret/solgov/fleet/dress + name = "fleet dress beret" + desc = "A white TCG Fleet beret. For personnel that are more inclined towards style than safety." + +/obj/item/clothing/head/beret/solgov/fleet/dress/command + name = "fleet officer's dress beret" + desc = "A white TCG Fleet beret with a golden crest. For personnel that are more inclined towards style than safety." + +/obj/item/clothing/head/beret/solgov/fleet/branch + name = "first fleet beret" + desc = "An TCG Fleet beret carrying insignia of First Fleet, the Sol Guard, stationed in Sol. For personnel that are more inclined towards style than safety." + icon_state = "beret_navy_first" + +/obj/item/clothing/head/beret/solgov/fleet/branch/second + name = "second fleet beret" + desc = "An TCG Fleet beret carrying insignia of Second Fleet, the Home Guard, tasked with defense of Sol territories. For personnel that are more inclined towards style than safety." + +/obj/item/clothing/head/beret/solgov/fleet/branch/third + name = "third fleet beret" + desc = "An TCG Fleet beret carrying insignia of Third Fleet, the Border Guard, guarding borders of Sol territory against Vox and pirates. For personnel that are more inclined towards style than safety." + +/obj/item/clothing/head/beret/solgov/fleet/branch/fourth + name = "fourth fleet beret" + desc = "An TCG Fleet beret carrying insignia of Fourth Fleet, stationed on Skrell border. For personnel that are more inclined towards style than safety." + +/obj/item/clothing/head/beret/solgov/fleet/branch/fifth + name = "fifth fleet beret" + desc = "An TCG Fleet beret carrying insignia of Fifth Fleet, the Quick Reaction Force, recently formed and outfited with last tech. For personnel that are more inclined towards style than safety." + +//ushanka + +/obj/item/clothing/head/ushanka/solgov + name = "\improper NDF fur hat" + desc = "An Nanotrasen Defense Force synthfur-lined hat for operating in cold environments." + +/obj/item/clothing/head/ushanka/solgov/fleet + name = "fleet fur hat" + desc = "An TCG Fleet synthfur-lined hat for operating in cold environments." + +/obj/item/clothing/head/ushanka/solgov/army + name = "marine fur hat" + desc = "An TCG Marine synthfur-lined hat for operating in cold environments." + +/obj/item/clothing/head/ushanka/solgov/army/green + name = "green marine fur hat" + desc = "An TCG Marine synthfur-lined hat for operating in cold environments." + +//Terran + +/obj/item/clothing/head/terran/navy/service + name = "Ares service cover" + desc = "A service uniform cover, worn by low-ranking crew within the Ares Confederation Navy." + +/obj/item/clothing/head/terran/navy/service/command + name = "Ares command service cover" + desc = "A service uniform cover, worn by high-ranking crew within the Ares Confederation Navy." + diff --git a/code/modules/clothing/suits/solgov_vr.dm b/code/modules/clothing/suits/solgov_vr.dm index b23cb35bc9..24dc7aa942 100644 --- a/code/modules/clothing/suits/solgov_vr.dm +++ b/code/modules/clothing/suits/solgov_vr.dm @@ -1,87 +1,149 @@ -//SolGov Uniform Suits - -//Service -/obj/item/clothing/suit/storage/service/sifguard +/obj/item/clothing/suit/storage/solgov/service/sifguard name = "\improper NDF jacket" - desc = "A uniform service jacket belonging to the Nanotrasen Defense Force. It has silver buttons." + desc = "A uniform service jacket belonging to the Nanotrasen Defense Force." -/obj/item/clothing/suit/storage/service/sifguard/medical - name = "\improper NDF medical jacket" - desc = "A uniform service jacket belonging to the Nanotrasen Defense Force. It has silver buttons and blue trim." +/obj/item/clothing/suit/storage/solgov/service/fleet + name = "fleet service jacket" + desc = "A navy blue TCG Fleet service jacket." -/obj/item/clothing/suit/storage/service/sifguard/medical/command - name = "\improper NDF medical command jacket" - desc = "A uniform service jacket belonging to the Nanotrasen Defense Force. It has gold buttons and blue trim." +/obj/item/clothing/suit/storage/solgov/service/fleet/snco + name = "fleet SNCO service jacket" + desc = "A navy blue TCG Fleet service jacket with silver cuffs." -/obj/item/clothing/suit/storage/service/sifguard/engineering - name = "\improper NDF engineering jacket" - desc = "A uniform service jacket belonging to the Nanotrasen Defense Force. It has silver buttons and orange trim." +/obj/item/clothing/suit/storage/solgov/service/fleet/officer + name = "fleet officer's service jacket" + desc = "A navy blue TCG Fleet dress jacket with silver accents." -/obj/item/clothing/suit/storage/service/sifguard/engineering/command - name = "\improper NDF engineering command jacket" - desc = "A uniform service jacket belonging to the Nanotrasen Defense Force. It has gold buttons and orange trim." +/obj/item/clothing/suit/storage/solgov/service/fleet/command + name = "fleet senior officer's service jacket" + desc = "A navy blue TCG Fleet dress jacket with gold accents." -/obj/item/clothing/suit/storage/service/sifguard/supply - name = "\improper NDF supply jacket" - desc = "A uniform service jacket belonging to the Nanotrasen Defense Force. It has silver buttons and brown trim." +/obj/item/clothing/suit/storage/solgov/service/fleet/flag + name = "fleet flag officer's service jacket" + desc = "A navy blue TCG Fleet dress jacket with red accents." -/obj/item/clothing/suit/storage/service/sifguard/security - name = "\improper NDF security jacket" - desc = "A uniform service jacket belonging to the Nanotrasen Defense Force. It has silver buttons and red trim." - -/obj/item/clothing/suit/storage/service/sifguard/security/command - name = "\improper NDF security command jacket" - desc = "A uniform service jacket belonging to the Nanotrasen Defense Force. It has gold buttons and red trim." - -/obj/item/clothing/suit/storage/service/sifguard/command - name = "\improper NDF command jacket" - desc = "A uniform service jacket belonging to the Nanotrasen Defense Force. It has gold buttons and gold trim." - -/obj/item/clothing/suit/storage/service/marine +/obj/item/clothing/suit/storage/solgov/service/army name = "marine coat" - desc = "An TCG Marine Corps service coat. Green and undecorated." + desc = "An TCG Marine service coat. Green and undecorated." -/obj/item/clothing/suit/storage/service/marine/medical +/obj/item/clothing/suit/storage/solgov/service/army/medical name = "marine medical jacket" - desc = "An TCG Marine Corps service coat. This one has blue markings." + desc = "An TCG Marine service coat. This one has blue markings." -/obj/item/clothing/suit/storage/service/marine/medical/command +/obj/item/clothing/suit/storage/solgov/service/army/medical/command name = "marine medical command jacket" - desc = "An TCG Marine Corps service coat. This one has blue and gold markings." + desc = "An TCG Marine service coat. This one has blue and gold markings." -/obj/item/clothing/suit/storage/service/marine/engineering +/obj/item/clothing/suit/storage/solgov/service/army/engineering name = "marine engineering jacket" - desc = "An TCG Marine Corps service coat. This one has orange markings." + desc = "An TCG Marine service coat. This one has orange markings." -/obj/item/clothing/suit/storage/service/marine/engineering/command +/obj/item/clothing/suit/storage/solgov/service/army/engineering/command name = "marine engineering command jacket" - desc = "An TCG Marine Corps service coat. This one has orange and gold markings." + desc = "An TCG Marine service coat. This one has orange and gold markings." -/obj/item/clothing/suit/storage/service/marine/supply +/obj/item/clothing/suit/storage/solgov/service/army/supply name = "marine supply jacket" - desc = "An TCG Marine Corps service coat. This one has brown markings." + desc = "An TCG Marine service coat. This one has brown markings." -/obj/item/clothing/suit/storage/service/marine/security +/obj/item/clothing/suit/storage/solgov/service/army/security name = "marine security jacket" - desc = "An TCG Marine Corps service coat. This one has red markings." + desc = "An TCG Marine service coat. This one has red markings." -/obj/item/clothing/suit/storage/service/marine/security/command +/obj/item/clothing/suit/storage/solgov/service/army/security/command name = "marine security command jacket" - desc = "An TCG Marine Corps service coat. This one has red and gold markings." + desc = "An TCG Marine service coat. This one has red and gold markings." -/obj/item/clothing/suit/storage/service/marine/command +/obj/item/clothing/suit/storage/solgov/service/army/service + name = "marine service jacket" + desc = "An TCG Marine service coat. This one has green markings." + +/obj/item/clothing/suit/storage/solgov/service/army/service/command + name = "marine service command jacket" + desc = "An TCG Marine service coat. This one has green and gold markings." + +/obj/item/clothing/suit/storage/solgov/service/army/exploration + name = "marine exploration jacket" + desc = "An TCG Marine service coat. This one has purple markings." + +/obj/item/clothing/suit/storage/solgov/service/army/exploration/command + name = "marine exploration command jacket" + desc = "An TCG Marine service coat. This one has purple and gold markings." + +/obj/item/clothing/suit/storage/solgov/service/army/command name = "marine command jacket" desc = "An TCG Marine Corps service coat. This one has gold markings." -//Dress - -/obj/item/clothing/suit/dress/expedition +//Dress - murder me with a gun why are these 3 different types +/obj/item/clothing/suit/storage/solgov/dress/sifguard name = "\improper NDF dress jacket" - desc = "A silver and grey dress jacket belonging to the Nanotrasen Defense Force. Fashionable, for the 24th century at least." + desc = "A silver and grey dress jacket belonging to the Nanotrasen Defense Force. Fashionable, for the 25th century at least." -/obj/item/clothing/suit/dress/expedition/command - name = "\improper NDF command dress jacket" - desc = "A gold and grey dress jacket belonging to the Nanotrasen Defense Force. The height of fashion." +/obj/item/clothing/suit/storage/solgov/dress/sifguard/senior + name = "\improper NDF senior's dress coat" + +/obj/item/clothing/suit/storage/solgov/dress/sifguard/chief + name = "\improper NDF chief's dress coat" + +/obj/item/clothing/suit/storage/solgov/dress/sifguard/command + name = "\improper NDF officer's dress coat" + desc = "A gold and black dress peacoat belonging to the Nanotrasen Defense Force. The height of fashion." + +/obj/item/clothing/suit/storage/solgov/dress/sifguard/command/cdr + name = "\improper NDF commander's dress coat" + +/obj/item/clothing/suit/storage/solgov/dress/sifguard/command/capt + name = "\improper NDF captain's dress coat" + +/obj/item/clothing/suit/storage/solgov/dress/sifguard/command/adm + name = "\improper NDF admiral's dress coat" + +/obj/item/clothing/suit/storage/solgov/dress/fleet + name = "fleet dress jacket" + desc = "A navy blue TCG Fleet dress jacket. Don't get near pasta sauce or vox." + +/obj/item/clothing/suit/storage/solgov/dress/fleet/snco + name = "fleet dress SNCO jacket" + desc = "A navy blue TCG Fleet dress jacket with silver cuffs. Don't get near pasta sauce or vox." + +/obj/item/clothing/suit/storage/solgov/dress/fleet/officer + name = "fleet officer's dress jacket" + desc = "A navy blue TCG Fleet dress jacket with silver accents. Don't get near pasta sauce or vox." + +/obj/item/clothing/suit/storage/solgov/dress/fleet/command + name = "fleet senior officer's dress jacket" + desc = "A navy blue TCG Fleet dress jacket with gold accents. Don't get near pasta sauce or vox." + +/obj/item/clothing/suit/storage/solgov/dress/fleet/flag + name = "fleet flag officer's dress jacket" + desc = "A navy blue TCG Fleet dress jacket with red accents. Don't get near pasta sauce or vox." + +/obj/item/clothing/suit/dress/solgov/fleet/sailor + name = "fleet dress overwear" + desc = "A navy blue TCG Fleet dress suit. Almost looks like a school-girl outfit." + +/obj/item/clothing/suit/dress/solgov/army + name = "marine dress jacket" + desc = "A tailored black TCG Marines dress jacket with red trim. So sexy it hurts." + +/obj/item/clothing/suit/dress/solgov/army/command + name = "marine officer's dress jacket" + desc = "A tailored black TCG Marines dress jacket with gold trim. Smells like ceremony." + +//Misc + +/obj/item/clothing/suit/storage/hooded/wintercoat/solgov + name = "\improper NDF winter coat" + +/obj/item/clothing/suit/storage/hooded/wintercoat/solgov/army + name = "marine winter coat" + +/obj/item/clothing/suit/storage/hooded/wintercoat/solgov/fleet + name = "fleet winter coat" + +/obj/item/clothing/suit/storage/toggle/dress + name = "clasped dress jacket" + desc = "A uniform dress jacket with gold toggles." /obj/item/clothing/suit/storage/toggle/dress/fleet name = "fleet dress jacket" @@ -91,10 +153,31 @@ name = "fleet command dress jacket" desc = "A crisp white TCG Fleet dress jacket dripping with gold accents. So bright it's blinding." -/obj/item/clothing/suit/dress/marine - name = "marine dress jacket" - desc = "A tailored black TCG Marine Corps dress jacket with red trim. So sexy it hurts." +/obj/item/clothing/suit/storage/marshal_jacket + name = "colonial marshal jacket" + desc = "A black synthleather jacket. The word 'MARSHAL' is stenciled onto the back in gold lettering." -/obj/item/clothing/suit/dress/marine/command - name = "marine command dress jacket" - desc = "A tailored black TCG Marine Corps dress jacket with gold trim. Smells like ceremony." \ No newline at end of file +//Terrans + +//Service + +/obj/item/clothing/suit/storage/terran/service/navy + name = "Ares coat" + desc = "A Ares Navy service coat. Black and undecorated." + +/obj/item/clothing/suit/storage/terran/service/navy/command + name = "Ares command coat" + desc = "An Ares Navy service command coat. White and undecorated." + +//Dress +/obj/item/clothing/suit/dress/terran/navy + name = "Ares dress cloak" + desc = "A black Ares Navy dress cloak with red detailing. So sexy it hurts." + +/obj/item/clothing/suit/dress/terran/navy/officer + name = "Ares officer's dress cloak" + desc = "A black Ares Navy dress cloak with gold detailing. Smells like ceremony." + +/obj/item/clothing/suit/dress/terran/navy/command + name = "Ares command dress cloak" + desc = "A black Ares Navy dress cloak with royal detailing. Smells like ceremony." diff --git a/code/modules/clothing/under/solgov_vr.dm b/code/modules/clothing/under/solgov_vr.dm index e4c4e84eb2..6b14af1d05 100644 --- a/code/modules/clothing/under/solgov_vr.dm +++ b/code/modules/clothing/under/solgov_vr.dm @@ -1,5 +1,4 @@ //SolGov Uniforms - //PT /obj/item/clothing/under/solgov/pt/sifguard name = "\improper NDF pt uniform" @@ -9,85 +8,119 @@ name = "fleet pt uniform" desc = "A pair of black shorts and two tank tops, seems impractical. Looks good though." -/obj/item/clothing/under/solgov/pt/marine +/obj/item/clothing/under/solgov/pt/army name = "marine pt uniform" desc = "Does NOT leave much to the imagination." - //Utility - -/obj/item/clothing/under/utility - name = "utility uniform" - desc = "A comfortable turtleneck and black utility trousers." - +//Here's the real ones /obj/item/clothing/under/solgov/utility/sifguard name = "\improper NDF uniform" desc = "The utility uniform of the Nanotrasen Defense Force, made from biohazard resistant material. This one has silver trim." -/obj/item/clothing/under/solgov/utility/sifguard/officer - name = "\improper NDF officer uniform" - desc = "The utility uniform of the Nanotrasen Defense Force, made from biohazard resistant material. This one has gold trim." +/obj/item/clothing/under/solgov/utility/sifguard_skirt + name = "\improper NDF skirt" + desc = "A black turtleneck and skirt, the elusive ladies' uniform of the Nanotrasen Defense Force." +/obj/item/clothing/under/solgov/utility/sifguard_skirt/officer + name = "\improper NDF officer skirt" + desc = "A black turtleneck and skirt, the elusive ladies' uniform of the Nanotrasen Defense Force. This one has gold trim." + +/obj/item/clothing/under/solgov/utility/sifguard/officer + name = "\improper NDF officer's uniform" + desc = "The utility uniform of the Nanotrasen Defense Force, made from biohazard resistant material. This one has gold trim." /obj/item/clothing/under/solgov/utility/fleet name = "fleet coveralls" desc = "The utility uniform of the TCG Fleet, made from an insulated material." -/obj/item/clothing/under/solgov/utility/marine +/obj/item/clothing/under/solgov/utility/fleet/combat + name = "fleet fatigues" + desc = "Alternative utility uniform of the TCG Fleet, for when coveralls are impractical." + +/obj/item/clothing/under/solgov/utility/fleet/officer + name = "fleet officer's coveralls" + desc = "Alternative utility uniform of the TCG Fleet, for officers." + +/obj/item/clothing/under/solgov/utility/army name = "marine fatigues" - desc = "The utility uniform of the TCG Marine Corps, made from durable material." + desc = "The utility uniform of the TCG Marines, made from durable material." -/obj/item/clothing/under/solgov/utility/marine/green - name = "green fatigues" - desc = "A green version of the TCG marine utility uniform, made from durable material." +/obj/item/clothing/under/solgov/utility/army/urban + name = "urban fatigues" + desc = "An urban version of the TCG Marines utility uniform, made from durable material." -/obj/item/clothing/under/solgov/utility/marine/tan +/obj/item/clothing/under/solgov/utility/army/tan name = "tan fatigues" - desc = "A tan version of the TCG marine utility uniform, made from durable material." - -/obj/item/clothing/under/solgov/utility/marine/olive - name = "olive fatigues" - desc = "An olive version of the TCG marine utility uniform, made from durable material." - icon = 'icons/obj/clothing/uniforms_vr.dmi' - icon_override = 'icons/mob/uniform_vr.dmi' - icon_state = "bdu_olive" - item_state = "bdu_olive" - -/obj/item/clothing/under/solgov/utility/marine/desert - name = "desert fatigues" - desc = "A desert version of the TCG marine utility uniform, made from durable material." - icon = 'icons/obj/clothing/uniforms_vr.dmi' - icon_override = 'icons/mob/uniform_vr.dmi' - icon_state = "bdu_olive" - item_state = "bdu_olive" + desc = "A tan version of the TCG Marines utility uniform, made from durable material." //Service +/obj/item/clothing/under/solgov/service/sifguard + name = "\improper NDF service uniform" + desc = "The service uniform of the Nanotrasen Defense Force in silver trim." + +/obj/item/clothing/under/solgov/service/sifguard/skirt + name = "\improper NDF service skirt" + desc = "A feminine version of the Nanotrasen Defense Force service uniform in silver trim." + +/obj/item/clothing/under/solgov/service/sifguard/command + name = "\improper NDF officer's service uniform" + desc = "The service uniform of the Nanotrasen Defense Force in gold trim." + +/obj/item/clothing/under/solgov/service/sifguard/command/skirt + name = "\improper NDF officer's service skirt" + desc = "A feminine version of the Nanotrasen Defense Force service uniform in gold trim." /obj/item/clothing/under/solgov/service/fleet name = "fleet service uniform" desc = "The service uniform of the TCG Fleet, made from immaculate white fabric." -/obj/item/clothing/under/solgov/service/marine +/obj/item/clothing/under/solgov/service/fleet/skirt + name = "fleet service skirt" + desc = "The service uniform skirt of the TCG Fleet, made from immaculate white fabric." + +/obj/item/clothing/under/solgov/service/army name = "marine service uniform" - desc = "The service uniform of the TCG Marine Corps. Slimming." - worn_state = "greenservice" + desc = "The service uniform of the TCG Marines. Slimming." -/obj/item/clothing/under/solgov/service/marine/command - name = "marine command service uniform" - desc = "The service uniform of the TCG Marine Corps. Slimming and stylish." +/obj/item/clothing/under/solgov/service/army/skirt + name = "marine service skirt" + desc = "The service uniform skirt of the TCG Marines. Slimming." -/obj/item/clothing/under/solgov/mildress/sifguard - name = "\improper NDF dress uniform" - desc = "The dress uniform of the Nanotrasen Defense Force in silver trim." +/obj/item/clothing/under/solgov/service/army/command + name = "marine officer's service uniform" + desc = "The service uniform of the TCG Marines. Slimming and stylish." -/obj/item/clothing/under/solgov/mildress/sifguard/officer - name = "\improper NDF command dress uniform" - desc = "The dress uniform of the Nanotrasen Defense Force in gold trim." +/obj/item/clothing/under/solgov/service/army/command/skirt + name = "marine officer's service skirt" + desc = "The service uniform skirt of the TCG Marines. Slimming and stylish." -/obj/item/clothing/under/solgov/mildress/marine +//Dress +/obj/item/clothing/under/solgov/mildress/army name = "marine dress uniform" - desc = "The dress uniform of the TCG Marine Corps, class given form." + desc = "The dress uniform of the TCG Marines, class given form." -/obj/item/clothing/under/solgov/mildress/marine/command - name = "marine command dress uniform" - desc = "The dress uniform of the TCG Marine Corps, even classier in gold." \ No newline at end of file +/obj/item/clothing/under/solgov/mildress/army/skirt + name = "marine dress skirt" + desc = "A feminine version of the TCG Marines dress uniform, class given form." + +/obj/item/clothing/under/solgov/mildress/army/command + name = "marine officer's dress uniform" + desc = "The dress uniform of the TCG Marines, even classier in gold." + +/obj/item/clothing/under/solgov/mildress/army/command/skirt + name = "marine officer's dress skirt" + desc = "A feminine version of the TCG Marines dress uniform, even classier in gold." + +//Terrans +/obj/item/clothing/under/terran/navy/utility + name = "Ares utility uniform" + desc = "A comfortable black utility jumpsuit. Worn by the Ares Navy." + +/obj/item/clothing/under/terran/navy/service + name = "Ares service uniform" + desc = "The service uniform of the Ares Navy, for low-ranking crew." + +/obj/item/clothing/under/terran/navy/service/command + name = "Ares command service uniform" + desc = "The service uniform of the Ares Navy, for high-ranking crew." From 77e08765c7bb41baa7824279ef845c2ae1e6b919 Mon Sep 17 00:00:00 2001 From: Unknown Date: Thu, 28 May 2020 14:09:46 -0400 Subject: [PATCH 12/38] Readds accidentally deleted thing --- code/modules/clothing/under/solgov_vr.dm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/code/modules/clothing/under/solgov_vr.dm b/code/modules/clothing/under/solgov_vr.dm index 6b14af1d05..dd0b351d29 100644 --- a/code/modules/clothing/under/solgov_vr.dm +++ b/code/modules/clothing/under/solgov_vr.dm @@ -54,6 +54,23 @@ name = "tan fatigues" desc = "A tan version of the TCG Marines utility uniform, made from durable material." +/obj/item/clothing/under/solgov/utility/army/olive + name = "olive fatigues" + desc = "An olive version of the TCG marine utility uniform, made from durable material." + icon = 'icons/obj/clothing/uniforms_vr.dmi' + icon_override = 'icons/mob/uniform_vr.dmi' + icon_state = "bdu_olive" + item_state = "bdu_olive" + +/obj/item/clothing/under/solgov/utility/army/desert + name = "desert fatigues" + desc = "A desert version of the TCG marine utility uniform, made from durable material." + icon = 'icons/obj/clothing/uniforms_vr.dmi' + icon_override = 'icons/mob/uniform_vr.dmi' + icon_state = "bdu_olive" + item_state = "bdu_olive" + desc = "A tan version of the TCG Marines utility uniform, made from durable material." + //Service /obj/item/clothing/under/solgov/service/sifguard name = "\improper NDF service uniform" From a313950f628fae606348bf2e8645740732d8e923 Mon Sep 17 00:00:00 2001 From: Unknown Date: Thu, 28 May 2020 14:22:46 -0400 Subject: [PATCH 13/38] Fixes compile --- code/datums/outfits/outfit_vr.dm | 6 +++--- .../preference_setup/loadout/loadout_fluffitems_vr.dm | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/code/datums/outfits/outfit_vr.dm b/code/datums/outfits/outfit_vr.dm index b994a9e205..431f321690 100644 --- a/code/datums/outfits/outfit_vr.dm +++ b/code/datums/outfits/outfit_vr.dm @@ -1,6 +1,6 @@ /decl/hierarchy/outfit/USDF/Marine name = "USDF marine" - uniform = /obj/item/clothing/under/solgov/utility/marine/green + uniform = /obj/item/clothing/under/solgov/utility/army/urban shoes = /obj/item/clothing/shoes/boots/jackboots gloves = /obj/item/clothing/gloves/combat l_ear = /obj/item/device/radio/headset/centcom @@ -27,10 +27,10 @@ /decl/hierarchy/outfit/USDF/Officer name = "USDF officer" - head = /obj/item/clothing/head/dress/marine/command/admiral + head = /obj/item/clothing/head/dress/army/command shoes = /obj/item/clothing/shoes/boots/jackboots l_ear = /obj/item/device/radio/headset/centcom - uniform = /obj/item/clothing/under/solgov/mildress/marine/command + uniform = /obj/item/clothing/under/solgov/mildress/army/command back = /obj/item/weapon/storage/backpack/satchel belt = /obj/item/weapon/gun/projectile/revolver/consul l_pocket = /obj/item/ammo_magazine/s44 diff --git a/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm b/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm index 088a13c443..f1c8ff21b6 100644 --- a/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm @@ -75,7 +75,7 @@ character_name = list("Aronai Sieyes") /datum/gear/fluff/aronai_ccmedjacket - path = /obj/item/clothing/suit/storage/service/sifguard/medical/command + path = /obj/item/clothing/suit/storage/solgov/service/sifguard/medical/command display_name = "centcom medical jacket" description = "A medical jacket straight from Central Command." slot = slot_wear_suit From 5bf00b9a31729aa70867605c4048f38029e9047f Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Thu, 28 May 2020 15:12:20 -0400 Subject: [PATCH 14/38] Aro2.dmm floors to Eris style floors --- maps/tether/submaps/om_ships/aro2.dm | 18 +- maps/tether/submaps/om_ships/aro2.dmm | 10184 +++++++++++------------- 2 files changed, 4626 insertions(+), 5576 deletions(-) diff --git a/maps/tether/submaps/om_ships/aro2.dm b/maps/tether/submaps/om_ships/aro2.dm index a5934fa352..f484e9811b 100644 --- a/maps/tether/submaps/om_ships/aro2.dm +++ b/maps/tether/submaps/om_ships/aro2.dm @@ -13,13 +13,13 @@ requires_power = 1 /area/aro2/cockpit - name = "Aronai - Room1" + name = "Aronai - Cockpit" /area/aro2/room1 - name = "Aronai - Room2" + name = "Aronai - Room1" /area/aro2/room2 - name = "Aronai - Room3" + name = "Aronai - Room2" /area/aro2/room3 - name = "Aronai - " + name = "Aronai - Room3" /area/aro2/frontroom name = "Aronai - Front Living" /area/aro2/dining @@ -44,6 +44,14 @@ requires_power = 1 dynamic_lighting = 1 +/turf/simulated/floor/water/indoors/surfluid + name = "surfluid pool" + desc = "A pool of inky-black fluid that shimmers oddly in the light if hit just right." + description_info = "Surfluid is KHI's main method of production, using swarms of nanites to process raw materials into finished products at the cost of immense amounts of energy." + color = "#222222" + outdoors = FALSE + reagent_type = "liquid_protean" + // The 'ship' /obj/effect/overmap/visitable/ship/aro2 name = "spacecraft" @@ -81,7 +89,7 @@ /obj/effect/shuttle_landmark/shuttle_initializer/aroboat2 name = "Aronai's Boat Bay" base_area = /area/aro2/boatdeck - base_turf = /turf/simulated/floor/reinforced + base_turf = /turf/simulated/floor/water/indoors/surfluid landmark_tag = "omship_spawn_aroboat2" docking_controller = "aroship2_boatbay" shuttle_type = /datum/shuttle/autodock/overmap/aroboat2 diff --git a/maps/tether/submaps/om_ships/aro2.dmm b/maps/tether/submaps/om_ships/aro2.dmm index cce9a6fdbc..06d809e160 100644 --- a/maps/tether/submaps/om_ships/aro2.dmm +++ b/maps/tether/submaps/om_ships/aro2.dmm @@ -3,39 +3,6 @@ /obj/effect/overmap/visitable/ship/aro2, /turf/space, /area/space) -"ab" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/power/pointdefense{ - id_tag = "aroship" - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/airless, -/area/aro2/frontroom) -"ac" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/power/pointdefense{ - id_tag = "aroship" - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/airless, -/area/aro2/boatdeck) -"ad" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/power/pointdefense{ - id_tag = "aroship" - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/airless, -/area/aro2/room1) "ae" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -127,19 +94,6 @@ }, /turf/simulated/wall/r_wall, /area/aro2/frontroom) -"aq" = ( -/obj/structure/window/plastitanium/full, -/obj/structure/window/plastitanium{ - dir = 1 - }, -/obj/machinery/door/blast/regular{ - dir = 4; - icon_state = "pdoor1"; - id = "aroshipshutter" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/aro2/frontroom) "ar" = ( /turf/simulated/wall/rpshull, /area/aro2/boatdeck) @@ -160,18 +114,9 @@ "av" = ( /turf/simulated/wall/rpshull, /area/aro2/room1) -"ax" = ( -/turf/simulated/floor/carpet/blue, -/area/aro2/frontroom) "az" = ( /turf/simulated/wall/rpshull, /area/aro2/cockpit) -"aA" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/boatdeck) "aB" = ( /turf/simulated/wall, /area/aro2/room1) @@ -204,23 +149,17 @@ /obj/item/weapon/bedsheet/bluedouble, /turf/simulated/floor/carpet/blue, /area/aro2/room1) -"aF" = ( -/obj/structure/window/plastitanium/full, -/obj/structure/window/plastitanium{ - dir = 8 +"aI" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/power/pointdefense{ + id_tag = "aroship" }, -/obj/machinery/door/blast/regular{ - dir = 2; - icon_state = "pdoor1"; - id = "aroshipshutter" +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/aro2/frontroom) -"aH" = ( -/obj/structure/table/fancyblack, -/turf/simulated/floor/carpet/blue, -/area/aro2/frontroom) +/turf/simulated/floor/plating/eris/under, +/area/aro2/boatdeck) "aK" = ( /obj/machinery/door/blast/regular{ dir = 4; @@ -232,44 +171,9 @@ "aL" = ( /turf/simulated/wall/r_wall, /area/aro2/cockpit) -"aM" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/boatdeck) "aN" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, +/turf/simulated/floor/water/indoors/surfluid, /area/aro2/boatdeck) -"aO" = ( -/obj/machinery/door/airlock, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/room1) "aP" = ( /obj/structure/cable/cyan{ icon_state = "1-8" @@ -306,42 +210,14 @@ }, /turf/simulated/floor/carpet/blue, /area/aro2/room1) -"aS" = ( -/obj/structure/window/plastitanium/full, -/obj/structure/window/plastitanium{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - dir = 2; - icon_state = "pdoor1"; - id = "aroshipshutter" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/aro2/room1) "aV" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/aro2/frontroom) +/obj/effect/floor_decal/industrial/outline/blue, +/obj/structure/closet/crate/secure/gear, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/aroboat2) "aX" = ( /turf/simulated/wall, /area/aro2/cockpit) -"aY" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/boatdeck) "aZ" = ( /obj/structure/closet/secure_closet/personal, /obj/machinery/light{ @@ -378,28 +254,6 @@ }, /turf/simulated/floor/carpet/blue, /area/aro2/room1) -"bd" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/carpet/blue, -/area/aro2/frontroom) -"bg" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/cable/cyan{ - icon_state = "1-8" - }, -/turf/simulated/floor/wood, -/area/aro2/frontroom) -"bh" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/weapon/inducer/hybrid, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/frontroom) "bi" = ( /obj/structure/window/plastitanium/full, /obj/structure/window/plastitanium{ @@ -408,59 +262,25 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techmaint, /area/aro2/cockpit) -"bj" = ( -/obj/machinery/computer/ship/navigation, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/cockpit) -"bk" = ( -/obj/machinery/light{ - dir = 4 - }, +"bm" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, -/turf/simulated/floor/tiled/techfloor/grid, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/cyancorner, /area/aro2/boatdeck) -"bp" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/aro2/frontroom) -"bq" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/device/perfect_tele/alien, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/frontroom) -"br" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/cockpit) -"bs" = ( -/obj/machinery/computer/ship/helm{ - req_one_access = list(101) - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/cockpit) -"bt" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/cockpit) "bu" = ( /obj/machinery/light{ dir = 1 @@ -470,22 +290,6 @@ "bv" = ( /turf/simulated/floor/tiled/techfloor, /area/aro2/cockpit) -"bw" = ( -/obj/structure/bed/chair/bay/comfy/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/cockpit) -"bx" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/boatdeck) "by" = ( /turf/simulated/wall, /area/aro2/room2) @@ -510,74 +314,6 @@ "bD" = ( /turf/simulated/wall/rpshull, /area/aro2/room2) -"bI" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -25 - }, -/turf/simulated/floor/wood, -/area/aro2/frontroom) -"bJ" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/device/sleevemate, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/frontroom) -"bK" = ( -/obj/machinery/computer/ship/engines{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/cockpit) -"bL" = ( -/obj/machinery/computer/ship/sensors{ - dir = 8 - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/cockpit) -"bM" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/boatdeck) -"bN" = ( -/obj/machinery/door/airlock, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/room2) "bO" = ( /obj/structure/cable/cyan{ icon_state = "1-8" @@ -606,19 +342,6 @@ }, /turf/simulated/floor/carpet/gaycarpet, /area/aro2/room2) -"bR" = ( -/obj/structure/window/plastitanium/full, -/obj/structure/window/plastitanium{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - dir = 2; - icon_state = "pdoor1"; - id = "aroshipshutter" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/aro2/room2) "bS" = ( /turf/simulated/wall/rpshull, /area/aro2/dining) @@ -629,45 +352,18 @@ /turf/simulated/wall, /area/aro2/dining) "bV" = ( -/obj/machinery/door/airlock/multi_tile/glass, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/window/plastitanium/full, +/obj/structure/window/plastitanium{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/dining) -"bW" = ( -/turf/simulated/floor/tiled/techfloor, -/area/aro2/dining) -"bX" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 10 - }, -/obj/machinery/button/remote/blast_door{ +/obj/machinery/door/blast/regular{ dir = 4; - id = "aroshipshutter"; - name = "exterior shutters"; - pixel_x = -28 + icon_state = "pdoor1"; + id = "aroshipshutter" }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/cockpit) -"bY" = ( -/obj/effect/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/cockpit) -"bZ" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/cockpit) +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/eris/under, +/area/aro2/frontroom) "cb" = ( /obj/structure/table/steel, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -711,52 +407,6 @@ }, /turf/simulated/floor/carpet/gaycarpet, /area/aro2/room2) -"cf" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/structure/flora/pottedplant, -/turf/simulated/floor/wood, -/area/aro2/dining) -"cg" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/bed/chair/wood, -/turf/simulated/floor/wood, -/area/aro2/dining) -"ch" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = 23 - }, -/turf/simulated/floor/wood, -/area/aro2/dining) -"ci" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/dining) -"cj" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/aro2/dining) "ck" = ( /obj/machinery/vending/food/arojoan{ dir = 8 @@ -839,48 +489,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/aro2/cockpit) -"cq" = ( -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "aroshipshutter"; - name = "exterior shutters"; - pixel_x = 28 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/boatdeck) -"cr" = ( -/obj/structure/window/plastitanium/full, -/obj/structure/window/plastitanium{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - dir = 2; - icon_state = "pdoor1"; - id = "aroshipshutter" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/aro2/dining) -"cs" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/aro2/dining) "ct" = ( /obj/structure/table/fancyblack, /turf/simulated/floor/wood, @@ -892,51 +500,19 @@ }, /turf/simulated/floor/wood, /area/aro2/dining) -"cv" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/aro2/dining) -"cw" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/dining) -"cx" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/aro2/dining) "cy" = ( /obj/machinery/vending/cola{ dir = 8 }, /turf/simulated/floor/wood, /area/aro2/dining) -"cz" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/dining) "cA" = ( -/obj/machinery/door/airlock/multi_tile/glass, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/cockpit) +/obj/structure/table/steel, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/boatdeck) "cB" = ( /obj/structure/sign/poster{ dir = 1; @@ -985,32 +561,6 @@ }, /turf/simulated/floor/wood, /area/aro2/dining) -"cJ" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/aro2/dining) -"cK" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/dining) "cL" = ( /obj/machinery/chemical_dispenser/bar_soft/full{ dir = 8 @@ -1018,138 +568,12 @@ /obj/structure/table/steel, /turf/simulated/floor/wood, /area/aro2/dining) -"cM" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/boatdeck) -"cN" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/boatdeck) -"cO" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/boatdeck) -"cP" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/boatdeck) -"cQ" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = 23 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/boatdeck) -"cR" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/boatdeck) -"cS" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/boatdeck) "cT" = ( -/obj/machinery/door/airlock, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/room3) +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/starboardbay) "cU" = ( /obj/structure/cable/cyan{ icon_state = "1-8" @@ -1178,63 +602,12 @@ }, /turf/simulated/floor/carpet/purcarpet, /area/aro2/room3) -"cX" = ( -/obj/structure/window/plastitanium/full, -/obj/structure/window/plastitanium{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - dir = 2; - icon_state = "pdoor1"; - id = "aroshipshutter" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/aro2/room3) "cY" = ( /obj/structure/bed/chair/wood{ dir = 1 }, /turf/simulated/floor/wood, /area/aro2/dining) -"cZ" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/aro2/dining) -"da" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/aro2/dining) -"db" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/vending/snack{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/aro2/dining) -"dc" = ( -/obj/effect/floor_decal/corner_techfloor_grid, -/obj/effect/floor_decal/techfloor/orange/corner, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/boatdeck) -"dd" = ( -/obj/structure/railing/grey, -/obj/effect/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/boatdeck) -"de" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 8 - }, -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/boatdeck) "df" = ( /obj/structure/closet/secure_closet/personal, /obj/machinery/light{ @@ -1271,71 +644,18 @@ }, /turf/simulated/floor/carpet/purcarpet, /area/aro2/room3) -"di" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/machinery/alarm{ - alarm_id = null; - breach_detection = 0; - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/wood, -/area/aro2/dining) -"dj" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/aro2/dining) "dk" = ( /turf/simulated/floor/wood, /area/aro2/dining) -"dl" = ( -/obj/structure/railing/grey{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/boatdeck) "dm" = ( /turf/simulated/floor/water/indoors, /area/aro2/boatdeck) -"dn" = ( -/obj/structure/railing/grey{ - dir = 8 - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/boatdeck) "do" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 }, -/obj/structure/flora/pottedplant/crystal, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/aro2/dining) -"dp" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/cockpit) +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/surfluid) "dq" = ( /turf/simulated/floor/grass, /area/aro2/boatdeck) @@ -1343,38 +663,8 @@ /turf/simulated/wall, /area/aro2/boatdeck) "ds" = ( -/obj/structure/sink{ - pixel_y = 21 - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white, +/turf/simulated/floor/tiled/eris/dark, /area/aro2/boatdeck) -"dt" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/aro2/boatdeck) -"du" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/power/pointdefense{ - id_tag = "aroship" - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/airless, -/area/aro2/dining) "dv" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -1391,104 +681,10 @@ }, /turf/simulated/wall/r_wall, /area/aro2/dining) -"dy" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/aro2/dining) -"dz" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/wood, -/area/aro2/dining) -"dA" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/aro2/dining) -"dB" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "aroshipshutter"; - name = "exterior shutters"; - pixel_x = 28 - }, -/obj/structure/closet/crate/bin, -/turf/simulated/floor/wood, -/area/aro2/dining) "dC" = ( /obj/structure/flora/tree/jungle_small, /turf/simulated/floor/grass, /area/aro2/boatdeck) -"dD" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/boatdeck) -"dE" = ( -/obj/machinery/door/airlock, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/boatdeck) -"dF" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/cyan{ - icon_state = "1-8" - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/aro2/boatdeck) "dG" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -1497,31 +693,6 @@ }, /turf/simulated/wall/r_wall, /area/aro2/boatdeck) -"dH" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/power/pointdefense{ - id_tag = "aroship" - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/airless, -/area/aro2/boatdeck) -"dI" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/table/steel, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/wood, -/area/aro2/dining) "dJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -1555,194 +726,81 @@ }, /turf/simulated/floor/wood, /area/aro2/dining) -"dM" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/table/steel, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/wood, -/area/aro2/dining) -"dN" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/boatdeck) -"dO" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/machinery/alarm{ - alarm_id = null; - breach_detection = 0; - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -24; - pixel_y = 6 - }, -/turf/simulated/floor/tiled/white, -/area/aro2/boatdeck) -"dP" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/structure/table/steel, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/aro2/dining) "dQ" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/aro2/dining) -"dR" = ( -/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/surfluid) +"dU" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 1 }, -/turf/simulated/floor/wood, -/area/aro2/dining) -"dS" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood, -/area/aro2/dining) -"dT" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/table/steel, -/turf/simulated/floor/wood, -/area/aro2/dining) -"dU" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/structure/table/steel, -/turf/simulated/floor/wood, -/area/aro2/dining) -"dV" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2 - }, -/turf/simulated/floor/tiled/techfloor/grid, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/aro2/dining) "dW" = ( /obj/structure/sign/poster, /turf/simulated/wall, /area/aro2/dining) -"dX" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"dY" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"dZ" = ( -/obj/structure/railing/grey{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) "ea" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"eb" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/starboardbay) +"eb" = ( +/obj/structure/railing/grey{ dir = 1 }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"ec" = ( -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"ed" = ( -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = 23 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"ee" = ( -/obj/structure/railing/grey, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"ef" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"eg" = ( /obj/structure/railing/grey{ dir = 4 }, -/turf/simulated/floor/tiled/techfloor, +/turf/simulated/floor/water/indoors/surfluid, /area/aro2/boatdeck) -"eh" = ( -/obj/machinery/telecomms/allinone, -/turf/simulated/floor/tiled/techfloor/grid, +"eg" = ( +/obj/structure/table/steel, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/eris/techmaint_perforated, /area/aro2/boatdeck) +"ei" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/starboardbay) +"ej" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/powerarea) "ek" = ( /obj/structure/sign/poster{ dir = 1; @@ -1751,103 +809,155 @@ /turf/simulated/wall/r_wall, /area/aro2/boatdeck) "el" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"em" = ( -/obj/machinery/ntnet_relay, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/boatdeck) -"en" = ( -/obj/machinery/pointdefense_control{ +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/power/pointdefense{ id_tag = "aroship" }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/boatdeck) -"eo" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) +/obj/structure/cable/cyan, +/turf/simulated/floor/plating/eris/under, +/area/aro2/powerarea) +"en" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/portbay) "ep" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/techfloor, +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/portbay) +"er" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/portbay) +"eD" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/dining) +"eE" = ( +/obj/structure/table/steel, +/obj/fiftyspawner/plasteel, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/powerarea) +"eF" = ( +/obj/structure/railing/grey, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark, /area/aro2/boatdeck) -"eq" = ( +"eN" = ( +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/portbay) +"eP" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/cockpit) +"eU" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/observation) +"eV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/aro2/frontroom) +"eY" = ( +/obj/structure/railing/grey, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"fh" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"fl" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = 23 + }, +/obj/structure/table/steel, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/airarea) +"fm" = ( +/obj/machinery/light{ + dir = 4 + }, /obj/structure/cable/cyan{ d1 = 2; d2 = 4; icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"er" = ( +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/starboardbay) +"fn" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 6 + }, +/obj/machinery/vending/dinnerware{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/alarm{ - alarm_id = null; - breach_detection = 0; - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"es" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"et" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"eu" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, +/turf/simulated/floor/wood, +/area/aro2/dining) +"fo" = ( /obj/structure/cable/cyan{ d1 = 2; d2 = 8; icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"ev" = ( -/obj/structure/railing/grey{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, /obj/structure/cable/cyan{ @@ -1855,63 +965,28 @@ d2 = 8; icon_state = "4-8" }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"fu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"ew" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + dir = 10 }, /obj/structure/cable/cyan{ d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"ex" = ( -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"ey" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable/cyan{ d1 = 2; d2 = 8; icon_state = "2-8" }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"ez" = ( -/obj/machinery/door/airlock/multi_tile/glass, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/dining) -"eA" = ( +/turf/simulated/floor/tiled/eris/steel/bar_flat, +/area/aro2/frontroom) +"fv" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; @@ -1920,215 +995,37 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/dining) -"eB" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, +/turf/simulated/floor/tiled/eris/dark, /area/aro2/boatdeck) -"eC" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/boatdeck) -"eD" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "aroship2_boatbay"; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/boatdeck) -"eF" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"eJ" = ( -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "aroshipshutter"; - name = "exterior shutters"; - pixel_x = 28 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/boatdeck) -"eK" = ( +"fy" = ( +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/aroboat2) +"fA" = ( /obj/effect/floor_decal/industrial/warning/full, /obj/machinery/power/pointdefense{ id_tag = "aroship" }, /obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/airless, -/area/aro2/boatdeck) -"eL" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"eM" = ( -/obj/structure/cable/cyan{ - d1 = 1; d2 = 2; - icon_state = "1-2" + icon_state = "0-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"eN" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/computer/shuttle_control/explore/aroboat2, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/boatdeck) -"eO" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"eT" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/boatdeck) -"eU" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/boatdeck) -"eV" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"eW" = ( -/obj/structure/window/plastitanium/full, -/obj/structure/window/plastitanium{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - dir = 2; - icon_state = "pdoor1"; - id = "aroshipshutter" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/aro2/boatdeck) -"eX" = ( -/obj/structure/bed/chair/bay/comfy/blue, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"eZ" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/aroboat2) -"fg" = ( -/obj/structure/window/plastitanium/full, -/obj/structure/window/plastitanium{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - dir = 2; - icon_state = "pdoor1"; - id = "aroshipshutter" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/aro2/boatdeck) -"fh" = ( +/turf/simulated/floor/plating/eris/under, +/area/aro2/room1) +"fC" = ( /obj/structure/table/steel, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"fi" = ( -/obj/structure/table/steel, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +/obj/structure/cable/cyan, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"fj" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"fo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/powerarea) +"fG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -2137,327 +1034,68 @@ d2 = 2; icon_state = "1-2" }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"fp" = ( -/obj/structure/table/steel, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"fq" = ( -/obj/structure/bed/chair/bay/comfy/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"fr" = ( -/obj/structure/bed/chair/bay/comfy/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"fs" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"fw" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"fy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"fz" = ( -/obj/structure/bed/chair/bay/comfy/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"fA" = ( -/obj/structure/bed/chair/bay/comfy/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"fB" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"fD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"fE" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"fF" = ( -/obj/effect/floor_decal/industrial/loading{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/aro2/portbay) -"fH" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"fI" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"fJ" = ( -/obj/effect/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor/grid, +/turf/simulated/floor/tiled/eris/dark, /area/aro2/boatdeck) "fK" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/steel/bar_flat, +/area/aro2/frontroom) +"fM" = ( /obj/machinery/light{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"fL" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"fM" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"fN" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"fO" = ( -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = 23 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"fP" = ( /obj/structure/cable/cyan{ d1 = 2; d2 = 8; icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/portbay) "fQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/starboardbay) "fR" = ( -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = 23 +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"fS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/surfluid) "fT" = ( /turf/simulated/wall/rpshull, /area/aro2/portbay) "fU" = ( /turf/simulated/wall/r_wall, /area/aro2/portbay) -"fV" = ( -/obj/effect/floor_decal/techfloor/orange/corner, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"fW" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 8 +"fX" = ( +/turf/simulated/floor/tiled/eris/dark/golden, +/area/aro2/cockpit) +"fZ" = ( +/obj/structure/cable/cyan{ + icon_state = "1-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"fX" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"fY" = ( -/obj/effect/floor_decal/techfloor/orange/corner, -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"fZ" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/observation) "ga" = ( /turf/simulated/wall/r_wall, /area/aro2/starboardbay) @@ -2470,37 +1108,6 @@ "gd" = ( /turf/simulated/wall, /area/aro2/surfluid) -"ge" = ( -/obj/machinery/door/airlock/multi_tile/glass, -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/surfluid) -"gf" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/surfluid) -"gg" = ( -/obj/machinery/door/airlock/multi_tile/glass, -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/surfluid) "gh" = ( /obj/structure/sign/poster{ dir = 1; @@ -2511,287 +1118,57 @@ "gi" = ( /turf/simulated/wall, /area/aro2/starboardbay) -"gj" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 9 +"go" = ( +/obj/mecha/combat/fighter/pinnace/loaded, +/obj/machinery/mech_recharger{ + icon = 'icons/turf/shuttle_alien_blue.dmi' }, -/obj/structure/table/rack/shelf/steel, -/obj/item/weapon/storage/toolbox/syndicate, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) -"gk" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 5 +/turf/simulated/floor/tiled/eris/techmaint_cargo, +/area/aro2/starboardbay) +"gr" = ( +/obj/structure/table/fancyblack, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/eris/steel/bar_light, +/area/aro2/frontroom) +"gt" = ( +/obj/structure/railing/grey{ + dir = 8 }, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) -"gl" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 9 - }, -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"gm" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"gn" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 1 +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/aro2/boatdeck) +"gy" = ( +/obj/machinery/light{ + dir = 8 }, /obj/structure/cable/cyan{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 1 }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"go" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"gp" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/structure/bed/chair/bay/comfy/blue{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"gq" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"gr" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"gs" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/structure/bed/chair/bay/comfy/blue{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"gt" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"gu" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"gv" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 9 - }, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) -"gw" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 5 - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/weapon/storage/toolbox/syndicate, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) -"gx" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) -"gy" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) -"gz" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 8; - on = 0; - pixel_x = 26; - pixel_y = -6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) -"gA" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, +/turf/simulated/floor/tiled/eris/dark, /area/aro2/surfluid) "gB" = ( -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"gC" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"gD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"gE" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 + dir = 6 }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"gF" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"gG" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/bed/chair/bay/comfy/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"gH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/bed/chair/bay/comfy/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"gI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"gJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"gK" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"gL" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/light_switch{ - dir = 4; - on = 0; - pixel_x = -26; - pixel_y = -6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) -"gM" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) -"gN" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) "gO" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/power/pointdefense{ - id_tag = "aroship" - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/airless, -/area/aro2/portbay) +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/aroboat2) "gP" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -2808,128 +1185,24 @@ }, /turf/simulated/wall/r_wall, /area/aro2/portbay) -"gR" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) -"gS" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) "gT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) -"gU" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) -"gV" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/portbay) -"gW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"gX" = ( +/obj/machinery/door/airlock/multi_tile/glass, /obj/structure/cable/cyan{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 1 }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"gY" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"gZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"ha" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/starboardbay) -"hb" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) -"hc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) -"hd" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) -"he" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 5 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/observation) +"gV" = ( +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/airarea) "hf" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -2947,90 +1220,28 @@ /turf/simulated/wall/rpshull, /area/aro2/starboardbay) "hh" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/power/pointdefense{ - id_tag = "aroship" - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/airless, -/area/aro2/starboardbay) -"hi" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 9 - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "aroshipshutter"; - name = "exterior shutters"; - pixel_x = -28 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) +/turf/simulated/floor/plating/eris/under, +/area/aro2/airarea) "hj" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"hm" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) -"hk" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) -"hl" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) -"hm" = ( -/obj/effect/floor_decal/techfloor/orange/corner, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) -"hn" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/portbay) -"ho" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"hp" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"hr" = ( -/obj/machinery/light{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, +/turf/simulated/floor/tiled/eris/techmaint_cargo, +/area/shuttle/aroboat2) +"hB" = ( +/obj/structure/table/steel, +/turf/simulated/floor/wood, +/area/aro2/dining) +"hE" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; @@ -3040,1004 +1251,142 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 1 }, -/turf/simulated/floor/tiled/techfloor, +/turf/simulated/floor/tiled/eris/dark, /area/aro2/surfluid) -"hs" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"ht" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"hu" = ( -/obj/effect/floor_decal/techfloor/orange/corner, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"hv" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/starboardbay) -"hw" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) -"hx" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) -"hy" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) -"hz" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) -"hA" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 5 - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "aroshipshutter"; - name = "exterior shutters"; - pixel_x = 28 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) -"hB" = ( -/obj/structure/fans/hardlight, -/obj/machinery/door/blast/regular{ - dir = 2; - icon_state = "pdoor1"; - id = "aroshipshutter" - }, -/turf/simulated/floor/tiled/techmaint, -/area/aro2/portbay) -"hC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) -"hD" = ( -/turf/simulated/floor/tiled/techmaint, -/area/aro2/portbay) -"hE" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) -"hH" = ( -/obj/structure/railing/grey{ - dir = 8 - }, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"hI" = ( -/obj/structure/railing/grey{ - dir = 4 - }, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"hK" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/structure/table/rack/shelf/steel, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) -"hL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/aro2/starboardbay) -"hM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/aro2/starboardbay) -"hN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) -"hO" = ( -/obj/structure/fans/hardlight, -/obj/machinery/door/blast/regular{ - dir = 2; - icon_state = "pdoor1"; - id = "aroshipshutter" - }, -/turf/simulated/floor/tiled/techmaint, -/area/aro2/starboardbay) -"hP" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) -"hQ" = ( -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) -"hR" = ( -/obj/mecha/combat/fighter/pinnace/loaded, -/obj/machinery/mech_recharger{ - icon = 'icons/turf/shuttle_alien_blue.dmi' - }, -/turf/simulated/floor/tiled/techmaint, -/area/aro2/portbay) -"hS" = ( -/obj/machinery/atmospherics/portables_connector/aux{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/aro2/portbay) -"hT" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/machinery/atmospherics/portables_connector/aux{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) -"hU" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/atmospherics/portables_connector/aux{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) -"hV" = ( -/obj/mecha/combat/fighter/pinnace/loaded, -/obj/machinery/mech_recharger{ - icon = 'icons/turf/shuttle_alien_blue.dmi' - }, -/turf/simulated/floor/tiled/techmaint, -/area/aro2/starboardbay) "hW" = ( -/obj/machinery/atmospherics/portables_connector/aux{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/aro2/starboardbay) -"hX" = ( -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) -"hY" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) -"hZ" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) -"ia" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"ib" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"ic" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"id" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) -"ie" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 + dir = 10 }, -/turf/simulated/floor/tiled/techmaint, +/turf/simulated/floor/tiled/eris/techmaint_cargo, /area/aro2/starboardbay) "if" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/starboardbay) "ig" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 8 +/obj/machinery/power/terminal{ + dir = 4 }, -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 8 +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) +/obj/structure/cable/cyan, +/turf/simulated/floor/plating/eris/under, +/area/aro2/powerarea) "ih" = ( -/obj/effect/floor_decal/corner_techfloor_grid, -/obj/effect/floor_decal/techfloor/orange/corner, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/portable_atmospherics/canister/empty, +/turf/simulated/floor/plating/eris/under, +/area/aro2/airarea) "ii" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) -"ij" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, +/turf/simulated/floor/tiled/eris/dark, /area/aro2/portbay) "ik" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 8 - }, -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 8 +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = 23 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 + dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) "il" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) "im" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) -"in" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"ip" = ( -/obj/machinery/light{ +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"iq" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) -"ir" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) -"is" = ( -/obj/effect/floor_decal/corner_techfloor_grid, -/obj/effect/floor_decal/techfloor/orange/corner, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) -"it" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) -"iu" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 10 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) -"iv" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 8 - }, -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) -"iw" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) -"ix" = ( -/obj/effect/floor_decal/techfloor/orange/corner, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) -"iy" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor/orange, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/portbay) -"iz" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"iA" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"iB" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) +/turf/simulated/floor/tiled/eris/techmaint_cargo, +/area/shuttle/aroboat2) "iC" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/railing/grey{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"iD" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/surfluid) -"iE" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/reagent_dispensers/watertank/high, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/surfluid) -"iF" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/reagent_dispensers/foam, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/surfluid) -"iG" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"iH" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"iI" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"iJ" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"iK" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/reagent_dispensers/foam, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/surfluid) -"iL" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/reagent_dispensers/watertank/high, -/turf/simulated/floor/tiled/techfloor/grid, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/eris/techmaint_perforated, /area/aro2/surfluid) "iM" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/surfluid) -"iN" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ +/obj/structure/railing/grey{ dir = 8 }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"iO" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"iP" = ( -/obj/effect/floor_decal/techfloor/orange/corner, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"iQ" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor/orange, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/starboardbay) -"iR" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) -"iS" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) -"iT" = ( -/obj/effect/floor_decal/corner_techfloor_grid, -/obj/effect/floor_decal/techfloor/orange/corner, /obj/structure/cable/cyan{ d1 = 2; d2 = 8; icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"iN" = ( +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/surfluid) +"iQ" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = 23 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) "iU" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + d2 = 4; + icon_state = "0-4" }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) -"iV" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 10 - }, -/obj/structure/cable/cyan, /obj/machinery/power/apc{ dir = 2; name = "south bump"; pixel_y = -28 }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) -"iW" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"iX" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"iY" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"iZ" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"ja" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 6 - }, -/obj/structure/cable/cyan, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) -"jb" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 10 - }, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) -"jc" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 6 - }, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/portbay) -"jd" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 10 - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"je" = ( -/obj/effect/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) +/turf/simulated/floor/tiled/eris/steel/bar_flat, +/area/aro2/frontroom) "jf" = ( -/obj/effect/floor_decal/techfloor/orange, -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"jg" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 8 +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "aroshipshutter"; + name = "exterior shutters"; + pixel_x = -28 }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"jh" = ( -/obj/effect/floor_decal/techfloor/orange, -/obj/machinery/alarm{ - alarm_id = null; - breach_detection = 0; - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"ji" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 6 - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/surfluid) -"jj" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 10 - }, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) -"jk" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 6 - }, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/starboardbay) +/turf/simulated/floor/tiled/eris/dark/golden, +/area/aro2/cockpit) "jl" = ( /turf/simulated/wall/r_wall, /area/aro2/powerarea) "jm" = ( /turf/simulated/wall, /area/aro2/powerarea) -"jn" = ( -/obj/machinery/door/airlock/multi_tile/glass, -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/powerarea) -"jo" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/powerarea) "jp" = ( /obj/structure/sign/poster{ dir = 1; @@ -4046,685 +1395,109 @@ /turf/simulated/wall, /area/aro2/observation) "jq" = ( -/obj/machinery/door/airlock/multi_tile/glass, -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/observation) -"jr" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/observation) +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/starboardbay) "js" = ( /turf/simulated/wall, /area/aro2/observation) "jt" = ( /turf/simulated/wall, /area/aro2/airarea) -"ju" = ( -/obj/machinery/door/airlock/multi_tile/glass, -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/airarea) -"jv" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/airarea) "jw" = ( /turf/simulated/wall/r_wall, /area/aro2/airarea) "jx" = ( /turf/simulated/wall/rpshull, /area/aro2/powerarea) -"jy" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/powerarea) -"jz" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/powerarea) -"jA" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/machinery/light_switch{ - on = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/powerarea) -"jB" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/powerarea) -"jC" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/powerarea) -"jD" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/structure/table/steel, -/obj/item/weapon/storage/toolbox/electrical, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/powerarea) -"jE" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = 23 - }, -/obj/structure/table/steel, -/obj/fiftyspawner/glass, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/powerarea) "jF" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 5 - }, -/obj/structure/table/steel, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/fiftyspawner/steel, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/powerarea) -"jH" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/observation) -"jI" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/observation) -"jK" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 9 - }, -/obj/structure/table/steel, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/fiftyspawner/rods, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/airarea) -"jL" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = 23 - }, -/obj/structure/table/steel, -/obj/item/weapon/storage/toolbox/mechanical, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/airarea) -"jM" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/structure/table/steel, -/obj/fiftyspawner/wood, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/airarea) -"jN" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/airarea) -"jO" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/airarea) -"jP" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/machinery/light_switch{ - on = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/airarea) -"jQ" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/airarea) -"jR" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/airarea) -"jS" = ( -/turf/simulated/wall/rpshull, -/area/aro2/airarea) -"jT" = ( -/obj/effect/floor_decal/techfloor/orange{ +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "aroshipshutter"; - name = "exterior shutters"; - pixel_x = -28 +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/starboardbay) +"jH" = ( +/obj/structure/table/steel, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/boatdeck) +"jM" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/powerarea) -"jU" = ( -/obj/machinery/power/rtg/abductor/hybrid/built, /obj/structure/cable/cyan{ icon_state = "0-4" }, -/turf/simulated/floor/plating, -/area/aro2/powerarea) -"jV" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/aro2/powerarea) -"jW" = ( -/turf/simulated/floor/plating, -/area/aro2/powerarea) -"jX" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/powerarea) -"jY" = ( -/obj/effect/floor_decal/techfloor/orange{ +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"jN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ dir = 8 }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/observation) -"jZ" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/aro2/observation) -"ka" = ( -/turf/simulated/floor/tiled/dark, -/area/aro2/observation) -"kb" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/observation) -"kc" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, +/turf/simulated/floor/tiled/eris/techmaint_cargo, +/area/aro2/starboardbay) +"jS" = ( +/turf/simulated/wall/rpshull, /area/aro2/airarea) "kd" = ( -/turf/simulated/floor/plating, -/area/aro2/airarea) -"ke" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 6 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/aro2/airarea) -"kf" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating, -/area/aro2/airarea) -"kg" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, /obj/machinery/button/remote/blast_door{ dir = 8; id = "aroshipshutter"; name = "exterior shutters"; pixel_x = 28 }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/airarea) -"kh" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/starboardbay) +"ke" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/powerarea) -"ki" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/cyan, -/turf/simulated/floor/plating, -/area/aro2/powerarea) -"kj" = ( -/obj/machinery/power/smes/buildable/hybrid{ - input_attempt = 1; - input_level = 250000; - input_level_max = 250000 - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/aro2/powerarea) -"kk" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/aro2/powerarea) -"kl" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, /area/aro2/powerarea) "km" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, +/turf/simulated/floor/plating/eris/under, /area/aro2/powerarea) -"kn" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/powerarea) -"ko" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/observation) -"kp" = ( -/obj/structure/cable/cyan{ - icon_state = "1-8" - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/aro2/observation) -"kq" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/aro2/observation) -"kr" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/observation) -"ks" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/airarea) -"kt" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/airarea) "ku" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/aro2/airarea) -"kv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/aro2/airarea) -"kw" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 8 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/aro2/airarea) +/obj/structure/flora/pottedplant, +/turf/simulated/floor/wood, +/area/aro2/dining) "kx" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/turf/simulated/floor/plating, -/area/aro2/airarea) -"ky" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/blue, -/turf/simulated/floor/plating, -/area/aro2/airarea) -"kz" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating, -/area/aro2/airarea) -"kA" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/airarea) -"kB" = ( -/obj/structure/window/plastitanium/full, -/obj/structure/window/plastitanium{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - dir = 2; - icon_state = "pdoor1"; - id = "aroshipshutter" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/aro2/powerarea) -"kC" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/aro2/powerarea) -"kD" = ( -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/smes/buildable/hybrid{ - input_attempt = 1; - input_level = 250000; - input_level_max = 250000 - }, -/turf/simulated/floor/plating, -/area/aro2/powerarea) -"kE" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/aro2/powerarea) -"kF" = ( -/obj/effect/floor_decal/techfloor/orange/corner, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/powerarea) -"kG" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2 - }, -/obj/effect/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/powerarea) -"kH" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/observation) -"kI" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/aro2/observation) -"kJ" = ( -/obj/effect/floor_decal/techfloor/orange/corner, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/observation) +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/surfluid) "kK" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2 - }, -/obj/effect/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/airarea) -"kL" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/airarea) -"kM" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/aro2/airarea) -"kN" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 8 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/aro2/airarea) -"kO" = ( -/obj/machinery/atmospherics/binary/pump/on{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/plating, -/area/aro2/airarea) -"kP" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/aro2/airarea) -"kQ" = ( -/obj/machinery/atmospherics/portables_connector{ +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/surfluid) +"kO" = ( +/obj/machinery/light{ dir = 8 }, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/portable_atmospherics/canister/empty, -/turf/simulated/floor/plating, -/area/aro2/airarea) -"kR" = ( +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/aro2/boatdeck) +"kP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"le" = ( /obj/structure/window/plastitanium/full, /obj/structure/window/plastitanium{ dir = 4 @@ -4735,154 +1508,8 @@ id = "aroshipshutter" }, /obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/aro2/airarea) -"kS" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/structure/table/steel, -/obj/structure/cable/cyan, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/powerarea) -"kT" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/structure/table/steel, -/obj/structure/cable/cyan, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/airarea) -"kU" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 5 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/aro2/airarea) -"kV" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/empty, -/turf/simulated/floor/plating, -/area/aro2/airarea) -"kW" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/powerarea) -"kX" = ( -/obj/effect/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/powerarea) -"kY" = ( -/obj/effect/floor_decal/techfloor/orange, -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/powerarea) -"kZ" = ( -/obj/effect/floor_decal/techfloor/orange, -/obj/machinery/alarm{ - alarm_id = null; - breach_detection = 0; - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/powerarea) -"la" = ( -/obj/effect/floor_decal/techfloor/orange, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/powerarea) -"lb" = ( -/obj/effect/floor_decal/techfloor/orange, -/obj/structure/table/steel, -/obj/fiftyspawner/plasteel, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/powerarea) -"lc" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 6 - }, -/obj/structure/table/steel, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/fiftyspawner/plasteel/hull, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/powerarea) -"ld" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 10 - }, -/obj/structure/table/steel, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/airarea) -"le" = ( -/obj/effect/floor_decal/techfloor/orange, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/airarea) -"lf" = ( -/obj/effect/floor_decal/techfloor/orange, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/airarea) -"lg" = ( -/obj/effect/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/airarea) -"lh" = ( -/obj/effect/floor_decal/techfloor/orange, -/obj/machinery/alarm{ - alarm_id = null; - breach_detection = 0; - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/airarea) -"li" = ( -/obj/effect/floor_decal/techfloor/orange, -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/airarea) -"lj" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/airarea) +/turf/simulated/floor/plating/eris/under, +/area/aro2/room3) "lk" = ( /obj/structure/cable/cyan{ d1 = 2; @@ -4913,54 +1540,14 @@ /turf/simulated/wall/r_wall, /area/aro2/powerarea) "ln" = ( -/obj/effect/floor_decal/techfloor/orange{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/obj/machinery/light{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/observation) -"lo" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark, -/area/aro2/observation) -"lp" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark, -/area/aro2/observation) -"lq" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/observation) +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/portbay) "lr" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -4998,34 +1585,6 @@ }, /turf/simulated/wall/rpshull, /area/aro2/powerarea) -"lv" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 10 - }, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/observation) -"lw" = ( -/obj/effect/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/observation) -"lx" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 6 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/cyan, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/observation) "ly" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -5034,83 +1593,43 @@ }, /turf/simulated/wall/rpshull, /area/aro2/airarea) -"lz" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/power/pointdefense{ - id_tag = "aroship" - }, -/obj/structure/cable/cyan, -/turf/simulated/floor/airless, -/area/aro2/powerarea) "lA" = ( /obj/structure/sign/warning, /turf/simulated/wall/rpshull, /area/aro2/portbay) -"lB" = ( -/obj/structure/window/plastitanium/full, -/obj/structure/window/plastitanium, -/obj/machinery/door/blast/regular{ - dir = 4; - icon_state = "pdoor1"; - id = "aroshipshutter" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/aro2/observation) "lC" = ( /obj/structure/sign/warning, /turf/simulated/wall/rpshull, /area/aro2/starboardbay) -"lD" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/power/pointdefense{ - id_tag = "aroship" - }, -/obj/structure/cable/cyan, -/turf/simulated/floor/airless, -/area/aro2/airarea) "lE" = ( /obj/structure/sign/pods, /turf/simulated/wall, /area/aro2/portbay) -"lH" = ( +"lI" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/aroboat2) +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) "lK" = ( /obj/structure/sign/pods, /turf/simulated/wall, /area/aro2/starboardbay) -"lL" = ( -/obj/machinery/ion_engine{ - dir = 1; - icon_state = "nozzle" - }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/airless, -/area/aro2/powerarea) "lM" = ( /obj/structure/sign/fire, /turf/simulated/wall/rpshull, /area/aro2/powerarea) -"lN" = ( -/obj/machinery/ion_engine{ - dir = 1; - icon_state = "nozzle" - }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/airless, -/area/aro2/airarea) "lO" = ( /obj/structure/sign/fire, /turf/simulated/wall/rpshull, @@ -5136,100 +1655,331 @@ /obj/structure/flora/pottedplant/stoutbush, /turf/simulated/floor/carpet/purcarpet, /area/aro2/room3) -"mh" = ( -/obj/machinery/alarm{ - alarm_id = null; - breach_detection = 0; - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 +"lV" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -24; - pixel_y = 6 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/shuttle_landmark/shuttle_initializer/aroboat2, +/turf/simulated/floor/tiled/eris/techmaint_cargo, +/area/shuttle/aroboat2) +"lW" = ( +/obj/machinery/light{ + dir = 4 }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 1 }, -/turf/simulated/floor/wood, -/area/aro2/frontroom) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"ma" = ( +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/powerarea) +"mg" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "aroship2_boatbay"; + pixel_y = 28 + }, +/turf/simulated/floor/water/indoors/surfluid, +/area/aro2/boatdeck) "mp" = ( /obj/structure/table/bench/wooden, /turf/simulated/floor/tiled/techfloor, /area/aro2/dining) -"mD" = ( -/obj/effect/floor_decal/industrial/loading{ +"ms" = ( +/obj/structure/railing/grey, +/turf/simulated/floor/water/indoors/surfluid, +/area/aro2/surfluid) +"mz" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/starboardbay) +"mH" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/device/perfect_tele/alien, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/aro2/frontroom) +"mI" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/starboardbay) +"mP" = ( +/obj/structure/table/steel, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/wood, +/area/aro2/dining) +"mU" = ( +/obj/machinery/power/shield_generator/upgraded{ + field_radius = 39; + initial_shield_modes = 2113; + target_radius = 39 + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/eris/steel/bar_flat, +/area/aro2/boatdeck) +"ng" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/aro2/boatdeck) +"ni" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"nn" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating/eris/under, +/area/aro2/powerarea) +"nq" = ( +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/airarea) +"nu" = ( +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/aro2/boatdeck) +"nA" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/surfluid) +"nB" = ( +/obj/machinery/light{ dir = 8 }, -/turf/simulated/floor/tiled/monotile, -/area/aro2/starboardbay) -"mY" = ( -/obj/machinery/computer/shuttle_control/explore/aroboat2{ - dir = 8; - icon_state = "computer" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/aroboat2) -"na" = ( -/obj/structure/railing/grey, -/turf/simulated/floor/water/indoors{ - color = "#222222"; - desc = "A pool of inky-black fluid that shimmers oddly in the light if hit just right."; - description_info = "Surfluid is KHI's main method of production, using swarms of nanites to process raw materials into finished products at the cost of immense amounts of energy."; - name = "surfluid pool" - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/airarea) +"nO" = ( +/turf/simulated/floor/tiled/eris/dark, /area/aro2/surfluid) -"nk" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/obj/structure/closet/crate/secure/gear, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/aroboat2) -"nm" = ( -/obj/machinery/shipsensors{ - dir = 1 +"nY" = ( +/obj/machinery/light{ + dir = 4 }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/airless, -/area/aro2/cockpit) -"nA" = ( -/obj/structure/table/fancyblack, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/carpet/blue, -/area/aro2/frontroom) -"oa" = ( -/obj/machinery/light, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/starboardbay) +"oi" = ( /obj/structure/cable/cyan, -/turf/simulated/floor/tiled/techfloor/grid, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/starboardbay) +"oj" = ( +/obj/machinery/power/rtg/abductor/hybrid/built, +/obj/structure/cable/cyan{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating/eris/under, +/area/aro2/powerarea) +"ok" = ( +/obj/machinery/atmospherics/binary/pump/aux, +/turf/simulated/floor/tiled/eris/dark/cargo, /area/shuttle/aroboat2) -"oe" = ( -/obj/structure/table/steel, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/aroboat2) -"oQ" = ( -/obj/structure/window/plastitanium/full, -/obj/structure/window/plastitanium{ +"os" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/aro2/boatdeck) +"oy" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/airarea) +"oG" = ( +/obj/structure/fans/hardlight, /obj/machinery/door/blast/regular{ - dir = 8; + dir = 2; icon_state = "pdoor1"; - id = "aroboatshut" + id = "aroshipshutter" }, -/obj/machinery/door/firedoor/glass{ - dir = 2 +/turf/simulated/floor/tiled/eris/white/danger, +/area/aro2/starboardbay) +"oI" = ( +/obj/machinery/computer/ship/navigation, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/aro2/cockpit) +"oM" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/tiled/techmaint, +/turf/simulated/floor/tiled/eris/steel/bar_flat, +/area/aro2/frontroom) +"oP" = ( +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/portbay) +"oQ" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/surfluid) +"oR" = ( +/obj/structure/sink{ + pixel_y = 21 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/eris/white/techfloor, +/area/aro2/boatdeck) +"oU" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/eris/steel/bar_flat, +/area/aro2/frontroom) +"pm" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled/eris/dark/cargo, /area/shuttle/aroboat2) -"pw" = ( +"pn" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/observation) +"pK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/surfluid) +"pP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/portbay) +"pQ" = ( +/turf/simulated/floor/water/indoors/surfluid, +/area/aro2/surfluid) +"pT" = ( +/obj/structure/bed/chair/bay/comfy/blue, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/boatdeck) +"pX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/surfluid) +"qd" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/starboardbay) +"qi" = ( /obj/structure/cable/cyan{ d1 = 2; d2 = 8; @@ -5246,57 +1996,356 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 +/turf/simulated/floor/tiled/eris/steel/bar_flat, +/area/aro2/frontroom) +"ql" = ( +/obj/machinery/light{ + dir = 8 }, -/turf/simulated/floor/wood, -/area/aro2/frontroom) -"qQ" = ( -/obj/structure/bed/chair/bay/comfy/blue, -/turf/simulated/floor/carpet/bcarpet, -/area/shuttle/aroboat2) -"sg" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood, -/area/aro2/frontroom) -"tj" = ( -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "aroshipshutter"; - name = "exterior shutters"; - pixel_x = -28 +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /obj/structure/cable/cyan{ d1 = 1; d2 = 4; icon_state = "1-4" }, -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/portbay) +"qq" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/portbay) +"qv" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/portables_connector/aux{ + icon_state = "map_connector-aux" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/aroboat2) +"qA" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/surfluid) +"qD" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "aroshipshutter"; + name = "exterior shutters"; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/airarea) +"qG" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/device/sleevemate, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/aro2/frontroom) +"qH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/surfluid) +"qJ" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/wood, -/area/aro2/frontroom) -"tl" = ( -/obj/structure/fans/hardlight, +/area/aro2/dining) +"qQ" = ( +/obj/structure/bed/chair/bay/comfy/blue, +/turf/simulated/floor/carpet/bcarpet, +/area/shuttle/aroboat2) +"qT" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/plating/eris/under, +/area/aro2/airarea) +"rl" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/techmaint_cargo, +/area/shuttle/aroboat2) +"rr" = ( +/obj/machinery/atmospherics/portables_connector/aux{ + dir = 1; + icon_state = "map_connector-aux" + }, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/aroboat2) +"rt" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/surfluid) +"rx" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/surfluid) +"rE" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/cockpit) +"rH" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/structure/closet/crate/internals, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/aroboat2) +"rK" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/aro2/dining) +"rL" = ( +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/surfluid) +"sc" = ( +/obj/machinery/ntnet_relay, +/turf/simulated/floor/tiled/eris/steel/bar_flat, +/area/aro2/boatdeck) +"sg" = ( +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/aroboat2) +"sl" = ( +/obj/structure/table/steel, +/obj/structure/cable/cyan, +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/airarea) +"sm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/aro2/dining) +"sn" = ( +/obj/structure/window/plastitanium/full, +/obj/structure/window/plastitanium{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + dir = 2; + icon_state = "pdoor1"; + id = "aroshipshutter" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/eris/under, +/area/aro2/boatdeck) +"sz" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2 + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/airarea) +"sF" = ( +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/portbay) +"sP" = ( +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/powerarea) +"sU" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/power/pointdefense{ + id_tag = "aroship" + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating/eris/under, +/area/aro2/boatdeck) +"tg" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/aro2/dining) +"tj" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/reagent_dispensers/foam, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/surfluid) +"tr" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/surfluid) +"tw" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/portbay) +"ty" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2 + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/powerarea) +"tJ" = ( +/obj/machinery/vending/snack{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/aro2/dining) +"tN" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/alarm{ + alarm_id = null; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"tO" = ( +/obj/structure/window/plastitanium/full, +/obj/structure/window/plastitanium{ + dir = 1 + }, /obj/machinery/door/blast/regular{ dir = 8; icon_state = "pdoor1"; id = "aroboatshut" }, -/turf/simulated/floor/tiled/techfloor, +/obj/machinery/door/firedoor/glass{ + dir = 2 + }, +/turf/simulated/floor/plating/eris/under, /area/shuttle/aroboat2) -"ts" = ( -/obj/machinery/power/shield_generator/upgraded{ - field_radius = 39; - initial_shield_modes = 2113; - target_radius = 39 - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/aro2/boatdeck) "tT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -5312,22 +2361,307 @@ }, /turf/simulated/floor/carpet/bcarpet, /area/shuttle/aroboat2) -"uD" = ( -/obj/structure/railing/grey{ +"tZ" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"uc" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"ue" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/wood, +/area/aro2/dining) +"uf" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"uk" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/surfluid) +"uo" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris/techmaint_cargo, +/area/shuttle/aroboat2) +"up" = ( +/obj/machinery/atmospherics/portables_connector/aux{ dir = 8 }, -/turf/simulated/floor/water/indoors{ - color = "#222222"; - desc = "A pool of inky-black fluid that shimmers oddly in the light if hit just right."; - description_info = "Surfluid is KHI's main method of production, using swarms of nanites to process raw materials into finished products at the cost of immense amounts of energy."; - name = "surfluid pool" - }, -/area/aro2/surfluid) -"uJ" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled/eris/techmaint_perforated, /area/aro2/portbay) -"wj" = ( +"uq" = ( +/obj/machinery/light, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/tiled/eris/techmaint_cargo, +/area/shuttle/aroboat2) +"uy" = ( +/obj/machinery/door/airlock, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/boatdeck) +"uG" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/portbay) +"uK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"uQ" = ( +/obj/structure/table/steel, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/aro2/dining) +"uX" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "aroshipshutter"; + name = "exterior shutters"; + pixel_x = 28 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/wood, +/area/aro2/dining) +"va" = ( +/obj/machinery/computer/ship/engines, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/observation) +"vc" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "aroboat2_docker"; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/eris/techmaint_cargo, +/area/shuttle/aroboat2) +"vf" = ( +/obj/machinery/light_switch{ + dir = 4; + on = 0; + pixel_x = -26; + pixel_y = -6 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/starboardbay) +"vg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"vo" = ( +/obj/machinery/computer/ship/engines{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/aro2/cockpit) +"vp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/portbay) +"vr" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/airarea) +"vt" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/dining) +"vI" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/aro2/dining) +"vN" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/eris/steel/bar_flat, +/area/aro2/frontroom) +"wa" = ( +/obj/machinery/alarm{ + alarm_id = null; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/airarea) +"wh" = ( +/obj/structure/window/plastitanium/full, +/obj/structure/window/plastitanium{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + dir = 8; + icon_state = "pdoor1"; + id = "aroboatshut" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/aroboat2) +"wl" = ( +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/aro2/frontroom) +"wm" = ( +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/boatdeck) +"wn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"wz" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/aro2/boatdeck) +"wM" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/storage/toolbox/syndicate, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/starboardbay) +"wS" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/surfluid) +"wT" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "aroshipshutter"; + name = "exterior shutters"; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"wY" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/starboardbay) +"wZ" = ( +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "aroshipshutter"; + name = "exterior shutters"; + pixel_x = -28 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/eris/steel/bar_flat, +/area/aro2/frontroom) +"xk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 1 }, @@ -5339,19 +2673,29 @@ /obj/structure/bed/chair/wood{ dir = 8 }, -/turf/simulated/floor/carpet/blue, +/turf/simulated/floor/tiled/eris/steel/bar_light, /area/aro2/frontroom) -"xe" = ( -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/aroboat2) -"xw" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +"xt" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 1 }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/aroboat2) +/turf/simulated/floor/plating/eris/under, +/area/aro2/airarea) +"xx" = ( +/obj/machinery/door/airlock, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/room2) "xH" = ( /obj/effect/shuttle_landmark{ base_area = /area/space; @@ -5361,47 +2705,234 @@ }, /turf/space, /area/space) -"xO" = ( -/obj/effect/floor_decal/industrial/loading{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/aro2/portbay) -"ye" = ( +"xN" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 + dir = 1 }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/aroboat2) -"yu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/effect/floor_decal/industrial/hatch, -/turf/simulated/floor/tiled/dark, -/area/shuttle/aroboat2) -"yD" = ( +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/aro2/dining) +"xZ" = ( +/obj/machinery/shipsensors{ + dir = 1 + }, +/turf/simulated/floor/plating/eris/under, +/area/aro2/cockpit) +"yk" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"yw" = ( +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/starboardbay) +"yC" = ( +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"yG" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/aroboat2) -"yO" = ( -/obj/structure/bed/chair/bay/comfy/blue{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 }, /obj/structure/cable/cyan{ d1 = 2; d2 = 8; icon_state = "2-8" }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/aroboat2) +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"yY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"zg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/techmaint_cargo, +/area/aro2/starboardbay) +"zk" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/observation) +"zt" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/reagent_dispensers/foam, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/surfluid) +"zC" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/powerarea) +"zE" = ( +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/surfluid) +"zG" = ( +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/dining) +"zJ" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "aroshipshutter"; + name = "exterior shutters"; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"zL" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/portbay) +"zQ" = ( +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/starboardbay) +"zV" = ( +/turf/simulated/floor/tiled/eris/steel/bar_flat, +/area/aro2/frontroom) +"Ae" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"Aj" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"Al" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/airarea) +"Ao" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/portbay) +"Av" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/water/indoors/surfluid, +/area/aro2/boatdeck) +"Aw" = ( +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/smes/buildable/hybrid{ + input_attempt = 1; + input_level = 250000; + input_level_max = 250000 + }, +/turf/simulated/floor/plating/eris/under, +/area/aro2/powerarea) +"Ax" = ( +/obj/structure/flora/pottedplant/crystal, +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/aro2/dining) +"AA" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"AE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/portbay) +"AF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/surfluid) +"AK" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/starboardbay) "AL" = ( /obj/effect/shuttle_landmark{ base_area = /area/space; @@ -5411,198 +2942,475 @@ }, /turf/space, /area/space) -"Be" = ( -/obj/effect/floor_decal/industrial/loading{ +"AP" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/structure/fans/hardlight, +/obj/effect/map_helper/airlock/door/simple, +/obj/machinery/door/blast/regular{ + dir = 8; + icon_state = "pdoor1"; + id = "aroboatshut" + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "aroboatshut"; + name = "exterior shutters"; + pixel_x = -28 + }, +/turf/simulated/floor/tiled/eris/white/gray_perforated, +/area/shuttle/aroboat2) +"AT" = ( +/obj/structure/table/fancyblack, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/turf/simulated/floor/tiled/monotile, -/area/aro2/starboardbay) -"BL" = ( -/obj/structure/table/steel, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/airarea) -"Cp" = ( +/turf/simulated/floor/tiled/eris/steel/bar_light, +/area/aro2/frontroom) +"AW" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = 23 + }, /obj/structure/cable/cyan{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/turf/simulated/floor/wood, -/area/aro2/frontroom) -"CQ" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/aro2/frontroom) -"CS" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/aro2/frontroom) -"DO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 + dir = 8 }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"Bg" = ( +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/starboardbay) +"Bj" = ( +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 4 }, /obj/structure/cable/cyan{ d1 = 2; d2 = 8; icon_state = "2-8" }, -/turf/simulated/floor/carpet/blue, -/area/aro2/frontroom) -"Ey" = ( +/turf/simulated/floor/tiled/eris/techmaint_cargo, +/area/shuttle/aroboat2) +"Bu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"By" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/airarea) +"BB" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/starboardbay) +"BI" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/portbay) +"Cz" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"CG" = ( +/obj/machinery/pointdefense_control{ + id_tag = "aroship" + }, +/turf/simulated/floor/tiled/eris/steel/bar_flat, +/area/aro2/boatdeck) +"CL" = ( +/obj/structure/railing/grey, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/water/indoors/surfluid, +/area/aro2/boatdeck) +"CX" = ( +/obj/machinery/door/airlock, /obj/structure/cable/cyan{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/aro2/frontroom) -"EI" = ( -/obj/structure/bed/chair/wood{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/carpet/blue, -/area/aro2/frontroom) -"Fk" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/aroboat2) -"Fu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"Fz" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/room1) +"Dm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/turf/simulated/floor/wood, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/portbay) +"Dx" = ( +/obj/machinery/alarm{ + alarm_id = null; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/surfluid) +"DC" = ( +/obj/structure/window/plastitanium/full, +/obj/structure/window/plastitanium, +/obj/machinery/door/blast/regular{ + dir = 4; + icon_state = "pdoor1"; + id = "aroshipshutter" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/eris/under, +/area/aro2/observation) +"DD" = ( +/obj/structure/window/plastitanium/full, +/turf/simulated/floor/plating/eris/under, +/area/aro2/surfluid) +"DG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/starboardbay) +"DL" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/powerarea) +"DT" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/portbay) +"DU" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/aro2/boatdeck) +"DX" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/starboardbay) +"Ed" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/power/pointdefense{ + id_tag = "aroship" + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating/eris/under, +/area/aro2/dining) +"Ef" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/starboardbay) +"El" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/techmaint_cargo, +/area/shuttle/aroboat2) +"Eu" = ( +/obj/structure/table/steel, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/airarea) +"Ex" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/techfloor, +/area/aro2/boatdeck) +"ED" = ( +/obj/structure/table/fancyblack, +/turf/simulated/floor/tiled/eris/steel/bar_light, /area/aro2/frontroom) +"EO" = ( +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/observation) +"EQ" = ( +/obj/machinery/alarm{ + alarm_id = null; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/powerarea) +"EU" = ( +/obj/machinery/power/rtg/abductor/hybrid/built, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/aroboat2) +"EY" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = 23 + }, +/obj/structure/table/steel, +/obj/fiftyspawner/glass, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/powerarea) +"Fn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating/eris/under, +/area/aro2/airarea) +"Fw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/portbay) "FA" = ( /obj/structure/bed/chair/bay/comfy/blue{ dir = 8 }, /turf/simulated/floor/carpet/bcarpet, /area/shuttle/aroboat2) +"FP" = ( +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/surfluid) +"FQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating/eris/under, +/area/aro2/airarea) +"FT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 8 + }, +/turf/simulated/floor/plating/eris/under, +/area/aro2/airarea) "FY" = ( -/obj/effect/floor_decal/industrial/outline, -/obj/structure/closet/crate/large, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/aroboat2) -"GX" = ( +/obj/machinery/door/airlock, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/room3) +"FZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"Ga" = ( /obj/structure/table/steel, /obj/machinery/recharger, -/turf/simulated/floor/tiled/monotile, +/turf/simulated/floor/tiled/eris/dark/cargo, /area/shuttle/aroboat2) -"Hw" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 +"Ge" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "aroshipshutter"; + name = "exterior shutters"; + pixel_x = 28 }, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/airless, -/area/aro2/cockpit) -"HL" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/obj/structure/closet/crate/internals, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/aroboat2) -"Ib" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/portables_connector/aux{ - icon_state = "map_connector-aux" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/aroboat2) -"Iv" = ( -/obj/structure/railing/grey{ - dir = 1 - }, -/turf/simulated/floor/water/indoors{ - color = "#222222"; - desc = "A pool of inky-black fluid that shimmers oddly in the light if hit just right."; - description_info = "Surfluid is KHI's main method of production, using swarms of nanites to process raw materials into finished products at the cost of immense amounts of energy."; - name = "surfluid pool" - }, -/area/aro2/surfluid) -"JF" = ( -/obj/structure/table/steel, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/powerarea) -"JS" = ( -/turf/simulated/floor/tiled/monotile, -/area/shuttle/aroboat2) -"Kd" = ( -/turf/simulated/floor/carpet/bcarpet, -/area/shuttle/aroboat2) -"Ki" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/shuttle_landmark/shuttle_initializer/aroboat2, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/aroboat2) -"Kx" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 5 - }, -/obj/machinery/computer/ship/helm{ - req_one_access = list(101) - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/observation) -"KC" = ( -/obj/machinery/light, -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 1 }, -/turf/simulated/floor/wood, -/area/aro2/frontroom) -"Lk" = ( -/obj/machinery/atmospherics/binary/pump/aux, -/turf/simulated/floor/tiled/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/aro2/boatdeck) +"Gs" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/observation) +"Gu" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/powerarea) +"Gx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/effect/floor_decal/industrial/hatch, +/turf/simulated/floor/tiled/eris/dark/cargo, /area/shuttle/aroboat2) -"LV" = ( +"GF" = ( +/obj/structure/window/plastitanium/full, +/obj/structure/window/plastitanium{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + dir = 2; + icon_state = "pdoor1"; + id = "aroshipshutter" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/eris/under, +/area/aro2/airarea) +"GJ" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/powerarea) +"Hb" = ( +/obj/structure/table/steel, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/wood, +/area/aro2/dining) +"Hd" = ( +/obj/machinery/computer/shuttle_control/explore/aroboat2{ + dir = 8; + icon_state = "computer" + }, +/turf/simulated/floor/tiled/eris/techmaint_cargo, +/area/shuttle/aroboat2) +"Hg" = ( +/obj/machinery/atmospherics/portables_connector/aux{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/techmaint_cargo, +/area/aro2/starboardbay) +"Hh" = ( +/obj/machinery/mech_recharger{ + icon = 'icons/turf/shuttle_alien_blue.dmi' + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/aroboat2) +"Hm" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/portbay) +"Ht" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"HB" = ( /obj/machinery/door/airlock/multi_tile/glass, /obj/structure/fans/hardlight, /obj/structure/cable/cyan{ @@ -5624,121 +3432,1164 @@ name = "exterior shutters"; pixel_x = -28 }, -/turf/simulated/floor/tiled/techfloor, +/turf/simulated/floor/tiled/eris/white/gray_perforated, /area/shuttle/aroboat2) -"LW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"Mb" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/aroboat2) -"Mf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/carpet/blue, +"HC" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/inducer/hybrid, +/turf/simulated/floor/tiled/eris/steel/bar_dance, /area/aro2/frontroom) -"NI" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/dark, -/area/shuttle/aroboat2) -"NZ" = ( -/obj/machinery/light{ - dir = 1 +"HF" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/power/pointdefense{ + id_tag = "aroship" }, -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/aroboat2) -"Oh" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 9 - }, -/obj/machinery/computer/ship/engines, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/observation) -"Ol" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 8; + icon_state = "0-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/turf/simulated/floor/plating/eris/under, +/area/aro2/starboardbay) +"HH" = ( +/obj/machinery/ion_engine{ + dir = 1; + icon_state = "nozzle" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/aroboat2) -"Ow" = ( -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/simulated/floor/water/indoors{ - color = "#222222"; - desc = "A pool of inky-black fluid that shimmers oddly in the light if hit just right."; - description_info = "Surfluid is KHI's main method of production, using swarms of nanites to process raw materials into finished products at the cost of immense amounts of energy."; - name = "surfluid pool" - }, -/area/aro2/surfluid) -"Oy" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating/eris/under, +/area/aro2/airarea) +"HO" = ( +/obj/machinery/shower{ dir = 8 }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/alarm{ + alarm_id = null; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 }, /obj/machinery/light_switch{ dir = 4; pixel_x = -24; pixel_y = 6 }, -/obj/machinery/vending/dinnerware{ +/turf/simulated/floor/tiled/eris/white/techfloor, +/area/aro2/boatdeck) +"HP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/starboardbay) +"HQ" = ( +/obj/structure/table/steel, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/fiftyspawner/rods, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/airarea) +"Ib" = ( +/obj/machinery/computer/shuttle_control/explore/aroboat2{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/bar_flat, +/area/aro2/boatdeck) +"Ig" = ( +/obj/machinery/computer/ship/sensors{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/aro2/cockpit) +"Ii" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/surfluid) +"Iq" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating/eris/under, +/area/aro2/powerarea) +"Ir" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/observation) +"IB" = ( +/obj/structure/window/plastitanium/full, +/obj/structure/window/plastitanium{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + dir = 2; + icon_state = "pdoor1"; + id = "aroshipshutter" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/eris/under, +/area/aro2/dining) +"ID" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/surfluid) +"IK" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/surfluid) +"IN" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/airarea) +"Jb" = ( +/obj/mecha/combat/fighter/pinnace/loaded, +/obj/machinery/mech_recharger{ + icon = 'icons/turf/shuttle_alien_blue.dmi' + }, +/turf/simulated/floor/tiled/eris/techmaint_cargo, +/area/aro2/portbay) +"Jh" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/portbay) +"Jm" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/portbay) +"Js" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/surfluid) +"JD" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/eris/techmaint_cargo, +/area/shuttle/aroboat2) +"JS" = ( +/obj/machinery/light_switch{ + dir = 8; + on = 0; + pixel_x = 26; + pixel_y = -6 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/portbay) +"Ka" = ( +/obj/structure/fans/hardlight, +/obj/machinery/door/blast/regular{ + dir = 8; + icon_state = "pdoor1"; + id = "aroboatshut" + }, +/turf/simulated/floor/tiled/eris/white/gray_perforated, +/area/shuttle/aroboat2) +"Kd" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/shuttle/aroboat2) +"Ki" = ( +/obj/structure/fans/hardlight, +/obj/machinery/door/blast/regular{ + dir = 2; + icon_state = "pdoor1"; + id = "aroshipshutter" + }, +/turf/simulated/floor/tiled/eris/white/danger, +/area/aro2/portbay) +"Kk" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating/eris/under, +/area/aro2/airarea) +"Km" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/portbay) +"Kr" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/surfluid) +"Ku" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"Kv" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/surfluid) +"Kx" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/bar_light, +/area/aro2/frontroom) +"KE" = ( +/obj/machinery/alarm{ + alarm_id = null; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/eris/steel/bar_flat, +/area/aro2/frontroom) +"KI" = ( +/obj/effect/floor_decal/industrial/hatch, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/aroboat2) +"KT" = ( +/obj/structure/table/steel, +/obj/structure/flora/pottedplant{ + pixel_y = 13 + }, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/boatdeck) +"Lg" = ( +/obj/structure/bed/chair/wood{ dir = 4 }, /turf/simulated/floor/wood, /area/aro2/dining) -"Pk" = ( -/obj/structure/window/plastitanium/full, -/turf/simulated/floor/tiled/techmaint, +"Lh" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"Lk" = ( +/obj/structure/table/steel, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/fiftyspawner/plasteel/hull, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/powerarea) +"Ll" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/boatdeck) +"Ln" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/starboardbay) +"Lp" = ( +/obj/machinery/ion_engine{ + dir = 1; + icon_state = "nozzle" + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating/eris/under, +/area/aro2/powerarea) +"Lr" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"Lu" = ( +/turf/simulated/floor/tiled/eris/techmaint_cargo, +/area/shuttle/aroboat2) +"Lw" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/aro2/frontroom) +"LD" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark, /area/aro2/surfluid) -"Qj" = ( +"LE" = ( +/obj/machinery/computer/ship/helm{ + req_one_access = list(101) + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/aro2/cockpit) +"LN" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"Mb" = ( +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/boatdeck) +"Mp" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/aro2/boatdeck) +"Mv" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/eris/techmaint_cargo, +/area/shuttle/aroboat2) +"Mz" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/surfluid) +"MG" = ( +/obj/structure/window/plastitanium/full, +/obj/structure/window/plastitanium{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + dir = 2; + icon_state = "pdoor1"; + id = "aroshipshutter" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/eris/under, +/area/aro2/frontroom) +"MH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/techmaint_cargo, +/area/shuttle/aroboat2) +"ML" = ( +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/boatdeck) +"MR" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/power/pointdefense{ + id_tag = "aroship" + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating/eris/under, +/area/aro2/boatdeck) +"Ni" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/starboardbay) +"Ns" = ( +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/observation) +"Nu" = ( +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/surfluid) +"Nz" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"NC" = ( +/obj/machinery/atmospherics/portables_connector/aux{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/starboardbay) +"NQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/starboardbay) +"OA" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/water/indoors/surfluid, +/area/aro2/surfluid) +"OB" = ( +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "aroshipshutter"; + name = "exterior shutters"; + pixel_x = -28 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/portbay) +"OE" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/bar_flat, +/area/aro2/frontroom) +"OK" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/power/pointdefense{ + id_tag = "aroship" + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/plating/eris/under, +/area/aro2/airarea) +"ON" = ( +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/portbay) +"OQ" = ( +/obj/machinery/alarm{ + alarm_id = null; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor/wood, +/area/aro2/dining) +"OR" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/steel/bar_light, +/area/aro2/frontroom) +"OV" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/aro2/boatdeck) +"OZ" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"Pd" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/plating/eris/under, +/area/aro2/airarea) +"Ph" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/observation) +"Pi" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = 23 + }, +/turf/simulated/floor/wood, +/area/aro2/dining) +"Pm" = ( +/obj/structure/window/plastitanium/full, +/obj/structure/window/plastitanium{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + dir = 2; + icon_state = "pdoor1"; + id = "aroshipshutter" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/eris/under, +/area/aro2/boatdeck) +"Pr" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/aro2/boatdeck) +"Py" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/airarea) +"Pz" = ( +/turf/simulated/floor/tiled/eris/techmaint_cargo, +/area/aro2/portbay) +"PF" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/power/pointdefense{ + id_tag = "aroship" + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating/eris/under, +/area/aro2/portbay) +"PM" = ( +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/aro2/cockpit) +"PO" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/water/indoors/surfluid, +/area/aro2/surfluid) +"PQ" = ( +/obj/structure/cable/cyan, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/portbay) +"PV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/starboardbay) +"Qg" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/powerarea) +"Qu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/surfluid) +"Qz" = ( +/turf/space, +/area/space) +"QE" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/surfluid) +"QH" = ( +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/observation) +"QN" = ( +/obj/structure/table/steel, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/fiftyspawner/steel, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/powerarea) +"QT" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"QU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"QW" = ( +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/aro2/dining) +"QY" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/aro2/boatdeck) +"Rc" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 5 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating/eris/under, +/area/aro2/airarea) +"Rp" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating/eris/under, +/area/aro2/airarea) +"Rq" = ( /obj/structure/window/plastitanium/full, /obj/structure/window/plastitanium{ dir = 4 }, /obj/machinery/door/blast/regular{ + dir = 2; + icon_state = "pdoor1"; + id = "aroshipshutter" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/eris/under, +/area/aro2/room1) +"RR" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating/eris/under, +/area/aro2/powerarea) +"RY" = ( +/obj/structure/railing/grey, +/turf/simulated/floor/water/indoors/surfluid, +/area/aro2/boatdeck) +"Sd" = ( +/obj/machinery/atmospherics/portables_connector/aux{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/techmaint_cargo, +/area/aro2/portbay) +"Sg" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/white/techfloor, +/area/aro2/boatdeck) +"Sm" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 4 + }, +/turf/simulated/floor/plating/eris/under, +/area/aro2/airarea) +"Sq" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/water/indoors/surfluid, +/area/aro2/surfluid) +"St" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = 23 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/aro2/boatdeck) +"Sx" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/aro2/boatdeck) +"Sy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/surfluid) +"Sz" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2 + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/dining) +"SD" = ( +/obj/structure/window/plastitanium/full, +/obj/structure/window/plastitanium{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + dir = 2; + icon_state = "pdoor1"; + id = "aroshipshutter" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/eris/under, +/area/aro2/room2) +"SE" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank/high, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/surfluid) +"SJ" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/aro2/dining) +"SK" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/surfluid) +"SN" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/powerarea) +"Ta" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/cyancorner, +/area/aro2/dining) +"Tb" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/observation) +"Tf" = ( +/obj/machinery/telecomms/allinone, +/turf/simulated/floor/tiled/eris/steel/bar_flat, +/area/aro2/boatdeck) +"To" = ( +/turf/simulated/floor/plating/eris/under, +/area/aro2/cockpit) +"Tu" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/techmaint_cargo, +/area/shuttle/aroboat2) +"Tx" = ( +/obj/machinery/alarm{ dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/portbay) +"Tz" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/water/indoors/surfluid, +/area/aro2/boatdeck) +"TE" = ( +/obj/machinery/light_switch{ + on = 0; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/airarea) +"TJ" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/structure/closet/crate/large, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/aroboat2) +"TL" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/surfluid) +"TQ" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/space; + base_turf = /turf/space; + landmark_tag = "aronai2_starboard"; + name = "Starboard" + }, +/turf/space, +/area/space) +"TT" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/storage/toolbox/syndicate, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/portbay) +"TU" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/aro2/boatdeck) +"TZ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/blue, +/turf/simulated/floor/plating/eris/under, +/area/aro2/airarea) +"Uk" = ( +/obj/structure/window/plastitanium/full, +/obj/structure/window/plastitanium, +/obj/machinery/door/blast/regular{ + dir = 8; icon_state = "pdoor1"; id = "aroboatshut" }, /obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, +/turf/simulated/floor/plating/eris/under, /area/shuttle/aroboat2) -"Qz" = ( -/turf/space, -/area/space) -"Rx" = ( -/obj/machinery/power/rtg/abductor/hybrid/built, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" +"Ul" = ( +/obj/structure/railing/grey{ + dir = 1 }, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/shuttle/aroboat2) -"Ry" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/water/indoors/surfluid, +/area/aro2/boatdeck) +"Uv" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"Ux" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating/eris/under, +/area/aro2/powerarea) +"UK" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/observation) +"UN" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -5755,183 +4606,280 @@ d2 = 8; icon_state = "1-8" }, -/turf/simulated/floor/tiled/techfloor, +/turf/simulated/floor/tiled/eris/dark, /area/aro2/boatdeck) -"RD" = ( -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" +"UY" = ( +/obj/structure/table/rack/shelf/steel, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 6 }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/starboardbay) +"Ve" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/aro2/frontroom) -"RZ" = ( -/obj/structure/table/bench/wooden, -/turf/simulated/floor/wood, -/area/aro2/frontroom) -"SB" = ( +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"Vg" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/toolbox/electrical, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/powerarea) +"Vm" = ( /obj/structure/railing/grey{ dir = 8 }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"Vo" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/observation) +"Vp" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/water/indoors/surfluid, +/area/aro2/boatdeck) +"Vx" = ( +/turf/simulated/wall/rdshull, +/area/shuttle/aroboat2) +"Vy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/surfluid) +"VH" = ( +/obj/machinery/light_switch{ + on = 0; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/powerarea) +"VJ" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, /obj/structure/cable/cyan{ d1 = 2; d2 = 8; icon_state = "2-8" }, -/turf/simulated/floor/tiled/techfloor, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/steel/cyancorner, /area/aro2/boatdeck) -"Tn" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/carpet/blue, -/area/aro2/frontroom) -"Tp" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/aroboat2) -"TN" = ( +"VN" = ( /obj/structure/window/plastitanium/full, -/obj/structure/window/plastitanium, +/obj/structure/window/plastitanium{ + dir = 8 + }, /obj/machinery/door/blast/regular{ - dir = 8; + dir = 2; icon_state = "pdoor1"; - id = "aroboatshut" + id = "aroshipshutter" }, /obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/aroboat2) -"TQ" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/space; - base_turf = /turf/space; - landmark_tag = "aronai2_starboard"; - name = "Starboard" - }, -/turf/space, -/area/space) -"Ul" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/aro2/starboardbay) -"Ur" = ( +/turf/simulated/floor/plating/eris/under, +/area/aro2/powerarea) +"VT" = ( /obj/structure/cable/cyan{ - d1 = 4; + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + d1 = 2; d2 = 8; - icon_state = "4-8" + icon_state = "2-8" }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/aroboat2) -"UG" = ( -/obj/structure/table/fancyblack, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/carpet/blue, -/area/aro2/frontroom) -"UK" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/closet/crate/bin, -/turf/simulated/floor/wood, -/area/aro2/frontroom) -"UM" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/carpet/blue, -/area/aro2/frontroom) -"UN" = ( -/obj/machinery/mech_recharger{ - icon = 'icons/turf/shuttle_alien_blue.dmi' - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/aroboat2) -"UZ" = ( -/obj/effect/floor_decal/industrial/hatch, -/turf/simulated/floor/tiled/dark, -/area/shuttle/aroboat2) -"Vk" = ( -/obj/machinery/atmospherics/portables_connector/aux{ - dir = 1; - icon_state = "map_connector-aux" - }, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/dark, -/area/shuttle/aroboat2) -"Vu" = ( -/obj/structure/railing/grey{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/boatdeck) -"Vx" = ( -/turf/simulated/wall/rdshull, -/area/shuttle/aroboat2) -"VI" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "aroboat2_docker"; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/aroboat2) +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/surfluid) "VV" = ( /obj/structure/table/fancyblack, /turf/simulated/floor/carpet/bcarpet, /area/shuttle/aroboat2) -"VX" = ( -/obj/structure/window/plastitanium/full, -/obj/structure/window/plastitanium{ - dir = 1 - }, -/obj/machinery/door/blast/regular{ - dir = 8; - icon_state = "pdoor1"; - id = "aroboatshut" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/aroboat2) -"Xg" = ( -/turf/simulated/floor/water/indoors{ - color = "#222222"; - desc = "A pool of inky-black fluid that shimmers oddly in the light if hit just right."; - description_info = "Surfluid is KHI's main method of production, using swarms of nanites to process raw materials into finished products at the cost of immense amounts of energy."; - name = "surfluid pool" - }, -/area/aro2/surfluid) -"Xl" = ( +"VZ" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/floor_decal/spline/fancy/wood/corner, -/turf/simulated/floor/wood, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"We" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/tiled/eris/steel/bar_flat, /area/aro2/frontroom) +"Wg" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/power/pointdefense{ + id_tag = "aroship" + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating/eris/under, +/area/aro2/frontroom) +"Wo" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/starboardbay) +"Wu" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/starboardbay) +"Wv" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/airarea) +"WB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 6 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating/eris/under, +/area/aro2/airarea) +"WL" = ( +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "aroshipshutter"; + name = "exterior shutters"; + pixel_x = -28 + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/powerarea) +"WS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/portbay) +"WV" = ( +/obj/structure/railing/grey, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/aro2/boatdeck) +"WY" = ( +/obj/structure/cable/cyan{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris/steel/bar_flat, +/area/aro2/frontroom) +"Xd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"Xq" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/empty, +/turf/simulated/floor/plating/eris/under, +/area/aro2/airarea) +"XJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/starboardbay) +"XN" = ( +/obj/machinery/power/smes/buildable/hybrid{ + input_attempt = 1; + input_level = 250000; + input_level_max = 250000 + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating/eris/under, +/area/aro2/powerarea) +"XO" = ( +/obj/structure/table/steel, +/obj/fiftyspawner/wood, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/airarea) +"XQ" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/surfluid) +"XZ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) "Yl" = ( /obj/effect/shuttle_landmark{ base_area = /area/space; @@ -5941,29 +4889,123 @@ }, /turf/space, /area/space) -"Yx" = ( +"Yq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /obj/structure/bed/chair/bay/comfy/blue{ dir = 1 }, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/aroboat2) -"ZP" = ( -/obj/machinery/door/airlock/multi_tile/glass, -/obj/structure/fans/hardlight, -/obj/effect/map_helper/airlock/door/simple, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/surfluid) +"Ys" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/steel/bar_flat, +/area/aro2/frontroom) +"YF" = ( +/obj/structure/window/plastitanium/full, +/obj/structure/window/plastitanium{ + dir = 4 + }, /obj/machinery/door/blast/regular{ - dir = 8; + dir = 1; icon_state = "pdoor1"; id = "aroboatshut" }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "aroboatshut"; - name = "exterior shutters"; - pixel_x = -28 - }, -/turf/simulated/floor/tiled/techfloor, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/eris/under, /area/shuttle/aroboat2) +"YK" = ( +/obj/machinery/computer/ship/helm{ + req_one_access = list(101) + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/aro2/observation) +"YL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating/eris/under, +/area/aro2/airarea) +"YN" = ( +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/boatdeck) +"YP" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood, +/area/aro2/dining) +"YQ" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/surfluid) +"YY" = ( +/obj/structure/railing/grey, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/water/indoors/surfluid, +/area/aro2/boatdeck) +"Zo" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/surfluid) +"ZG" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/aro2/surfluid) +"ZJ" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/reagent_dispensers/watertank/high, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/surfluid) +"ZT" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating/eris/under, +/area/aro2/powerarea) (1,1,1) = {" Qz @@ -13285,7 +12327,7 @@ Qz Qz Qz Qz -gO +PF Qz Qz Qz @@ -13293,7 +12335,7 @@ Qz Qz Qz Qz -gO +PF Qz Qz Qz @@ -13429,11 +12471,11 @@ Qz Qz gP lA -hB -hB -hB -hB -hB +Ki +Ki +Ki +Ki +Ki lA gP Qz @@ -13571,11 +12613,11 @@ Qz fT gP fU -fF -fF -uJ -xO -xO +ep +ep +Jh +BI +BI fU gP fT @@ -13713,11 +12755,11 @@ fT fT gQ fU -gx -hP -hP -hP -if +sF +sF +sF +sF +Tx fU gQ fT @@ -13854,13 +12896,13 @@ fT fT fU gQ -hi -gy -hQ -hQ -hQ -ig -ij +OB +sF +er +sF +WS +pP +Ao gQ fU fT @@ -13973,7 +13015,7 @@ Qz Qz Qz Qz -du +Ed Qz Qz Qz @@ -13983,7 +13025,7 @@ Qz Qz Qz Qz -eK +MR Qz Qz Qz @@ -13995,15 +13037,15 @@ fT fT fU fU -gR -hj -hC -hC -hC -hC -hC -ik -iu +fM +uG +uG +Km +zL +zL +zL +Hm +ql fU fU fT @@ -14099,20 +13141,20 @@ Qz Qz Qz Qz -ab +Wg ae ah ah -aF -aF -aF +MG +MG +MG ah ah bS bS -cr -cr -cr +IB +IB +IB bS bS dv @@ -14126,9 +13168,9 @@ ar ar ar ak -eW -eW -eW +Pm +Pm +Pm ar ar ar @@ -14136,28 +13178,28 @@ ar fT fU fU -gx -gS -hk -hD -hR -hQ -hD -hR -il -iv -iV +sF +sF +sF +Pz +Jb +sF +Pz +Jb +ln +qq +PQ fU jl jx jx jx -kB -kB +VN +VN jx lk lu -lz +el Qz Qz Qz @@ -14245,9 +13287,9 @@ Qz af ao ao -RZ -RZ -RZ +We +We +We ao ao bT @@ -14268,34 +13310,34 @@ as as as dG -eX -fh -fq +pT +eg +wm as as as as fU fU -gj -gy -gT -hl -hD -hS -hQ -hD -hS -im -iw -ig -jb +TT +sF +AE +sF +Pz +Sd +sF +Pz +Sd +ii +en +sF +oP jl jl jl jl -JF -JF +Qg +Qg jl ll jx @@ -14386,18 +13428,18 @@ Qz Qz ag ap -Xl -CS -CS -CS -tj -mh +oM +oM +oM +oM +wZ +KE bU -cf -cs -cs -cx -di +ku +Lg +Lg +dk +OQ bT dw bS @@ -14406,42 +13448,42 @@ ar ar as as -ep -ec -ec -eL -eX -fi -fr -ec -fE -ec -ec -ec +ds +ds +ds +Lh +pT +jH +YN +ds +yC +ds +ds +ds gc -gk -gz -gU -hm -hE -hT -hZ -hE -hT -gU -ix -hZ -jc +oP +JS +Fw +sF +oP +up +ON +oP +up +vp +tw +sF +oP jm -jy -jT -kh -kh -kh -kW +sP +WL +sP +sP +sP +sP ll jx -lL +Lp Qz Qz Qz @@ -14526,64 +13568,64 @@ Qz Qz Qz Qz -aq -RZ -sg -ax -EI -EI -bd -KC +bV +We +zV +zV +Kx +Kx +fK +Ys bU -cg +YP ct ct cY -dj -do +dk +Ax dw bT bT bT as as -ec -ec -ec -ec -eL -ec -LW -Fu -ec -ec -ec -fL -ec +ds +ds +Bu +ds +Lh +ds +uK +wn +ds +ds +ds +vg +ds gc gc gc -gV -hn +Dm +DT lE gc gc gc gc -gV -iy +eN +Jm lE gc jm -jz -jU -jU -jU -jU -kX +sP +oj +oj +oj +oj +sP ll jx -lL +Lp Qz Qz Qz @@ -14668,61 +13710,61 @@ Qz Qz Qz Qz -aq -RZ -sg -ax -aH -nA -Tn -RD +bV +We +zV +wl +ED +gr +Lw +iU bU -cg +YP cu cI cY dk -dj -Oy -dI -dP +dk +fn +mP +uQ bU -ec -ef -el -eq -eO -eb -eM -eb -fj -fs -eb -eb -fI -fM -ec +ds +AA +ds +gB +lI +Cz +yG +Cz +VZ +fv +Cz +zJ +lW +Uv +ds gd -gl -gA -gt -ho -gA -gA -ia -gA -gA -gt -iz -gA -jd +uk +nO +Vy +nO +nO +nO +rL +nO +nO +nO +Kr +nO +wS jm -jA -jV -ki -kC -kE -kY +VH +RR +ig +Iq +ZT +zC ll jx lM @@ -14810,64 +13852,64 @@ Qz Qz Qz Qz -aq -RZ -sg -ax -UG -aH -Mf -Ey +bV +We +zV +wl +AT +ED +eV +fK bU -ch -cv -cJ -cZ -cZ -cZ -dy +Pi +tg +qJ +dk +dk +dk +dL dJ -dQ -ez -ec -ec -ec -er +sm +vt +ds +ds +ds +tN dr dr -eN -aA -aA -aA -aA +Vp +Vp +Vp +Vp +Vp dr dr -fN -ec +fh +ds gd -gm -gB -gB -gB -gB -gB -gB -gB -gB -gB -iA -gB -ho -jn -jB -jW -kj -kD -jW -kZ +nO +Sy +do +Js +nO +nO +nO +nO +nO +AF +IK +nO +nO +DL +sP +km +XN +Aw +km +EQ ll jx -lL +Lp Qz Qz Qz @@ -14954,62 +13996,62 @@ Qz Qz ah ao -sg -ax -UM -wj -DO -pw -bV -ci -cw -cK -ci -ci -ci -dz -dK -dR -eA -eb -eb -eb -ew -dr +zV +zV +OR +xk +fu +qi eD -eT -eT -eT -eT -eT -eT +xN +Ta +vI +xN +xN +xN +ue +dK +rK +dU +Cz +Cz +Cz +Ku dr -fO -ec +mg +aN +aN +aN +aN +aN +aN +dr +AW +ds gd -gm -gC -gW -hp -gB -gB -gB -gB -gB -in -iB -gB -hu -jo -jC -jW -kk -kk -jW -kX +nO +Vy +nO +TL +nO +nO +nO +nO +nO +TL +Kr +nO +nO +ma +sP +km +nn +nn +km +sP ll jx -lL +Lp Qz Qz Qz @@ -15097,58 +14139,58 @@ Qz ah ao ao -Fz -aV -Cp -aV -CQ -cz -bW -bW -bW -bW -bW -bW -dA +OE +zV +fK +zV +zV +zG +QW +QW +QW +QW +QW +QW +dk dL -dS +dk bU -es -ec -ec -et -cM -eT +Aj +ds +ds +Nz +Av +aN Vx Vx Vx Vx Vx -eT -fJ -fN -fV +aN +RY +fh +ds gd -gm -gD -gB +nO +Vy +nO gd -uD -uD -uD -uD -uD +Sq +Sq +Sq +Sq +Sq gd -iC -iW -je +Kr +nO +nO jm -jD -jW -kl -kE -jW -la +Vg +km +Ux +ZT +km +ke ll jx jx @@ -15235,62 +14277,62 @@ Qz Qz Qz Qz -ab +Wg ai ai ap ap -UK -bg -bp -bI +vN +WY +zV +oU bU -cj -cx -cx -da -bW -bW -dA +SJ +dk +dk +dk +QW +QW +dk dL -dT +hB bU -ed -ec -ec -et -cM +iQ +ds +ds +Nz +Av Vx Vx -NI -UZ -UN +gO +KI +Hh Vx Vx -fJ -fP -fW -ge -gn -gE -gB -Iv -Xg -Xg -Xg -Xg -Xg -na -iD -iX -je +RY +fo +Cz +ZG +YQ +rt +nO +PO +pQ +pQ +pQ +pQ +pQ +ms +rx +nO +nO jm -jE -jW -kk -jW -jW -lb +EY +km +nn +km +km +eE ll jx Qz @@ -15383,60 +14425,60 @@ ah ah ao ao -bh -bq -bJ +HC +mH +qG bU ck cy cL -db -bW -bW -dB -dM -dU +tJ +QW +QW +uX +Hb +hB dW -ec -ec -ec -et -cM +ds +ds +ds +Nz +eb Vx -Ib -Lk -yu -Vk -Rx +qv +ok +Gx +rr +EU Vx -fJ -fQ -fV -gf -go -gF -gB -Iv -Xg -Xg -Xg -Xg -Xg -na -iE -iX -jf +CL +FZ +ds +iN +nO +qA +nO +PO +pQ +pQ +pQ +pQ +pQ +ms +ZJ +nO +Mz jm -jF -jX -km -kF -kS -lc +QN +Gu +ej +SN +fC +Lk lm lu lu -lz +el Qz Qz Qz @@ -15533,46 +14575,46 @@ bU bU bU bU -cz -dV +zG +Sz bU bU bU bU -ec -ec -ec -eu -eC -LV -Ki -Ol -lH -ye -xw -ZP -fJ -fQ -fX +ds +ds +ds +uf +OZ +HB +lV +rl +JD +hm +uo +AP +Ht +FZ +hj gd -gm -gF -gB -Iv -Xg -Xg -Xg -Xg -Xg -na -iF -iX -je +nO +qA +nO +PO +pQ +pQ +pQ +pQ +pQ +ms +tj +nO +nO jm jm jm -kn -kG +GJ +ty jl jl ll @@ -15668,58 +14710,58 @@ Qz az az aL -br -bK -bX +fX +vo +jf cl aX -aM -aA -aA -aA -aA -dN -aA -dX -ec -eg -eg -et -cM -tl -xe -Fk -Ur -Mb -xe -tl -fJ -fQ -ec -Pk -gp -gF -gB +nu +nu +nu +nu +nu +kO +nu +nu +ds +eF +Ib +il +Ae +Ka +Lu +MH +El +im +Lu +Ka +Ht +FZ +ds +DD +Nu +XQ +nO gd -hH -hH -ib -hH -hH +Zo +Zo +tr +Zo +Zo gd -iG -iY -je +Kr +nO +nO jp -Oh -jY -ko -kH -jY -jY -ln -lv -lB +va +EO +Ir +EO +EO +EO +eU +QH +DC Qz Qz Qz @@ -15808,60 +14850,60 @@ Qz Qz Qz aK -Hw +To bi -bs -bw -bY +LE +PM +fX bv -cA -cM -dc -dl -dl -dl -dl -dl -dY -ee -eh -em -ev -cM +eP +nu +nu +ng +ng +ng +ng +ng +nu +eY +Tf +sc +Lr +Ul Vx -FY -FY -eZ +TJ +TJ +El Kd tX Vx -fJ -fQ -ec +YY +FZ +ds gd -gq -gG -gX -hr -gX -gX -gX -gX -gX -hr -iH -iZ -jg -jq -jH -jZ -kp -kI -kI -kI -lo -lw -lB +FP +SK +hE +gy +hE +hE +hE +hE +hE +gy +VT +YQ +YQ +gT +Vo +Vo +fZ +Gs +Gs +Gs +pn +EO +DC Qz Qz Qz @@ -15950,60 +14992,60 @@ Qz Qz Qz aK -nm +xZ bi -bt -bL -bZ +fX +Ig +fX cm -dp -cN -dd +rE +TU +WV dm dm dm dm dm -dZ -ee -ts -en -ev -cM -oQ -HL -nk -eZ +Sx +eY +mU +CG +Lr +Av +tO +rH +aV +El qQ VV -TN -fJ -fQ -ec +Uk +RY +FZ +ds gd -gr -gH -gB -hs -gB -gB -gB -gB -gB -hs -iI -gB -hu -jr -jI -ka -kq -kI -kI -kI -lp -lw -lB +dQ +Yq +nO +TL +nO +nO +nO +nO +nO +TL +Ii +nO +nO +Ns +EO +EO +Ph +Gs +Gs +Gs +UK +EO +DC Qz Qz Qz @@ -16099,53 +15141,53 @@ bv bv cn aX -cO -dd +wz +WV dm dq dq dq dm -dZ -ec -SB -Vu -Ry -cM -VX -oe -Yx -eZ +Sx +ds +iM +Vm +UN +Av +wh +pm +sg +El qQ VV -TN -fJ -fQ -ec -Pk -gs -gI -gY +Uk +RY +FZ +ds +DD +zE +Qu +fR gd -hI -hI -ic -hI -hI +iC +iC +LD +iC +iC gd -iJ -iW -je +Ii +nO +nO js -Kx -kb -kr -kJ -kb -kb -lq -lx -lB +YK +EO +Ir +EO +EO +EO +Tb +zk +DC Qz Qz Qz @@ -16241,48 +15283,48 @@ bv tT co aX -cP -dd +OV +WV dm dq dC dq dm -dZ -ec -ec -ec -et -cM +Sx +ds +ds +ds +Nz +Av Vx -GX -JS -eZ +Ga +fy +El Kd FA Vx -fJ -fQ -fY +RY +FZ +hj gd -gm -gI -gB -Iv -Xg -Xg -Xg -Xg -Xg -na -iK -iX -jh -jt -jt -jt -ks +nO kK +nO +PO +pQ +pQ +pQ +pQ +pQ +ms +zt +nO +Dx +jt +jt +jt +Al +sz jw jw lr @@ -16377,60 +15419,60 @@ ar az aL aL -bj -bw +oI +PM bv cb cp aX -cQ -dd +St +WV dm dq dq dq dm -dZ -ec -ec -ec -et -cM +Sx +ds +ds +ds +Nz +Av Vx -NZ -Tp -yO -yD -oa +Mv +Lu +Bj +Tu +uq Vx -fJ -fQ -fZ -gg -gt -gI -gB -Iv -Xg -Xg -Xg -Xg -Xg -na -iL -iX -jf +RY +FZ +ds +ID +nO +kK +nO +PO +pQ +pQ +pQ +pQ +pQ +ms +SE +nO +Mz jt -jK -kc -kt -kL -kT -ld +HQ +nB +Py +oy +sl +Eu ls ly ly -lD +OK Qz Qz Qz @@ -16513,7 +15555,7 @@ Qz Qz Qz Qz -ac +sU aj ar as @@ -16525,50 +15567,50 @@ aX aX aX cB -cO -dd +wz +WV dm dm dm dm dm -dZ -ec -ec -ec -et -cM +Sx +ds +ds +ds +Nz +Av Vx Vx -VI -mY -Tp +vc +Hd +Lu Vx Vx -fJ -fQ -fV -gf -go -gI -gB -Iv -Xg -Xg -Xg -Xg -Xg -na -iM -iX -je +RY +FZ +ds +iN +nO +kK +nO +PO +pQ +pQ +pQ +pQ +pQ +ms +QE +nO +nO jt -jL -kd -ku -kM -kd -le +fl +hh +Fn +YL +hh +Wv lr jS Qz @@ -16659,58 +15701,58 @@ Qz ak as as -aM -aA -aA -bx -aA -aA -aA -aA -cR -de -dn -dn -dn -dn -dn -ea -ec -ec -ec -et -cM -eT +nu +nu +nu +DU +nu +nu +nu +nu +wz +nu +gt +gt +gt +gt +gt +nu +ds +ds +ds +Nz +Av +aN Vx -Qj -Qj -Qj +YF +YF +YF Vx -eT -fJ -fQ -fZ +aN +RY +FZ +ds gd -gm -gI -gB +nO +kK +nO gd -Ow -Ow -Ow -Ow -Ow +OA +OA +OA +OA +OA gd -iN -iY -je +Ii +nO +nO jt -jM -kd -kv -kv -kd -lf +XO +hh +FT +FT +hh +IN lr jS jS @@ -16800,62 +15842,62 @@ Qz Qz ak as -aA +KT +Pr +QY +os +QY +bm +QY +Ge +QY +VJ +QY +QY +QY +Mp +QY +os +QY +Cz +Cz +Cz +LN +dr +aN +aN +aN +aN +aN +aN aN -aY -bk -aY -bM -aY -cq -aY -cS -aY -aY -aY -dD -aY -bk -eb -eb -eb -eb -eF dr -eJ -eT -eT -eT -eT -eT -eT -dr -fR -ec +ik +ds gd -gm -gJ -gZ -ht -gB -gB -gB -gB -gB -ip -iO -gB -ho -ju -jN -kd -kw -kN -kd -lg +nO +kK +nO +oQ +nO +nO +nO +nO +nO +oQ +Kv +nO +nO +vr +nq +hh +FQ +Kk +hh +nq lr jS -lN +HH Qz Qz Qz @@ -16943,61 +15985,61 @@ Qz al at aB -aO +CX aB aB by -bN +xx by by cC -cT +FY cC cC dr -dE +uy dr dr -ec -ec -ec -ec -ex +Ll +ds +ds +ds +jM dr dr -eU -eU -eU -eU -eU +Tz +Tz +Tz +Tz +Tz dr dr -fQ -ec +FZ +ds gh -gm -gB -gB -gB -gB -gB -gB -gB -gB -gB -iI -gB -hu -jv -jO -kd +nO kx -kO -kd -lh +pK +pX +nO +nO +nO +nO +nO +qH +nA +nO +nO +gV +nq +hh +Rp +Sm +hh +wa lr jS -lN +HH Qz Qz Qz @@ -17096,47 +16138,47 @@ lQ cU df cC -ds -dF -dO +oR +Sg +HO dr -ec -ec -ec -eo -ey -fB -eB -eV -eB -fo -fy -fD -fD -fK -fS -ec +Ll +ds +ds +ds +uc +tZ +QT +ni +QT +fG +yY +Xd +Xd +XZ +QU +ds gd -gu -gK -go -hu -gK -gK -gK -gK -gK -go -iP -gK -ji +nO +nO +kK +nO +nO +nO +nO +nO +nO +nO +Ii +nO +wS jt -jP -ke -ky -kP -kU -li +TE +WB +TZ +xt +Rc +By lr jS lO @@ -17238,50 +16280,50 @@ cE cV dg cC -dt +Ex dG as as as as ek -ec -ec -ec -ec -eL -ec -LW -Fu -ec -ec -ec -fw -ec +ds +ds +yk +ds +Lh +ds +uK +wn +ds +ds +ds +kP +ds gi gi gi -ha -hv +fQ +cT lK gi gi gi gi -ha -iQ +jq +Ln lK gi jt -jQ -kf -kz -kQ -kV -lg +nq +qT +Pd +ih +Xq +nq lr jS -lN +HH Qz Qz Qz @@ -17388,42 +16430,42 @@ ar ar as as -ep -ec -ec -eL -eX -fp -fz -ec -fH -ec -ec -ec +ds +ds +wT +Lh +pT +cA +Mb +ds +Ve +ds +ds +ds gi -gv -gL -hb -hw -hK -hU -id -hK -hU -hb -iR -id -jj +yw +vf +if +Bg +UY +NC +zQ +UY +NC +NQ +ea +Bg +yw jt -jR -kg -kA -kA -kA -lj +nq +qD +nq +nq +nq +nq lr jS -lN +HH Qz Qz Qz @@ -17534,34 +16576,34 @@ as as as dG -eX -fh -fA +pT +eg +ML as as as as ga ga -gw -gM -hc -hx -hL -hV -hX -ie -hV -iq -iS -ih -jk +wM +Bg +jF +Bg +jN +go +Bg +zg +go +PV +mI +Bg +yw jw jw jw jw -BL -BL +Wv +Wv jw lr jS @@ -17649,19 +16691,19 @@ Qz Qz Qz Qz -ad +fA an av av -aS +Rq av av bD -bR +SD bD bD cH -cX +le cH cH ar @@ -17676,9 +16718,9 @@ ar ar ar ak -fg -fg -fg +sn +sn +sn ar ar ar @@ -17686,28 +16728,28 @@ ar gb ga ga -gN -hd -hy -hM +Bg +Bg +Bg hW -hX -hM +Hg +Bg hW -ir -iT -ja +Hg +Ef +mz +oi ga jw jS jS jS -kR -kR +GF +GF jS lt ly -lD +OK Qz Qz Qz @@ -17807,7 +16849,7 @@ Qz Qz Qz Qz -dH +aI Qz Qz Qz @@ -17817,7 +16859,7 @@ Qz Qz Qz Qz -dH +aI Qz Qz Qz @@ -17829,15 +16871,15 @@ gb gb ga ga -he -hz -hN -hN -hN -hN -hN -is -iU +fm +Ni +Ni +qd +DX +DX +DX +BB +nY ga ga gb @@ -17972,13 +17014,13 @@ gb gb ga hf -hA -gM -hX -hX -hX -ih -it +kd +Bg +ei +Bg +HP +DG +XJ hf ga gb @@ -18115,11 +17157,11 @@ gb gb hf ga -gN -hY -hY -hY -ii +Bg +Bg +Bg +Bg +wY ga hf gb @@ -18257,11 +17299,11 @@ Qz gb hg ga -mD -mD -Ul -Be -Be +Wo +Wo +Wu +AK +AK ga hg gb @@ -18399,11 +17441,11 @@ Qz Qz hg lC -hO -hO -hO -hO -hO +oG +oG +oG +oG +oG lC hg Qz @@ -18539,7 +17581,7 @@ Qz Qz Qz Qz -hh +HF Qz Qz Qz @@ -18547,7 +17589,7 @@ Qz Qz Qz Qz -hh +HF Qz Qz Qz From f22a658ea108bf41bcc0201766d41a6336c98f4b Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Thu, 28 May 2020 13:49:34 -0400 Subject: [PATCH 15/38] POL: Water icon coloring --- code/modules/mob/living/carbon/human/update_icons.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/update_icons.dm b/code/modules/mob/living/carbon/human/update_icons.dm index e3c548bb41..b2530293cf 100644 --- a/code/modules/mob/living/carbon/human/update_icons.dm +++ b/code/modules/mob/living/carbon/human/update_icons.dm @@ -1060,7 +1060,10 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon() if(!depth || lying) return - overlays_standing[WATER_LAYER] = image(icon = 'icons/mob/submerged.dmi', icon_state = "human_swimming_[depth]", layer = BODY_LAYER+WATER_LAYER) //TODO: Improve + var/atom/A = loc // We'd better be swimming and on a turf + var/image/I = image(icon = 'icons/mob/submerged.dmi', icon_state = "human_swimming_[depth]", layer = BODY_LAYER+WATER_LAYER) //TODO: Improve + I.color = A.color + overlays_standing[WATER_LAYER] = I apply_layer(WATER_LAYER) From de6b5f86235d1364593a5de6b4aaac08d8a00b06 Mon Sep 17 00:00:00 2001 From: H0lySquirr3l <34927367+H0lySquirr3l@users.noreply.github.com> Date: Thu, 28 May 2020 14:58:07 -0500 Subject: [PATCH 16/38] Update alienwhitelist.txt --- config/alienwhitelist.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/config/alienwhitelist.txt b/config/alienwhitelist.txt index 89911c22be..5d0ad8b80c 100644 --- a/config/alienwhitelist.txt +++ b/config/alienwhitelist.txt @@ -57,3 +57,4 @@ voidalynx - Protean nerdass - Protean xonkon - Protean phoenixx0 - Vox +rubyflamewing - Protean From cff9440d2eb7118a1997049bdfed25c45a580b25 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Thu, 28 May 2020 16:42:46 -0400 Subject: [PATCH 17/38] Tweak railguns, add flechette pistol --- .../projectiles/ammunition/magnetic.dm | 9 +- .../projectiles/guns/magnetic/magnetic.dm | 93 +++++++++++++++--- .../guns/magnetic/magnetic_railgun.dm | 74 +++++++++----- .../projectiles/projectile/magnetic.dm | 7 ++ icons/mob/items/lefthand_guns.dmi | Bin 86234 -> 85106 bytes icons/mob/items/righthand_guns.dmi | Bin 90944 -> 90287 bytes icons/obj/ammo.dmi | Bin 27556 -> 27697 bytes icons/obj/railgun.dmi | Bin 8126 -> 10649 bytes 8 files changed, 140 insertions(+), 43 deletions(-) diff --git a/code/modules/projectiles/ammunition/magnetic.dm b/code/modules/projectiles/ammunition/magnetic.dm index 787ca15302..fc748b05df 100644 --- a/code/modules/projectiles/ammunition/magnetic.dm +++ b/code/modules/projectiles/ammunition/magnetic.dm @@ -2,7 +2,7 @@ name = "flechette magazine" desc = "A magazine containing steel flechettes." icon = 'icons/obj/ammo.dmi' - icon_state = "5.56" + icon_state = "caseless-mag" w_class = ITEMSIZE_SMALL matter = list(DEFAULT_WALL_MATERIAL = 1800) origin_tech = list(TECH_COMBAT = 1) @@ -11,4 +11,9 @@ /obj/item/weapon/magnetic_ammo/examine(mob/user) . = ..() - . += "There [(remaining == 1)? "is" : "are"] [remaining] flechette\s left!" \ No newline at end of file + . += "There [(remaining == 1)? "is" : "are"] [remaining] flechette\s left!" + +/obj/item/weapon/magnetic_ammo/pistol + name = "flechette magazine (small)" + desc = "A magazine containing smaller steel flechettes, intended for a pistol." + icon_state = "caseless-mag-short" diff --git a/code/modules/projectiles/guns/magnetic/magnetic.dm b/code/modules/projectiles/guns/magnetic/magnetic.dm index ae12ce034c..bbdcc29936 100644 --- a/code/modules/projectiles/guns/magnetic/magnetic.dm +++ b/code/modules/projectiles/guns/magnetic/magnetic.dm @@ -1,3 +1,10 @@ +#define ICON_CELL 1 +#define ICON_CAP 2 +#define ICON_BAD 4 +#define ICON_CHARGE 8 +#define ICON_READY 16 +#define ICON_LOADED 32 + /obj/item/weapon/gun/magnetic name = "improvised coilgun" desc = "A coilgun hastily thrown together out of a basic frame and advanced power storage components. Is it safe for it to be duct-taped together like that?" @@ -9,8 +16,8 @@ w_class = ITEMSIZE_LARGE var/obj/item/weapon/cell/cell // Currently installed powercell. - var/obj/item/weapon/stock_parts/capacitor/capacitor // Installed capacitor. Higher rating == faster charge between shots. - var/obj/item/weapon/stock_parts/manipulator/manipulator // Installed manipulator. Mostly for Phoron Bore, higher rating == less mats consumed upon firing + var/obj/item/weapon/stock_parts/capacitor/capacitor // Installed capacitor. Higher rating == faster charge between shots. Set to a path to spawn with one of that type. + var/obj/item/weapon/stock_parts/manipulator/manipulator // Installed manipulator. Mostly for Phoron Bore, higher rating == less mats consumed upon firing. Set to a path to spawn with one of that type. var/removable_components = TRUE // Whether or not the gun can be dismantled. var/gun_unreliable = 15 // Percentage chance of detonating in your hands. @@ -21,18 +28,34 @@ var/power_cost = 950 // Cost per fire, should consume almost an entire basic cell. var/power_per_tick // Capacitor charge per process(). Updated based on capacitor rating. -/obj/item/weapon/gun/magnetic/New() + var/state = 0 + +/obj/item/weapon/gun/magnetic/Initialize() + . = ..() + // So you can have some spawn with components + if(ispath(cell)) + cell = new cell(src) + if(ispath(capacitor)) + capacitor = new capacitor(src) + capacitor.charge = capacitor.max_charge + if(ispath(manipulator)) + manipulator = new manipulator(src) + if(ispath(loaded)) + loaded = new loaded(src) + START_PROCESSING(SSobj, src) + if(capacitor) power_per_tick = (power_cost*0.15) * capacitor.rating + update_icon() - . = ..() /obj/item/weapon/gun/magnetic/Destroy() STOP_PROCESSING(SSobj, src) QDEL_NULL(cell) QDEL_NULL(loaded) QDEL_NULL(capacitor) + QDEL_NULL(manipulator) . = ..() /obj/item/weapon/gun/magnetic/get_cell() @@ -45,25 +68,56 @@ capacitor.charge(power_per_tick) else capacitor.use(capacitor.charge * 0.05) - update_icon() + + update_state() // May update icon, only if things changed. -/obj/item/weapon/gun/magnetic/update_icon() - var/list/overlays_to_add = list() +/obj/item/weapon/gun/magnetic/proc/update_state() + var/newstate = 0 + + // Parts or lack thereof if(removable_components) if(cell) - overlays_to_add += image(icon, "[icon_state]_cell") + newstate |= ICON_CELL if(capacitor) - overlays_to_add += image(icon, "[icon_state]_capacitor") + newstate |= ICON_CAP + + // Functional state if(!cell || !capacitor) - overlays_to_add += image(icon, "[icon_state]_red") + newstate |= ICON_BAD else if(capacitor.charge < power_cost) - overlays_to_add += image(icon, "[icon_state]_amber") + newstate |= ICON_CHARGE else - overlays_to_add += image(icon, "[icon_state]_green") + newstate |= ICON_READY + + // Ammo indicator if(loaded) - overlays_to_add += image(icon, "[icon_state]_loaded") + newstate |= ICON_LOADED + + // Only update if the state has changed + var/needs_update = FALSE + if(state != newstate) + needs_update = TRUE + + state = newstate + + if(needs_update) + update_icon() + +/obj/item/weapon/gun/magnetic/update_icon() + cut_overlays() + if(state & ICON_CELL) + add_overlay("[icon_state]_cell") + if(state & ICON_CAP) + add_overlay("[icon_state]_capacitor") + if(state & ICON_BAD) + add_overlay("[icon_state]_red") + if(state & ICON_CHARGE) + add_overlay("[icon_state]_amber") + if(state & ICON_READY) + add_overlay("[icon_state]_green") + if(state & ICON_LOADED) + add_overlay("[icon_state]_loaded") - overlays = overlays_to_add ..() /obj/item/weapon/gun/magnetic/proc/show_ammo() @@ -83,10 +137,10 @@ if(capacitor) . += "The installed [capacitor.name] has a charge level of [round((capacitor.charge/capacitor.max_charge)*100)]%." - if(!cell || !capacitor) + if(state & ICON_BAD) . += "The capacitor charge indicator is blinking red. Maybe you should check the cell or capacitor." else - if(capacitor.charge < power_cost) + if(state & ICON_CHARGE) . += "The capacitor charge indicator is amber." else . += "The capacitor charge indicator is green." @@ -260,3 +314,10 @@ cell = new /obj/item/weapon/cell/high capacitor = new /obj/item/weapon/stock_parts/capacitor . = ..() + +#undef ICON_CELL +#undef ICON_CAP +#undef ICON_BAD +#undef ICON_CHARGE +#undef ICON_READY +#undef ICON_LOADED \ No newline at end of file diff --git a/code/modules/projectiles/guns/magnetic/magnetic_railgun.dm b/code/modules/projectiles/guns/magnetic/magnetic_railgun.dm index c9688ab0d8..ec677a1b14 100644 --- a/code/modules/projectiles/guns/magnetic/magnetic_railgun.dm +++ b/code/modules/projectiles/guns/magnetic/magnetic_railgun.dm @@ -3,32 +3,25 @@ desc = "The Mars Military Industries MI-76 Thunderclap. A man-portable mass driver for squad support anti-armour and destruction of fortifications and emplacements." gun_unreliable = 0 icon_state = "railgun" - removable_components = FALSE - load_type = /obj/item/weapon/rcd_ammo origin_tech = list(TECH_COMBAT = 5, TECH_MATERIAL = 4, TECH_MAGNET = 4) - projectile_type = /obj/item/projectile/bullet/magnetic/slug power_cost = 300 w_class = ITEMSIZE_HUGE slot_flags = SLOT_BELT - loaded = /obj/item/weapon/rcd_ammo/large slowdown = 1 // Slowdown equals slowdown_worn, until we decide to import the system to differentiate between held and worn items fire_delay = 1 - var/initial_cell_type = /obj/item/weapon/cell/hyper - var/initial_capacitor_type = /obj/item/weapon/stock_parts/capacitor/adv + load_type = /obj/item/weapon/rcd_ammo + projectile_type = /obj/item/projectile/bullet/magnetic/slug + + cell = /obj/item/weapon/cell/hyper + capacitor = /obj/item/weapon/stock_parts/capacitor/adv + loaded = /obj/item/weapon/rcd_ammo/large + removable_components = FALSE + var/slowdown_held = 2 var/slowdown_worn = 1 var/empty_sound = 'sound/machines/twobeep.ogg' -/obj/item/weapon/gun/magnetic/railgun/New() - capacitor = new initial_capacitor_type(src) - capacitor.charge = capacitor.max_charge - - cell = new initial_cell_type(src) - if (ispath(loaded)) - loaded = new loaded - . = ..() - // Not going to check type repeatedly, if you code or varedit // load_type and get runtime errors, don't come crying to me. /obj/item/weapon/gun/magnetic/railgun/show_ammo() @@ -53,14 +46,15 @@ loaded = null visible_message("\The [src] beeps and ejects its empty cartridge.","There's a beeping sound!") playsound(src, empty_sound, 40, 1) + update_state() /obj/item/weapon/gun/magnetic/railgun/automatic // Adminspawn only, this shit is absurd. name = "\improper RHR accelerator" desc = "The Mars Military Industries MI-227 Meteor. Originally a vehicle-mounted turret weapon for heavy anti-vehicular and anti-structural fire, the fact that it was made man-portable is mindboggling in itself." icon_state = "heavy_railgun" - initial_cell_type = /obj/item/weapon/cell/infinite - initial_capacitor_type = /obj/item/weapon/stock_parts/capacitor/super + cell = /obj/item/weapon/cell/infinite + capacitor = /obj/item/weapon/stock_parts/capacitor/super fire_delay = 0 slowdown = 2 @@ -87,8 +81,8 @@ icon_state = "flechette_gun" item_state = "z8carbine" - initial_cell_type = /obj/item/weapon/cell/hyper - initial_capacitor_type = /obj/item/weapon/stock_parts/capacitor/adv + cell = /obj/item/weapon/cell/hyper + capacitor = /obj/item/weapon/stock_parts/capacitor/adv fire_delay = 0 @@ -109,6 +103,36 @@ list(mode_name="short bursts", burst=3, fire_delay=null, move_delay=5, one_handed_penalty=30, burst_accuracy=list(0,-15,-15), dispersion=list(0.0, 0.6, 1.0)), ) +/obj/item/weapon/gun/magnetic/railgun/flechette/pistol + name = "flechette pistol" + desc = "The MI-6a Ullr is a small-form-factor railgun that fires flechette rounds at high velocity. Deadly against armour, but much less effective against soft targets." + icon_state = "railpistol" + item_state = "combatrevolver" + w_class = ITEMSIZE_SMALL + + cell = /obj/item/weapon/cell/super + capacitor = /obj/item/weapon/stock_parts/capacitor + + fire_delay = 0 + + slot_flags = SLOT_BELT + + slowdown = 0 + slowdown_held = 0 + slowdown_worn = 0 + + power_cost = 100 + load_type = /obj/item/weapon/magnetic_ammo/pistol + projectile_type = /obj/item/projectile/bullet/magnetic/flechette/small + loaded = /obj/item/weapon/magnetic_ammo/pistol + removable_components = TRUE + empty_sound = 'sound/weapons/smg_empty_alarm.ogg' + + firemodes = list( + list(mode_name="semiauto", burst=1, fire_delay=0, move_delay=null, one_handed_penalty=15, burst_accuracy=null, dispersion=null), + list(mode_name="short bursts", burst=3, fire_delay=null, move_delay=5, one_handed_penalty=30, burst_accuracy=list(0,-15,-15), dispersion=list(0.0, 0.6, 1.0)), + ) + /obj/item/weapon/gun/magnetic/railgun/heater name = "coil rifle" desc = "A large rifle designed and produced after the Grey Hour." @@ -119,8 +143,8 @@ removable_components = TRUE - initial_cell_type = /obj/item/weapon/cell/device/weapon - initial_capacitor_type = /obj/item/weapon/stock_parts/capacitor + cell = /obj/item/weapon/cell/device/weapon + capacitor = /obj/item/weapon/stock_parts/capacitor fire_delay = 8 @@ -152,8 +176,8 @@ slowdown_held = 0.1 - initial_cell_type = /obj/item/weapon/cell/device/weapon - initial_capacitor_type = /obj/item/weapon/stock_parts/capacitor + cell = /obj/item/weapon/cell/device/weapon + capacitor = /obj/item/weapon/stock_parts/capacitor slot_flags = SLOT_BELT|SLOT_HOLSTER @@ -181,8 +205,8 @@ icon_state = "railgun_sifguard" item_state = "z8carbine" - initial_cell_type = /obj/item/weapon/cell/high - initial_capacitor_type = /obj/item/weapon/stock_parts/capacitor/adv + cell = /obj/item/weapon/cell/high + capacitor = /obj/item/weapon/stock_parts/capacitor/adv slot_flags = SLOT_BACK diff --git a/code/modules/projectiles/projectile/magnetic.dm b/code/modules/projectiles/projectile/magnetic.dm index 5c3b1f817b..c4e0ab5e9d 100644 --- a/code/modules/projectiles/projectile/magnetic.dm +++ b/code/modules/projectiles/projectile/magnetic.dm @@ -22,6 +22,13 @@ damage = 20 armor_penetration = 100 +/obj/item/projectile/bullet/magnetic/flechette/small + name = "small flechette" + icon_state = "flechette" + fire_sound = 'sound/weapons/rapidslice.ogg' + damage = 12 + armor_penetration = 100 + /obj/item/projectile/bullet/magnetic/flechette/hunting name = "shredder slug" armor_penetration = 30 diff --git a/icons/mob/items/lefthand_guns.dmi b/icons/mob/items/lefthand_guns.dmi index 1330c280b431e3f000ef551f033f72f25b5be1f6..e6f7078032851870aedf46570528660f20e476c8 100644 GIT binary patch literal 85106 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 literal 86234 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 diff --git a/icons/mob/items/righthand_guns.dmi b/icons/mob/items/righthand_guns.dmi index bb75b51054adff34ea43338392aeba3ecaf391f1..54dba4f49e90ffe2af4fd771d9910e0730deebe3 100644 GIT binary patch delta 51471 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

v3|o4L-I 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 GfBg>|YOgE+ diff --git a/icons/obj/ammo.dmi b/icons/obj/ammo.dmi index b34cc9d91bb3c9ebbd6f4e2fd3fff5b36f137909..1a78788c3c5808a8b6b16a130b72098f367cd294 100644 GIT binary patch delta 5761 zcmbW5c{o(>|Nqa}McH~IWG71^imZbyk&=>KL$-=26(!~%YsQu>!q_RxgtEricUdOe z+fJBCwv27YjPKFs`}^Z}UBBOTeXs9a=Q{Vf=6=2I*S($R<8`0BFq{rNgB0@auia>mMens!7F&r38x!TqPd|iPD!b{l%)kuLBk@IM=WMKb(N)_A zr1!n zs(nkCFNQ_fSGU_&O;#?*F#nTS?(R}{^P$`tYd(D@Iai~#?>WgSY~=un{=P>smK=1; z{J#21@cjXDnL+`#22DX-;=Vue1IoRZVzVC}hZhf{Uc=(WAIV^u@P&xPqdJx>w%CHy zrvgMAn*F-BH@-R$&n7Zt#7g1fhfPrN0nX&o5ai{<-!x(&ZEc=LOcaxx^ZyKE(&6(o z_;s-6!Sd5Vc<*6DKmbv8uG*GU7oJe`-%jozrJ#={0Y>qr%vZ+YO+B&G@0ds#Houeg1~FA=BlAC}MHDIN^vb=I?kg;j$k(K`WV%69c!JbZ@mzFelWQ&9 z+D&B0%M@w@AQ4hB=(=|eH^e5rBwWc8^af0kEcF3gg=l0F)IH9Y^kvZM)|LR5-;%jgrtq08CfIU7QNnvgV`H(5gO zR5qEXgDuo3(=Vb`C&=2N>vT#xE-pPUt*NpbVZ|NYb z;=DkpEjVS1bVu*(X%W4%cDCz0)MmqDC!yG*x(=W}Lw(N=NvX?*yqHBo#C2Pk2l4m^ zZRniif0hoIMVza0zgAWCXffzAiG+ac*-!X1L_*kg6W`FY|F24?VH$j!5%$6#ZKyqV zT|JI%3*HSO^0k3(yD+YElsZ&>?e~yRpFZ6R^4XlzneW^`+#Xn!mX^MD?q(NltLT%H*+9xnd$iMZ68()yBjQctimN!IcSVORo%LOHB_�<1fE<`o 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 xzUqSmo}lao7L= delta 5619 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 Date: Thu, 28 May 2020 16:47:50 -0400 Subject: [PATCH 18/38] VS: KHI rail pistol --- code/modules/projectiles/ammunition/magazines_vr.dm | 8 +++++++- .../projectiles/guns/magnetic/magnetic_railgun_vr.dm | 11 +++++++++++ code/modules/projectiles/projectile/bullets_vr.dm | 10 +++++++++- 3 files changed, 27 insertions(+), 2 deletions(-) create mode 100644 code/modules/projectiles/guns/magnetic/magnetic_railgun_vr.dm diff --git a/code/modules/projectiles/ammunition/magazines_vr.dm b/code/modules/projectiles/ammunition/magazines_vr.dm index 56221e2dde..0050ae7d47 100644 --- a/code/modules/projectiles/ammunition/magazines_vr.dm +++ b/code/modules/projectiles/ammunition/magazines_vr.dm @@ -1,3 +1,9 @@ /obj/item/ammo_magazine/m9mm/large/preban/hp // Hollow Point Version name = "magazine (9mm hollow-point)" - ammo_type = /obj/item/ammo_casing/a9mm/hp \ No newline at end of file + ammo_type = /obj/item/ammo_casing/a9mm/hp + +/obj/item/weapon/magnetic_ammo/pistol/khi + name = "flechette magazine (small, khi)" + desc = "A magazine containing smaller carbyne flechettes, intended for a pistol." + icon_state = "caseless-mag-short-alt" + remaining = 12 \ No newline at end of file diff --git a/code/modules/projectiles/guns/magnetic/magnetic_railgun_vr.dm b/code/modules/projectiles/guns/magnetic/magnetic_railgun_vr.dm new file mode 100644 index 0000000000..8cbc4ac7c2 --- /dev/null +++ b/code/modules/projectiles/guns/magnetic/magnetic_railgun_vr.dm @@ -0,0 +1,11 @@ +/obj/item/weapon/gun/magnetic/railgun/flechette/pistol/khi + name = "kitsuhana flechette pistol" + desc = "This rail pistol appears to have been 'tampered with', improving it's power storage and efficiency." + + cell = /obj/item/weapon/cell/hyper + capacitor = /obj/item/weapon/stock_parts/capacitor/hyper + + projectile_type = /obj/item/projectile/bullet/magnetic/flechette/small/khi + + load_type = /obj/item/weapon/magnetic_ammo/pistol/khi + loaded = /obj/item/weapon/magnetic_ammo/pistol/khi \ No newline at end of file diff --git a/code/modules/projectiles/projectile/bullets_vr.dm b/code/modules/projectiles/projectile/bullets_vr.dm index adcdf465b5..7b27a08942 100644 --- a/code/modules/projectiles/projectile/bullets_vr.dm +++ b/code/modules/projectiles/projectile/bullets_vr.dm @@ -18,4 +18,12 @@ icon_state = "bullet" damage = 10 taser_effect = 1 - agony = 100 \ No newline at end of file + agony = 100 + +/obj/item/projectile/bullet/magnetic/flechette/small/khi + name = "small carbyne flechette" + icon_state = "flechette" + fire_sound = 'sound/weapons/rapidslice.ogg' + damage = 18 + armor_penetration = 100 + penetrating = 10 From bd1fbd13b522baa467f9cc6c83e80c8d2799c7e5 Mon Sep 17 00:00:00 2001 From: Unknown Date: Thu, 28 May 2020 17:10:52 -0400 Subject: [PATCH 19/38] Adds Explorer weapons to Uplink Mostly adding a lil bit of variety. Holdout is equal to egun and Frontier carbine equal to laser carbine. --- code/datums/uplink/visible_weapons_vr.dm | 12 ++++++++++++ vorestation.dme | 1 + 2 files changed, 13 insertions(+) create mode 100644 code/datums/uplink/visible_weapons_vr.dm diff --git a/code/datums/uplink/visible_weapons_vr.dm b/code/datums/uplink/visible_weapons_vr.dm new file mode 100644 index 0000000000..d8df7d15eb --- /dev/null +++ b/code/datums/uplink/visible_weapons_vr.dm @@ -0,0 +1,12 @@ +/*************************************** +* Highly Visible and Dangerous Weapons * +***************************************/ +/datum/uplink_item/item/visible_weapons/holdout + name = "Holdout Phaser" + item_cost = 30 + path = /obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked + +/datum/uplink_item/item/visible_weapons/frontier + name = "Frontier Carbine" + item_cost = 75 + path = /obj/item/weapon/gun/energy/locked/frontier/carbine/unlocked diff --git a/vorestation.dme b/vorestation.dme index b723fea9b2..1a49eec745 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -447,6 +447,7 @@ #include "code\datums\uplink\uplink_categories.dm" #include "code\datums\uplink\uplink_items.dm" #include "code\datums\uplink\visible_weapons.dm" +#include "code\datums\uplink\visible_weapons_vr.dm" #include "code\datums\vending\stored_item.dm" #include "code\datums\vending\vending.dm" #include "code\datums\wires\airlock.dm" From 4ba8a44b1196a9a43790a086736a80ef2a749fd8 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Thu, 28 May 2020 18:51:09 -0400 Subject: [PATCH 20/38] Redo shuttles in Eris' floor style --- maps/tether/tether-03-surface3.dmm | 1167 +++---- maps/tether/tether-07-station3.dmm | 5088 +++++++++++++--------------- 2 files changed, 2962 insertions(+), 3293 deletions(-) diff --git a/maps/tether/tether-03-surface3.dmm b/maps/tether/tether-03-surface3.dmm index 95884b3bc1..36a9ebc62d 100644 --- a/maps/tether/tether-03-surface3.dmm +++ b/maps/tether/tether-03-surface3.dmm @@ -28320,6 +28320,22 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/heads/hop) +"bbd" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 1; + icon_state = "bay_chair_preview" + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/shuttle/tourbus/cockpit) "bbi" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/light, @@ -28535,6 +28551,13 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) +"bfI" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 1; + icon_state = "bay_chair_preview" + }, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/shuttle/tourbus/cockpit) "bhu" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -28650,12 +28673,6 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) -"bKm" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/shuttle/tourbus/general) "bKS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -28742,6 +28759,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) +"coe" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 4; + icon_state = "bay_chair_preview" + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) "cpd" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -28785,6 +28809,10 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) +"crz" = ( +/obj/machinery/computer/ship/sensors, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/shuttle/tourbus/cockpit) "cwI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -28803,6 +28831,16 @@ /obj/machinery/light/small, /turf/simulated/floor/wood, /area/library) +"cBd" = ( +/obj/structure/fuel_port{ + pixel_x = 1; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/steel/danger, +/area/shuttle/tourbus/general) "cFA" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -28855,19 +28893,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"cMs" = ( -/obj/machinery/power/smes/buildable{ - charge = 500000 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/tourbus/engines) "cRi" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -28918,20 +28943,6 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) -"cZe" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 4; - icon_state = "bay_chair_preview" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 9; - icon_state = "bordercolor" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/shuttle/tourbus/general) "dfq" = ( /obj/machinery/door/airlock/glass, /obj/machinery/door/firedoor/glass, @@ -28955,21 +28966,6 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"dhv" = ( -/obj/machinery/computer/ship/sensors, -/turf/simulated/floor/tiled/white, -/area/shuttle/tourbus/cockpit) -"dhS" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 8; - icon_state = "bay_chair_preview" - }, -/obj/effect/floor_decal/rust/part_rusted1{ - dir = 8; - icon_state = "part_rusted1" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/shuttle/tourbus/general) "dmH" = ( /obj/structure/cable/green{ d1 = 1; @@ -29009,6 +29005,34 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) +"dsn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8; + icon_state = "steel_decals_central5" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4; + icon_state = "steel_decals_central5" + }, +/obj/machinery/door/airlock/glass_external{ + icon_state = "door_locked"; + id_tag = "tourbus_left"; + locked = 1; + req_one_access = list() + }, +/obj/machinery/button/remote/airlock{ + desiredstate = 1; + dir = 2; + icon_state = "doorctrl0"; + id = "tourbus_left"; + name = "hatch bolt control"; + pixel_x = 0; + pixel_y = 30; + req_one_access = list(19,43,67); + specialfunctions = 4 + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/tourbus/general) "dsF" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -29055,25 +29079,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"dGZ" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 4; - icon_state = "bay_chair_preview" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/shuttle/tourbus/general) -"dHR" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/shuttle/tourbus/general) "dKj" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner{ @@ -29112,6 +29117,18 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) +"dVm" = ( +/obj/machinery/door/airlock/glass{ + req_one_access = list(19,43,67) + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/tourbus/cockpit) "dVE" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -29197,29 +29214,6 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"esm" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 8; - icon_state = "bay_chair_preview" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1; - icon_state = "bordercolor" - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4; - icon_state = "borderfloorcorner2"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/shuttle/tourbus/general) "eAM" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -29249,6 +29243,23 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) +"eEU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "shuttle blast"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/tourbus/general) "eFg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -29282,6 +29293,19 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) +"eIo" = ( +/obj/machinery/power/smes/buildable{ + charge = 500000 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/bluecorner, +/area/shuttle/tourbus/engines) "eIs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -29289,6 +29313,13 @@ }, /turf/simulated/floor/wood, /area/library) +"eJl" = ( +/obj/structure/handrail{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/tourbus/cockpit) "eJm" = ( /obj/structure/cable/green{ d1 = 4; @@ -29301,35 +29332,6 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"eMW" = ( -/obj/machinery/computer/ship/engines{ - dir = 8; - icon_state = "computer" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/tourbus/cockpit) -"eNn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/bed/chair/bay/chair{ - dir = 8; - icon_state = "bay_chair_preview" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/shuttle/tourbus/general) -"eQs" = ( -/obj/effect/floor_decal/rust/part_rusted1{ - dir = 4; - icon_state = "part_rusted1" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/shuttle/tourbus/general) "eQN" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -29528,6 +29530,30 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_a) +"fYY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/bed/chair/bay/chair{ + dir = 4; + icon_state = "bay_chair_preview" + }, +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/apc; + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/engines) +"gaL" = ( +/obj/machinery/computer/ship/helm, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/shuttle/tourbus/cockpit) "ghf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -29561,30 +29587,6 @@ /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"gqX" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 6 - }, -/obj/structure/bed/chair/bay/chair{ - dir = 8; - icon_state = "bay_chair_preview" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/shuttle/tourbus/general) "gtp" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -29592,29 +29594,29 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"guv" = ( -/obj/structure/bed/chair/bay/chair{ +"gwY" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 4; - icon_state = "bay_chair_preview" + icon_state = "steel_decals_central5" }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8; + icon_state = "steel_decals_central5" }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 +/obj/machinery/door/airlock/glass_external/public{ + frequency = 1380; + id_tag = "tourbus_right" }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10; - icon_state = "borderfloorcorner2"; - pixel_x = 0 +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_dirty, +/obj/effect/map_helper/airlock/door/simple, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/shuttle/tourbus/general) "gAF" = ( /obj/structure/cable/green{ @@ -29640,17 +29642,6 @@ }, /turf/simulated/wall/shull, /area/shuttle/tourbus/general) -"gJT" = ( -/obj/structure/fuel_port{ - pixel_x = 1; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/tiled/steel_dirty, -/area/shuttle/tourbus/general) "gLd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -29824,6 +29815,17 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) +"hyk" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 8; + icon_state = "bay_chair_preview" + }, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) "hEN" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -29831,6 +29833,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/library) +"hIE" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) "hJt" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -29860,6 +29871,14 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) +"hPR" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/shuttle/tourbus/cockpit) "hYK" = ( /obj/effect/floor_decal/techfloor{ dir = 4 @@ -29922,30 +29941,6 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) -"isR" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 4; - icon_state = "steel_decals_central5" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 8; - icon_state = "steel_decals_central5" - }, -/obj/machinery/door/airlock/glass_external/public{ - frequency = 1380; - id_tag = "tourbus_right" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/effect/map_helper/airlock/door/simple, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/tourbus/general) "iBA" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -30293,6 +30288,9 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) +"kgB" = ( +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) "kjn" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -30471,6 +30469,25 @@ }, /turf/simulated/floor/wood, /area/library) +"lDl" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) +"lLM" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 4; + icon_state = "bay_chair_preview" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) "lSv" = ( /obj/structure/cable/green{ d1 = 1; @@ -30525,34 +30542,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"mfi" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 8; - icon_state = "steel_decals_central5" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 4; - icon_state = "steel_decals_central5" - }, -/obj/machinery/door/airlock/glass_external{ - icon_state = "door_locked"; - id_tag = "tourbus_left"; - locked = 1; - req_one_access = list() - }, -/obj/machinery/button/remote/airlock{ - desiredstate = 1; - dir = 2; - icon_state = "doorctrl0"; - id = "tourbus_left"; - name = "hatch bolt control"; - pixel_x = 0; - pixel_y = 30; - req_one_access = list(19,43,67); - specialfunctions = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/tourbus/general) "mjs" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -30589,6 +30578,19 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) +"mtZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/effect/floor_decal/rust/part_rusted1{ + dir = 4; + icon_state = "part_rusted1" + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) "myZ" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ @@ -30627,23 +30629,6 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/maintenance/lower/medsec_maintenance) -"mDr" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "shuttle blast"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/shuttle/tourbus/general) "mFq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -30676,44 +30661,17 @@ /obj/item/weapon/reagent_containers/glass/beaker/vial/imidazoline, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"mIX" = ( +"mQV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/power/terminal, +/obj/structure/cable/green, /obj/structure/bed/chair/bay/chair{ - dir = 4; + dir = 8; icon_state = "bay_chair_preview" }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/shuttle/tourbus/general) -"mJR" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 1; - icon_state = "bay_chair_preview" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/tourbus/cockpit) -"mPg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 8 - }, -/obj/structure/bed/chair/bay/chair{ - dir = 4; - icon_state = "bay_chair_preview" - }, -/turf/simulated/floor/tiled/steel_dirty, +/turf/simulated/floor/tiled/eris/dark/golden, /area/shuttle/tourbus/general) "mRs" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ @@ -30807,39 +30765,6 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) -"noN" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 9 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28; - req_access = list(67) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/bed/chair/bay/chair{ - dir = 4; - icon_state = "bay_chair_preview" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/shuttle/tourbus/general) "nui" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -30849,6 +30774,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) +"nwO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) "nHF" = ( /obj/structure/table/gamblingtable, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -30867,18 +30801,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"nXl" = ( -/obj/machinery/door/airlock/glass{ - req_one_access = list(19,43,67) - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/tourbus/cockpit) "obl" = ( /obj/structure/cable/green{ d1 = 4; @@ -30895,31 +30817,27 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) +"oiU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/bed/chair/bay/chair{ + dir = 8; + icon_state = "bay_chair_preview" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) "olG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"onV" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/tether/surfacebase/shuttle_pad; - base_turf = /turf/simulated/floor/reinforced; - docking_controller = "tourbus_pad"; - landmark_tag = "tourbus_dock"; - name = "Tourbus Pad" - }, -/obj/effect/overmap/visitable/ship/landable/tourbus, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/shuttle/tourbus/general) "ooM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /turf/simulated/floor/tiled/monofloor{ @@ -31166,6 +31084,16 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) +"pmy" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 4; + icon_state = "bay_chair_preview" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) "pzH" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -31207,6 +31135,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) +"pIE" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 8; + icon_state = "bay_chair_preview" + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) "pJL" = ( /obj/structure/cable/green{ d1 = 1; @@ -31240,22 +31175,23 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"qff" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/blue/bordercorner2, +"qfv" = ( +/obj/machinery/light/small, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/door/window/southleft{ + dir = 1; + icon_state = "left"; + req_one_access = list(19,43,67) + }, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 + dir = 9 }, -/obj/machinery/power/terminal, -/obj/structure/cable/green, -/obj/structure/bed/chair/bay/chair{ - dir = 8; - icon_state = "bay_chair_preview" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/shuttle/tourbus/general) +/turf/simulated/floor/tiled/eris/dark/bluecorner, +/area/shuttle/tourbus/engines) "qfz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -31298,6 +31234,23 @@ "qwm" = ( /turf/simulated/wall/shull, /area/shuttle/tourbus/engines) +"qzR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "shuttle blast"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/tourbus/general) "qCn" = ( /obj/structure/bed/chair/wood{ dir = 8 @@ -31338,6 +31291,31 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) +"qSw" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/bed/chair/bay/chair{ + dir = 4; + icon_state = "bay_chair_preview" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) "qWU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /turf/simulated/wall/shull, @@ -31379,35 +31357,23 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) -"rjV" = ( -/obj/structure/bed/chair/bay/chair{ +"rdG" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/bluecorner, +/area/shuttle/tourbus/engines) +"rkV" = ( +/obj/machinery/computer/ship/engines{ dir = 8; - icon_state = "bay_chair_preview" + icon_state = "computer" }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/shuttle/tourbus/general) -"rpg" = ( -/obj/structure/handrail{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/steel_dirty, +/turf/simulated/floor/tiled/eris/white/orangecorner, /area/shuttle/tourbus/cockpit) "rxh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ @@ -31450,6 +31416,10 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) +"rHg" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/shuttle/tourbus/cockpit) "rMS" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -31460,6 +31430,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) +"rXC" = ( +/obj/machinery/computer/shuttle_control/explore/tourbus, +/obj/machinery/light/small{ + dir = 1; + icon_state = "bulb1" + }, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/shuttle/tourbus/cockpit) "rXW" = ( /obj/effect/floor_decal/techfloor{ dir = 1 @@ -31492,38 +31470,30 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) +"sgb" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 4; + icon_state = "bay_chair_preview" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) "sla" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"sur" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 +"stP" = ( +/obj/machinery/shipsensors{ + dir = 1 }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/bed/chair/bay/chair{ - dir = 4; - icon_state = "bay_chair_preview" - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/apc; - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/shuttle/tourbus/engines) +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/light/small, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/tourbus/cockpit) "suT" = ( /obj/structure/cable/green{ d1 = 4; @@ -31545,23 +31515,6 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) -"sEq" = ( -/obj/machinery/light/small, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/door/window/southleft{ - dir = 1; - icon_state = "left"; - req_one_access = list(19,43,67) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/tourbus/engines) "sFW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -31614,6 +31567,14 @@ }, /turf/simulated/floor/tiled/monofloor, /area/crew_quarters/bar) +"sRY" = ( +/obj/effect/floor_decal/rust/part_rusted1, +/obj/machinery/atmospherics/binary/pump, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) "sSK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -31700,35 +31661,22 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) -"tdA" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 4; - icon_state = "bay_chair_preview" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1; - icon_state = "bordercolor" - }, -/obj/effect/floor_decal/borderfloor/corner2{ +"tpu" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ dir = 1 }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 1; - icon_state = "bordercolorcorner2" +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "shuttle blast"; + name = "Shuttle Blast Doors"; + opacity = 0 }, -/turf/simulated/floor/tiled/steel_dirty, -/area/shuttle/tourbus/general) -"tla" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/eris/under, /area/shuttle/tourbus/cockpit) "tqY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -31803,15 +31751,6 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"tKs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/shuttle/tourbus/general) "tRg" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloor, @@ -31836,23 +31775,6 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"tSk" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "shuttle blast"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/shuttle/tourbus/cockpit) "tWn" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 8 @@ -31869,6 +31791,17 @@ /obj/structure/table/steel, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) +"tYO" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 8; + icon_state = "bay_chair_preview" + }, +/obj/effect/floor_decal/rust/part_rusted1{ + dir = 8; + icon_state = "part_rusted1" + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) "tZw" = ( /obj/structure/sign/biohazard{ pixel_y = 32 @@ -31888,34 +31821,6 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"ubn" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 6 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - dir = 8; - frequency = 1380; - id_tag = "tourbus_docker"; - pixel_x = 28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/structure/bed/chair/bay/chair{ - dir = 8; - icon_state = "bay_chair_preview" - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable, -/turf/simulated/floor/tiled/steel_dirty, -/area/shuttle/tourbus/general) "ueU" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -31933,6 +31838,37 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) +"ufi" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 8; + icon_state = "bay_chair_preview" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) +"umI" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/tether/surfacebase/shuttle_pad; + base_turf = /turf/simulated/floor/reinforced; + docking_controller = "tourbus_pad"; + landmark_tag = "tourbus_dock"; + name = "Tourbus Pad" + }, +/obj/effect/overmap/visitable/ship/landable/tourbus, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) "uxo" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -31956,27 +31892,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) -"uyk" = ( -/obj/machinery/shipsensors{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/steel_dirty, -/area/shuttle/tourbus/cockpit) -"uDa" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 8; - icon_state = "bay_chair_preview" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/shuttle/tourbus/general) "uFI" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -32033,17 +31948,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"vfB" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/tourbus/engines) "viF" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ @@ -32199,22 +32103,6 @@ /obj/machinery/photocopier, /turf/simulated/floor/wood, /area/library) -"wqP" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 1; - icon_state = "bay_chair_preview" - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/tourbus/cockpit) "wrA" = ( /obj/structure/cable/green{ d1 = 1; @@ -32243,23 +32131,6 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"wzi" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "shuttle blast"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/shuttle/tourbus/general) "wGK" = ( /obj/structure/bed/chair/wood{ dir = 1 @@ -32273,10 +32144,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"wNz" = ( -/obj/machinery/computer/ship/helm, -/turf/simulated/floor/tiled/white, -/area/shuttle/tourbus/cockpit) "wPD" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -32330,14 +32197,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) -"xdJ" = ( -/obj/machinery/computer/shuttle_control/explore/tourbus, -/obj/machinery/light/small{ - dir = 1; - icon_state = "bulb1" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/tourbus/cockpit) "xdM" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloor{ @@ -32410,10 +32269,6 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) -"xoe" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/shuttle/tourbus/cockpit) "xpJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 1 @@ -32429,21 +32284,6 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"xxJ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/shuttle/tourbus/general) "xyK" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -32500,13 +32340,42 @@ /obj/random/cutout, /turf/simulated/floor/plating, /area/vacant/vacant_site/gateway) -"xHL" = ( -/obj/effect/floor_decal/rust/part_rusted1, -/obj/machinery/atmospherics/binary/pump, +"xHF" = ( /obj/structure/cable{ - icon_state = "2-4" + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/turf/simulated/floor/tiled/steel_dirty, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) +"xIM" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 8; + frequency = 1380; + id_tag = "tourbus_docker"; + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/structure/bed/chair/bay/chair{ + dir = 8; + icon_state = "bay_chair_preview" + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable, +/turf/simulated/floor/tiled/eris/dark/golden, /area/shuttle/tourbus/general) "xIO" = ( /obj/effect/floor_decal/borderfloor{ @@ -43584,13 +43453,13 @@ aJn aKa aKU aKU -rpg +eJl jvK jvK jvK -mDr +qzR jHw -mfi +dsn jHw jpB qWU @@ -43728,13 +43597,13 @@ aKU aKU jvK jvK -xoe +rHg jvK -cZe -guv -eQs -mPg -sur +coe +pmy +kgB +coe +fYY qwm qwm aKU @@ -43868,16 +43737,16 @@ ats aKD aKU aKU -tSk -wNz -wqP +tpu +gaL +bbd jvK -tdA -dGZ -tKs -mIX -noN -vfB +coe +sgb +mtZ +lLM +qSw +rdG qom aKU avs @@ -44010,16 +43879,16 @@ aJn aKa aKU aKU -tSk -xdJ -tla -nXl -tKs -bKm -gJT -xHL -xxJ -sEq +tpu +rXC +hPR +dVm +nwO +lDl +cBd +sRY +xHF +qfv qom aKU aOI @@ -44152,16 +44021,16 @@ aJn aKa aKU aKU -tSk -dhv -mJR +tpu +crz +bfI jvK -esm -dhS -dHR -eNn -qff -cMs +pIE +tYO +hIE +oiU +mQV +eIo fNt aKU aOI @@ -44296,13 +44165,13 @@ aKU aKU jvK jvK -eMW +rkV jvK -uDa -rjV -onV -gqX -ubn +pIE +hyk +umI +ufi +xIM qwm qwm aKU @@ -44436,13 +44305,13 @@ aJn aKa aKU aKU -uyk +stP jvK jvK jvK -wzi +eEU jHw -isR +gwY jHw gHh qWU diff --git a/maps/tether/tether-07-station3.dmm b/maps/tether/tether-07-station3.dmm index 10ab6af956..03280b9bf6 100644 --- a/maps/tether/tether-07-station3.dmm +++ b/maps/tether/tether-07-station3.dmm @@ -1901,15 +1901,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"adi" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) "adj" = ( /turf/simulated/wall/rshull, /area/shuttle/excursion/general) @@ -2057,12 +2048,6 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor, /area/maintenance/station/ai) -"ady" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/brown, -/obj/structure/curtain/open/bed, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/general) "adz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -2078,76 +2063,6 @@ /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"adB" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) -"adC" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "shuttle blast"; - name = "Shuttle Blast Doors"; - pixel_x = -25; - pixel_y = -21; - req_access = list(67) - }, -/obj/structure/bed/chair/bay/comfy/blue{ - dir = 1; - icon_state = "bay_comfychair_preview"; - pixel_y = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/excursion/cockpit) -"adD" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/excursion/cockpit) -"adE" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/bed/chair/bay/comfy/blue{ - dir = 1; - icon_state = "bay_comfychair_preview"; - pixel_y = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/excursion/cockpit) "adF" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -2262,18 +2177,6 @@ "adV" = ( /turf/simulated/wall/r_wall, /area/maintenance/station/ai) -"adW" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/rack/shelf, -/obj/item/weapon/tank/oxygen, -/obj/item/device/suit_cooling_unit, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/pilot, -/obj/item/clothing/head/helmet/space/void/pilot, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/general) "adX" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -2288,94 +2191,10 @@ }, /turf/simulated/floor/tiled, /area/security/eva) -"adY" = ( -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/general) -"adZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_external{ - icon_state = "door_locked"; - id_tag = "expshuttle_door_cargo"; - locked = 1; - req_one_access = list() - }, -/obj/machinery/button/remote/airlock{ - desiredstate = 1; - dir = 4; - icon_state = "doorctrl0"; - id = "expshuttle_door_cargo"; - name = "hatch bolt control"; - pixel_x = -32; - req_one_access = list(19,43,67); - specialfunctions = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) -"aea" = ( -/obj/machinery/computer/ship/engines{ - dir = 1; - icon_state = "computer" - }, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/cockpit) -"aeb" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/excursion/cockpit) -"aec" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) "aed" = ( /obj/structure/railing, /turf/space, /area/space) -"aeg" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1; - icon_state = "bulb1" - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) "aeh" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -2613,16 +2432,6 @@ }, /turf/simulated/floor/tiled/white, /area/security/security_bathroom) -"aex" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/excursion/general) "aey" = ( /turf/simulated/floor/carpet, /area/security/breakroom) @@ -3060,40 +2869,12 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"afg" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) "afh" = ( /obj/machinery/light/spot{ pixel_y = 32 }, /turf/simulated/wall/rshull, /area/shuttle/excursion/general) -"afi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5; - icon_state = "intact-scrubbers" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/general) -"afj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/general) "afl" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, @@ -3232,28 +3013,6 @@ }, /turf/simulated/floor/tiled/dark, /area/security/security_processing) -"afx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch{ - req_one_access = list(67) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/excursion/general) "afy" = ( /turf/simulated/wall/r_wall, /area/ai) @@ -3481,14 +3240,6 @@ }, /turf/simulated/floor/bluegrid, /area/ai) -"afV" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/empty, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) "afW" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/borderfloorblack/corner2{ @@ -3898,31 +3649,6 @@ "agK" = ( /turf/simulated/floor, /area/maintenance/station/ai) -"agL" = ( -/obj/machinery/atmospherics/binary/pump, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -26 - }, -/obj/item/weapon/tank/phoron{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/weapon/tank/phoron{ - pixel_x = 6; - pixel_y = -6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) -"agM" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) "agN" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1; @@ -4880,13 +4606,6 @@ /obj/machinery/porta_turret/ai_defense, /turf/simulated/floor/bluegrid, /area/ai) -"ait" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) "aiu" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -5318,13 +5037,6 @@ "aiV" = ( /turf/simulated/wall, /area/maintenance/cargo) -"aiW" = ( -/obj/structure/fuel_port{ - pixel_x = 0; - pixel_y = 3 - }, -/turf/simulated/floor/tiled/monofloor, -/area/shuttle/excursion/cargo) "aiX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 6 @@ -5749,16 +5461,6 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"ajV" = ( -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, -/obj/machinery/light, -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/general) "ajW" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -5783,39 +5485,6 @@ }, /turf/simulated/floor/carpet, /area/security/breakroom) -"ajY" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1; - icon_state = "warning" - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) -"ajZ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) -"aka" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) -"akb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/closet/secure_closet/guncabinet/excursion, -/obj/item/weapon/pickaxe, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) "akc" = ( /obj/effect/floor_decal/borderfloorblack/full, /obj/effect/floor_decal/steeldecal/steel_decals5{ @@ -5887,46 +5556,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"akj" = ( -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "expshuttle_docker"; - pixel_y = 28 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1; - icon_state = "warning" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1380; - id_tag = "expshuttle_vent" - }, -/obj/structure/handrail, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) -"akk" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/airlock_sensor{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1380; - id_tag = "expshuttle_docker_pump_out_internal" - }, -/obj/structure/handrail, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/obj/effect/map_helper/airlock/atmos/pump_out_internal, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) "akl" = ( /obj/structure/cable/cyan{ d2 = 2; @@ -6066,31 +5695,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"akx" = ( -/obj/machinery/door/airlock/glass_external, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "expshuttle_docker"; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) -"aky" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8; - icon_state = "warning" - }, -/obj/machinery/atmospherics/pipe/manifold4w/visible, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) "akz" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -6269,30 +5873,6 @@ }, /turf/simulated/floor/tiled, /area/security/briefing_room) -"akQ" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) -"akR" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4; - icon_state = "warning" - }, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 8 - }, -/obj/effect/shuttle_landmark{ - base_area = /area/tether/exploration; - base_turf = /turf/simulated/floor/reinforced; - docking_controller = "expshuttle_dock"; - landmark_tag = "tether_excursion_hangar"; - name = "Excursion Shuttle Dock" - }, -/obj/effect/overmap/visitable/ship/landable/excursion, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) "akS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -6601,27 +6181,6 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/ai) -"alq" = ( -/obj/machinery/recharger, -/obj/structure/table/steel, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 2; - name = "south bump"; - pixel_y = -28; - req_access = list(67) - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) "alr" = ( /obj/effect/floor_decal/techfloor{ dir = 8 @@ -7070,28 +6629,6 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/ai) -"alY" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/structure/bed/chair/shuttle{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/medivac/general) "alZ" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green, @@ -15548,12 +15085,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"aAn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/medivac/general) "aAo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -24042,21 +23573,6 @@ "aNL" = ( /turf/simulated/wall/rshull, /area/shuttle/medivac/engines) -"aNM" = ( -/obj/machinery/door/airlock/glass_external, -/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ - dir = 5; - pixel_x = -28 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/map_helper/airlock/sensor/ext_sensor, -/obj/effect/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/medivac/general) "aNN" = ( /obj/structure/sink{ dir = 8; @@ -24120,38 +23636,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"aNS" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/medivac/engines) -"aNT" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - dir = 4; - frequency = 1380; - id_tag = "medivac_docker"; - pixel_x = -28 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/shuttle_landmark{ - base_area = /area/mine/explored/upper_level; - base_turf = /turf/simulated/floor/airless; - docking_controller = "medivac_bay"; - landmark_tag = "tether_medivac_dock"; - name = "Medivac Bay" - }, -/obj/effect/overmap/visitable/ship/landable/medivac, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/medivac/general) "aNU" = ( /obj/structure/cable/green{ d1 = 1; @@ -24169,18 +23653,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"aNV" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/medivac/general) "aNW" = ( /turf/simulated/wall/r_wall, /area/medical/virology) @@ -24236,25 +23708,6 @@ }, /turf/simulated/wall/rshull, /area/shuttle/medivac/engines) -"aOa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/medivac/engines) -"aOb" = ( -/obj/machinery/power/terminal{ - dir = 1; - icon_state = "term" - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/medivac/engines) "aOc" = ( /obj/machinery/door/airlock/glass_mining{ name = "Mining Operations"; @@ -24271,23 +23724,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/belterdock) -"aOd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_external, -/obj/effect/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/medivac/general) -"aOe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/glass_external, -/obj/effect/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/medivac/general) "aOf" = ( /obj/structure/cable/green{ d1 = 1; @@ -24307,25 +23743,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/belterdock) -"aOg" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/structure/bed/chair/shuttle{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/medivac/general) -"aOh" = ( -/turf/simulated/floor/tiled/white, -/area/shuttle/medivac/general) "aOi" = ( /obj/structure/cable/green{ d1 = 1; @@ -24452,45 +23869,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyaccess) -"aOs" = ( -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -30 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 10 - }, -/obj/item/weapon/tank/phoron, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/medivac/engines) -"aOt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/medivac/engines) "aOu" = ( /obj/machinery/firealarm{ dir = 4; @@ -24625,64 +24003,9 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"aOH" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/medivac/engines) -"aOI" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/medivac/engines) -"aOJ" = ( -/obj/machinery/door/airlock/multi_tile/metal/mait{ - dir = 2; - icon_state = "door_closed"; - req_one_access = list(5,67) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/medivac/engines) -"aOK" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/medivac/general) "aOL" = ( /turf/simulated/floor/tiled, /area/quartermaster/belterdock) -"aOM" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/borderfloorwhite/corner2, -/obj/effect/floor_decal/corner/blue/bordercorner2, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/medivac/general) -"aON" = ( -/obj/effect/floor_decal/borderfloorwhite/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/bordercorner{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/medivac/general) "aOO" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4; @@ -26712,43 +26035,12 @@ /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/station/elevator) -"aSO" = ( -/obj/structure/closet/walllocker/emerglocker{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) "aSP" = ( /obj/item/modular_computer/console/preset/command{ dir = 1 }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"aSQ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "shuttle blast"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/shuttle/excursion/general) "aSR" = ( /obj/structure/plasticflaps/mining, /obj/machinery/conveyor{ @@ -26838,15 +26130,6 @@ /obj/structure/window/reinforced/full, /turf/simulated/floor/plating, /area/crew_quarters/medical_restroom) -"aTc" = ( -/obj/structure/handrail{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) "aTd" = ( /obj/structure/cable/green{ d1 = 1; @@ -26896,19 +26179,6 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"aTi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/handrail{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/general) "aTj" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -26936,15 +26206,6 @@ }, /turf/simulated/wall, /area/quartermaster/belterdock) -"aTl" = ( -/obj/structure/table/rack/shelf, -/obj/item/weapon/tank/oxygen, -/obj/item/device/suit_cooling_unit, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/pilot, -/obj/item/clothing/head/helmet/space/void/pilot, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/general) "aTm" = ( /obj/machinery/airlock_sensor{ pixel_y = 28 @@ -26988,15 +26249,6 @@ /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"aTq" = ( -/obj/machinery/power/port_gen/pacman/mrs, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) "aTr" = ( /obj/structure/girder, /turf/simulated/floor/plating, @@ -27014,20 +26266,6 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) -"aTu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - icon_state = "intact-supply" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/general) "aTv" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -27140,20 +26378,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/station/cargo) -"aTG" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "expshuttle_vent" - }, -/obj/structure/cable/cyan, -/obj/structure/handrail{ - dir = 1 - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) "aTH" = ( /obj/machinery/conveyor{ dir = 9; @@ -27177,13 +26401,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/quartermaster/belterdock) -"aTJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 9; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) "aTK" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 1; @@ -27280,20 +26497,6 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock) -"aTT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/hatch{ - req_one_access = list(67) - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/excursion/general) "aTU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -27344,20 +26547,6 @@ }, /turf/simulated/floor/tiled/white, /area/security/security_bathroom) -"aTY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/machinery/light, -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/general) "aTZ" = ( /obj/structure/table/standard, /obj/item/weapon/paper/rogueminer, @@ -27457,10 +26646,6 @@ /obj/structure/stasis_cage, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"aUm" = ( -/obj/machinery/sleep_console, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/general) "aUn" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -27542,14 +26727,6 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock) -"aUs" = ( -/obj/structure/bed/chair/shuttle, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/general) "aUt" = ( /obj/effect/landmark/start{ name = "Medical Doctor" @@ -27597,42 +26774,12 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"aUz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/structure/handrail{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/general) "aUA" = ( /obj/machinery/computer/roguezones{ dir = 1 }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock) -"aUB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/general) "aUC" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -27646,19 +26793,6 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"aUD" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/general) -"aUE" = ( -/obj/structure/bed/chair/shuttle, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/general) "aUF" = ( /obj/machinery/camera/network/mining{ dir = 8 @@ -27694,37 +26828,6 @@ }, /turf/simulated/wall/rshull, /area/shuttle/excursion/cargo) -"aUK" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) -"aUL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) -"aUM" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) "aUN" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5; @@ -27735,29 +26838,6 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/refinery) -"aUO" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/terminal, -/obj/machinery/cell_charger, -/obj/structure/table/steel, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/obj/random/powercell, -/obj/item/stack/material/tritium{ - amount = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) "aUP" = ( /obj/structure/bed/chair/office/light, /turf/simulated/floor/tiled, @@ -27798,25 +26878,6 @@ }, /turf/simulated/floor/tiled/white, /area/security/security_bathroom) -"aUU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9; - icon_state = "warning" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1380; - id_tag = "expshuttle_vent" - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24; - req_access = list() - }, -/obj/structure/handrail, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) "aUV" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 6 @@ -27826,25 +26887,12 @@ }, /turf/simulated/floor/tiled, /area/security/security_bathroom) -"aUW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 1 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) "aUX" = ( /obj/effect/landmark/start{ name = "Shaft Miner" }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/gear) -"aUY" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/general) "aUZ" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -27862,28 +26910,6 @@ "aVc" = ( /turf/simulated/wall, /area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) -"aVd" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "expshuttle_docker_pump_out_internal" - }, -/obj/machinery/oxygen_pump{ - pixel_y = -32 - }, -/obj/structure/handrail{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/effect/map_helper/airlock/atmos/pump_out_internal, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) "aVe" = ( /obj/structure/cable/green{ d1 = 1; @@ -27900,35 +26926,6 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"aVf" = ( -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/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/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/structure/closet/emcloset/legacy, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/general) -"aVg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) "aVh" = ( /obj/machinery/light/small{ dir = 1 @@ -28031,10 +27028,6 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/quartermaster/belterdock/refinery) -"aVu" = ( -/obj/machinery/computer/ship/helm, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/cockpit) "aVv" = ( /obj/structure/sink{ pixel_y = 26 @@ -28049,12 +27042,6 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) -"aVw" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/general) "aVx" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 0; @@ -28089,39 +27076,10 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) -"aVB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "shuttle blast"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/shuttle/excursion/general) "aVC" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/refinery) -"aVD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) -"aVE" = ( -/obj/structure/closet/walllocker/emerglocker{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/general) "aVF" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -28204,11 +27162,6 @@ }, /turf/simulated/wall/rshull, /area/shuttle/excursion/cargo) -"aVR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) "aVS" = ( /obj/structure/bed/chair/shuttle{ dir = 4 @@ -28228,37 +27181,6 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/refinery) -"aVU" = ( -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8; - icon_state = "warning" - }, -/obj/machinery/conveyor_switch/oneway{ - id = "shuttle_outbound" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) -"aVV" = ( -/obj/machinery/sleep_console{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/medivac/general) "aVW" = ( /obj/structure/shuttle/window, /obj/effect/shuttle_landmark{ @@ -28297,19 +27219,6 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) -"aWa" = ( -/obj/machinery/airlock_sensor{ - pixel_x = 28 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1380; - id_tag = "medivac_docker_pump_out_internal" - }, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/obj/effect/map_helper/airlock/atmos/pump_out_internal, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/medivac/general) "aWb" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; @@ -28323,12 +27232,6 @@ /obj/machinery/door/blast/regular, /turf/simulated/wall, /area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) -"aWd" = ( -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) "aWe" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 @@ -28344,9 +27247,6 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/refinery) -"aWg" = ( -/turf/simulated/floor/tiled, -/area/shuttle/excursion/general) "aWh" = ( /obj/effect/floor_decal/carpet, /obj/effect/floor_decal/carpet{ @@ -28363,11 +27263,6 @@ }, /turf/simulated/floor/airless, /area/quartermaster/belterdock) -"aWj" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/blue/border, -/turf/simulated/floor/tiled/white, -/area/shuttle/medivac/general) "aWk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -28398,13 +27293,6 @@ }, /turf/simulated/wall/rshull, /area/shuttle/excursion/cargo) -"aWo" = ( -/obj/structure/bed/chair/shuttle, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/general) "aWp" = ( /turf/simulated/wall/rshull, /area/shuttle/excursion/cargo) @@ -28431,15 +27319,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/wall/rshull, /area/shuttle/excursion/cargo) -"aWt" = ( -/obj/machinery/mineral/equipment_vendor/survey, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) -"aWu" = ( -/obj/machinery/door/airlock/glass_external, -/obj/effect/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/medivac/general) "aWv" = ( /obj/machinery/alarm{ dir = 4; @@ -28452,39 +27331,6 @@ "aWw" = ( /turf/simulated/wall, /area/crew_quarters/heads/cmo) -"aWx" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "shuttle blast"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/shuttle/excursion/general) -"aWy" = ( -/obj/machinery/door/window/brigdoor/westright{ - req_access = newlist(); - req_one_access = list(5,67) - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/shuttle/medivac/cockpit) "aWz" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1; @@ -28492,25 +27338,6 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/refinery) -"aWA" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 4; - icon_state = "bordercolorcorner2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/medivac/general) "aWB" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -28526,21 +27353,6 @@ }, /turf/simulated/floor/tiled/white, /area/security/security_bathroom) -"aWC" = ( -/obj/structure/bed/chair/bay/chair/padded/blue{ - dir = 4; - icon_state = "bay_chair_preview" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/shuttle/medivac/cockpit) -"aWD" = ( -/obj/machinery/computer/ship/sensors, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/cockpit) "aWE" = ( /obj/effect/decal/remains, /obj/item/clothing/under/rank/centcom_officer, @@ -28609,19 +27421,6 @@ /obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/reinforced, /area/shuttle/excursion/general) -"aWM" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack/corner2{ - dir = 6 - }, -/obj/structure/bed/padded, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/medivac/general) "aWN" = ( /obj/effect/floor_decal/carpet{ dir = 4 @@ -28677,22 +27476,6 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/gear) -"aWR" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) -"aWS" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) "aWT" = ( /obj/effect/floor_decal/industrial/warning/dust/corner{ dir = 1; @@ -28715,22 +27498,6 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/gear) -"aWV" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 6 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/excursion/cargo) -"aWW" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/medivac/general) "aWX" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -28766,81 +27533,18 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/gear) -"aXa" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24; - req_access = list() - }, -/obj/structure/handrail, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) "aXb" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall/rshull, /area/shuttle/excursion/cargo) -"aXc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "shuttle blast"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/shuttle/excursion/general) -"aXd" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/computer/shuttle_control/explore/medivac{ - dir = 1; - icon_state = "computer" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/shuttle/medivac/cockpit) "aXe" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/wood, /area/security/breakroom) -"aXf" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/medivac/engines) -"aXg" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "medivac blast"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/airless, -/area/shuttle/medivac/general) "aXh" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -28849,67 +27553,6 @@ /mob/living/simple_mob/animal/sif/fluffy, /turf/simulated/floor/outdoors/grass/forest, /area/quartermaster/qm) -"aXi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) -"aXj" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/medivac/general) -"aXk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) -"aXl" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/handrail{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) "aXm" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/blue{ @@ -28954,18 +27597,6 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/refinery) -"aXo" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) -"aXp" = ( -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes/buildable/point_of_interest, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) "aXq" = ( /obj/structure/stasis_cage, /turf/simulated/floor/tiled/monotile, @@ -28984,18 +27615,6 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) -"aXt" = ( -/obj/machinery/door/airlock/hatch{ - req_one_access = list(67) - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/excursion/general) "aXu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -29008,35 +27627,6 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/refinery) -"aXv" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/medivac/general) -"aXw" = ( -/obj/effect/floor_decal/borderfloorwhite/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/bordercorner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/medivac/general) -"aXx" = ( -/obj/machinery/computer/ship/engines, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/shuttle/medivac/cockpit) "aXy" = ( /turf/simulated/wall/rshull, /area/shuttle/medivac/cockpit) @@ -29067,47 +27657,12 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/refinery) -"aXB" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5; - icon_state = "corner_white" - }, -/obj/effect/floor_decal/corner/blue, -/turf/simulated/floor/tiled/white, -/area/shuttle/medivac/general) "aXC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 5 }, /turf/simulated/wall/rshull, /area/shuttle/excursion/cargo) -"aXD" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/excursion/cargo) -"aXE" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "shuttle_inbound" - }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/plating, -/area/shuttle/excursion/cargo) -"aXF" = ( -/obj/machinery/power/smes/buildable/point_of_interest, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/medivac/engines) "aXG" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, @@ -29149,16 +27704,6 @@ /obj/structure/table/glass, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"aXN" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/excursion/cargo) "aXO" = ( /obj/structure/cable/green{ d1 = 2; @@ -29182,12 +27727,6 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock) -"aXQ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/shuttle/excursion/general) "aXR" = ( /obj/effect/overmap/visitable/sector/virgo3b, /turf/space, @@ -29220,36 +27759,10 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"aXU" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 10; - icon_state = "corner_white" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1; - icon_state = "corner_white" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/medivac/general) "aXV" = ( /obj/machinery/mineral/processing_unit, /turf/simulated/floor/plating, /area/quartermaster/belterdock/refinery) -"aXW" = ( -/obj/machinery/door/window/brigdoor/westleft{ - req_access = newlist(); - req_one_access = list(5,67) - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/shuttle/medivac/cockpit) "aXX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 9 @@ -29268,10 +27781,6 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/gear) -"aXZ" = ( -/obj/structure/table/steel, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/cockpit) "aYa" = ( /turf/simulated/wall/rshull, /area/shuttle/medivac/general) @@ -29286,30 +27795,10 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/gear) -"aYe" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/medivac/engines) "aYf" = ( /obj/machinery/computer/supplycomp/control, /turf/simulated/floor/wood, /area/quartermaster/qm) -"aYg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) "aYh" = ( /obj/structure/sink{ dir = 4; @@ -29338,64 +27827,12 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/gear) -"aYj" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "expshuttle_vent" - }, -/obj/machinery/oxygen_pump{ - pixel_y = -32 - }, -/obj/structure/handrail{ - dir = 1 - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) "aYk" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 1 }, /turf/simulated/floor/airless, /area/mine/explored/upper_level) -"aYl" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/medivac/general) -"aYm" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6; - icon_state = "intact" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/general) "aYn" = ( /obj/machinery/suit_cycler/mining, /obj/effect/floor_decal/borderfloor, @@ -29414,33 +27851,6 @@ can_open = 0 }, /area/crew_quarters/medical_restroom) -"aYq" = ( -/obj/machinery/body_scanconsole{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/blue/border, -/turf/simulated/floor/tiled/white, -/area/shuttle/medivac/general) -"aYr" = ( -/obj/machinery/airlock_sensor{ - pixel_x = 28; - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/obj/effect/map_helper/airlock/sensor/int_sensor, -/turf/simulated/floor/tiled/white, -/area/shuttle/medivac/general) -"aYs" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/structure/bed/padded, -/turf/simulated/floor/tiled/dark, -/area/shuttle/medivac/general) "aYt" = ( /obj/structure/dispenser/oxygen, /obj/effect/floor_decal/borderfloor, @@ -29456,16 +27866,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"aYv" = ( -/obj/structure/fuel_port{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 8; - icon_state = "map" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/medivac/engines) "aYw" = ( /obj/structure/cable/green{ d1 = 4; @@ -29494,19 +27894,6 @@ /obj/structure/window/reinforced/full, /turf/simulated/floor/plating, /area/crew_quarters/medical_restroom) -"aYA" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 9; - icon_state = "bordercolor" - }, -/obj/structure/bed/chair/shuttle{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/medivac/general) "aYB" = ( /obj/effect/shuttle_landmark{ base_area = /area/space; @@ -29574,19 +27961,6 @@ /obj/machinery/recharge_station, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/refinery) -"aYK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/shuttle/excursion/general) "aYL" = ( /obj/machinery/power/apc{ dir = 1; @@ -29604,40 +27978,6 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) -"aYM" = ( -/obj/machinery/bodyscanner{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/medivac/general) -"aYN" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/medivac/engines) -"aYO" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/medivac/general) "aYP" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, @@ -29659,37 +27999,9 @@ /obj/machinery/mineral/stacking_unit_console, /turf/simulated/wall, /area/quartermaster/belterdock/refinery) -"aYS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/medivac/engines) "aYT" = ( /turf/simulated/wall, /area/security/breakroom) -"aYU" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/table/glass, -/obj/machinery/recharger, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/shuttle/medivac/cockpit) "aYV" = ( /obj/machinery/computer/secure_data, /obj/machinery/alarm{ @@ -29704,23 +28016,6 @@ }, /turf/space, /area/space) -"aYX" = ( -/obj/structure/table/standard, -/obj/random/medical, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/medivac/engines) -"aYY" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/medivac/engines) "aYZ" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -28; @@ -29729,21 +28024,6 @@ /obj/machinery/recharge_station, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) -"aZa" = ( -/obj/machinery/door/airlock/hatch{ - req_one_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/excursion/cargo) "aZb" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -29753,41 +28033,6 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) -"aZc" = ( -/obj/machinery/computer/ship/helm{ - dir = 8; - icon_state = "computer" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/shuttle/medivac/cockpit) -"aZd" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "shuttle_inbound" - }, -/obj/structure/plasticflaps, -/turf/simulated/floor/plating, -/area/shuttle/excursion/cargo) -"aZe" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 10; - icon_state = "corner_white" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 4; - icon_state = "corner_white" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/medivac/general) "aZf" = ( /obj/effect/floor_decal/industrial/loading{ dir = 8; @@ -29827,29 +28072,10 @@ /obj/machinery/mineral/stacking_machine, /turf/simulated/floor/plating, /area/quartermaster/belterdock/refinery) -"aZk" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1; - icon_state = "warningcorner" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) "aZl" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/wall/rshull, /area/shuttle/medivac/cockpit) -"aZm" = ( -/obj/machinery/computer/ship/sensors{ - dir = 8; - icon_state = "computer" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/shuttle/medivac/cockpit) "aZn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -29857,21 +28083,6 @@ /mob/living/simple_mob/animal/sif/fluffy/silky, /turf/simulated/floor/outdoors/grass/forest, /area/quartermaster/qm) -"aZo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) "aZp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4; @@ -29888,38 +28099,10 @@ }, /turf/simulated/floor/plating, /area/quartermaster/belterdock/refinery) -"aZr" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/effect/floor_decal/borderfloor, -/turf/simulated/floor/tiled, -/area/shuttle/medivac/cockpit) "aZs" = ( /obj/structure/bookcase, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"aZt" = ( -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 2; - name = "south bump"; - pixel_y = -28; - req_access = list(67) - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 10 - }, -/obj/structure/bed/chair/shuttle{ - dir = 4 - }, -/obj/structure/cable, -/turf/simulated/floor/tiled/white, -/area/shuttle/medivac/general) "aZu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -29929,23 +28112,6 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) -"aZv" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "medivac blast"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/airless, -/area/shuttle/medivac/cockpit) "aZx" = ( /obj/machinery/light/small{ dir = 8 @@ -29961,19 +28127,6 @@ }, /turf/simulated/floor/plating, /area/shuttle/excursion/cargo) -"aZz" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorblack/corner2{ - dir = 8; - icon_state = "borderfloorcorner2_black" - }, -/obj/machinery/door/window/brigdoor/northleft{ - req_access = list(5) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/medivac/general) "aZA" = ( /obj/structure/table/steel, /obj/item/stack/flag/yellow{ @@ -30015,35 +28168,6 @@ }, /turf/simulated/wall/rshull, /area/shuttle/excursion/cargo) -"aZE" = ( -/obj/machinery/door/airlock/glass_external, -/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ - dir = 6; - frequency = 1380; - id_tag = "expshuttle_exterior_sensor"; - master_tag = "expshuttle_docker"; - pixel_x = 4; - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8; - icon_state = "warning" - }, -/obj/effect/map_helper/airlock/door/ext_door, -/obj/effect/map_helper/airlock/sensor/ext_sensor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) -"aZG" = ( -/obj/machinery/computer/shuttle_control/explore/excursion{ - dir = 1; - icon_state = "computer" - }, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/cockpit) "aZH" = ( /obj/machinery/conveyor{ dir = 8; @@ -30068,55 +28192,11 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) -"aZK" = ( -/obj/structure/bed/chair/bay/chair/padded/blue{ - dir = 4; - icon_state = "bay_chair_preview" - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "medivac blast"; - name = "Shuttle Blast Doors"; - pixel_x = -28; - pixel_y = -28; - req_access = list(67) - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/shuttle/medivac/cockpit) -"aZL" = ( -/obj/machinery/door/airlock/hatch{ - req_one_access = list(67) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/excursion/general) "aZM" = ( /obj/structure/table/woodentable, /obj/item/device/radio/off, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"aZN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5; - icon_state = "corner_white" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 8; - icon_state = "corner_white" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/medivac/general) "aZO" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, @@ -30134,23 +28214,6 @@ }, /turf/simulated/floor, /area/maintenance/station/ai) -"aZR" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "medivac blast"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/airless, -/area/shuttle/medivac/general) "aZS" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -30158,27 +28221,6 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) -"aZT" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) -"aZU" = ( -/obj/machinery/suit_cycler/pilot, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -26 - }, -/turf/simulated/floor/tiled, -/area/shuttle/excursion/general) "aZV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -30189,26 +28231,6 @@ }, /turf/simulated/floor/wood, /area/quartermaster/qm) -"aZW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) -"aZX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 10 - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/structure/closet/crate/freezer/rations, -/obj/item/weapon/storage/mre/menu11, -/obj/item/weapon/storage/mre/menu10, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) "aZY" = ( /turf/simulated/wall/r_wall, /area/security/security_lockerroom) @@ -30554,6 +28576,19 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"bfc" = ( +/obj/structure/fuel_port{ + pixel_x = 0; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/shuttle/excursion/cargo) +"bjJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/medivac/engines) "bmI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -30563,22 +28598,6 @@ }, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) -"boY" = ( -/obj/machinery/door/airlock/glass_external, -/obj/structure/cable/green{ - dir = 1; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/effect/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/securiship/general) -"bpl" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/securiship/engines) "bqt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -30593,6 +28612,10 @@ }, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) +"brW" = ( +/obj/machinery/computer/ship/helm, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/shuttle/excursion/cockpit) "btu" = ( /obj/structure/cable{ d1 = 4; @@ -30610,12 +28633,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"bvH" = ( -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/securiship/cockpit) "bxz" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/security/armory{ @@ -30638,34 +28655,26 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"bDn" = ( -/obj/structure/cable/green{ - icon_state = "2-4" +"bDx" = ( +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 1 - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - dir = 4; - frequency = 1380; - id_tag = "securiship_docker"; +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; pixel_x = -28 }, -/obj/effect/map_helper/airlock/atmos/pump_out_internal, -/obj/machinery/airlock_sensor{ - pixel_y = 28 +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/cockpit) +"bHf" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 4 }, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/obj/effect/shuttle_landmark{ - base_area = /area/space; - base_turf = /turf/space; - docking_controller = "securiship_bay"; - landmark_tag = "tether_securiship_dock"; - name = "Securiship Dock" - }, -/obj/effect/overmap/visitable/ship/landable/securiship, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/securiship/general) +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/excursion/cargo) "bJB" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/security{ @@ -30714,6 +28723,31 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) +"bYR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) +"bZU" = ( +/obj/machinery/door/airlock/glass_external, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/securiship/general) "cay" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 5 @@ -30723,15 +28757,33 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"cwr" = ( +"clf" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes/buildable/point_of_interest, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/excursion/general) +"cnF" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/structure/table/rack/shelf, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/securiship/general) +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/medivac/engines) +"cFf" = ( +/obj/structure/bed/chair/shuttle, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/shuttle/excursion/general) "cIJ" = ( /obj/machinery/light{ dir = 8; @@ -30756,6 +28808,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) +"cJq" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/shuttle/excursion/general) "cKx" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -30775,16 +28835,43 @@ }, /turf/simulated/floor/tiled/dark, /area/security/security_equiptment_storage) -"cNP" = ( -/obj/machinery/computer/ship/helm{ - req_one_access = list(67,58) +"cUl" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 2; + frequency = 1380; + id_tag = "expshuttle_vent" }, -/obj/effect/floor_decal/techfloor{ - dir = 9 +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24; + req_access = list() }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/securiship/cockpit) -"deE" = ( +/obj/structure/handrail, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/shuttle/excursion/cargo) +"cVZ" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/excursion/general) +"cZG" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "expshuttle_vent" + }, +/obj/machinery/oxygen_pump{ + pixel_y = -32 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/shuttle/excursion/cargo) +"cZP" = ( /obj/structure/window/reinforced{ dir = 8; health = 1e+006 @@ -30799,18 +28886,41 @@ icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/aux, -/turf/simulated/floor/tiled/techmaint, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, /area/shuttle/securiship/general) -"doX" = ( +"dcK" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/excursion/general) +"dgL" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8; + icon_state = "warning" + }, +/obj/machinery/conveyor_switch/oneway{ + id = "shuttle_outbound" + }, /obj/machinery/light{ - dir = 8 + dir = 1 }, -/obj/structure/bed/chair/bay/chair/padded/beige{ - dir = 4; - icon_state = "bay_chair_preview" +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) +"dqE" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/securiship/general) +/turf/simulated/floor/tiled/eris/dark/danger, +/area/shuttle/excursion/cargo) "dtK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -30841,6 +28951,42 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) +"dyq" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "shuttle blast"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/excursion/general) +"dzP" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "expshuttle_docker_pump_out_internal" + }, +/obj/machinery/oxygen_pump{ + pixel_y = -32 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/shuttle/excursion/cargo) "dCf" = ( /obj/effect/floor_decal/borderfloorblack/full, /obj/machinery/camera/network/security{ @@ -30872,6 +29018,18 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) +"dJw" = ( +/obj/machinery/door/window/brigdoor/westleft{ + req_access = newlist(); + req_one_access = list(5,67) + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/shuttle/medivac/cockpit) "dSk" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -30904,6 +29062,9 @@ /obj/effect/map_helper/airlock/door/simple, /turf/simulated/floor/tiled, /area/security/hallway) +"ebB" = ( +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) "ehI" = ( /obj/machinery/atm{ pixel_y = 30 @@ -30924,18 +29085,22 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) +"eje" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5; + icon_state = "intact-scrubbers" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/shuttle/excursion/general) "esK" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"exP" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/securiship/general) "eAb" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ @@ -30956,14 +29121,79 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"ePT" = ( +"eCW" = ( /obj/machinery/power/smes/buildable/point_of_interest, -/obj/structure/cable/cyan{ - d2 = 4; +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/medivac/engines) +"eHW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 1; + icon_state = "map-fuel" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/engines) +"eLo" = ( +/obj/machinery/mineral/equipment_vendor/survey, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) +"ePs" = ( +/obj/structure/cable/green{ icon_state = "0-4" }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/securiship/engines) +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/terminal, +/obj/machinery/cell_charger, +/obj/structure/table/steel, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/obj/random/powercell, +/obj/item/stack/material/tritium{ + amount = 5 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/excursion/general) +"eRd" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) +"eSL" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 4; + frequency = 1380; + id_tag = "medivac_docker"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/shuttle_landmark{ + base_area = /area/mine/explored/upper_level; + base_turf = /turf/simulated/floor/airless; + docking_controller = "medivac_bay"; + landmark_tag = "tether_medivac_dock"; + name = "Medivac Bay" + }, +/obj/effect/overmap/visitable/ship/landable/medivac, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/shuttle/medivac/general) "eWf" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -30996,23 +29226,6 @@ }, /turf/simulated/floor/plating, /area/shuttle/securiship/general) -"eZt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/table/rack/shelf, -/obj/machinery/alarm{ - breach_detection = 0; - dir = 8; - icon_state = "alarm0"; - pixel_x = 25; - rcon_setting = 3; - report_danger_level = 0 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/securiship/general) "eZE" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -31071,6 +29284,21 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) +"flL" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/medivac/engines) +"fmJ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) "fox" = ( /obj/structure/cable{ icon_state = "1-2" @@ -31084,6 +29312,34 @@ /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled, /area/hallway/station/upper) +"foL" = ( +/obj/structure/cable/green{ + dir = 1; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/light/small{ + dir = 8; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/eris/techmaint_cargo, +/area/shuttle/securiship/general) +"foR" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/engines) +"fqd" = ( +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/cockpit) +"fre" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/medivac/engines) "fuV" = ( /obj/structure/bed/chair/comfy/brown, /obj/machinery/holoposter{ @@ -31110,6 +29366,12 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) +"fDf" = ( +/obj/machinery/computer/shuttle_control/explore/securiship{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/securiship/general) "fFS" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -31128,13 +29390,19 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"fGQ" = ( -/obj/structure/window/reinforced{ - dir = 1 +"fFY" = ( +/obj/machinery/door/airlock/glass_external, +/obj/structure/cable/green{ + dir = 1; + icon_state = "1-2" }, -/obj/structure/bed/chair/bay/chair, -/turf/simulated/floor/tiled/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/shuttle/securiship/general) +"fIK" = ( +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/shuttle/medivac/general) "fKd" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -31161,6 +29429,43 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) +"fUW" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/bed/chair/bay/chair, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/shuttle/securiship/general) +"fXX" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/excursion/general) +"fYm" = ( +/obj/machinery/light, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/binary/pump/fuel, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/engines) +"geT" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/cockpit) "gfw" = ( /obj/structure/cable{ d1 = 4; @@ -31174,30 +29479,23 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"gjM" = ( -/obj/structure/cable/green{ - dir = 1; - icon_state = "1-2" +"gge" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/machinery/light/small{ - dir = 8; - pixel_x = 0 +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "shuttle blast"; + name = "Shuttle Blast Doors"; + opacity = 0 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/securiship/general) -"gkR" = ( -/obj/structure/cable/green{ - dir = 1; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6; - icon_state = "intact-fuel" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/securiship/engines) +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/excursion/general) "gqZ" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -31209,24 +29507,53 @@ /obj/structure/table/steel, /turf/simulated/floor/tiled, /area/security/security_processing) -"gxX" = ( +"gtj" = ( +/obj/machinery/recharger, +/obj/structure/table/steel, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, /obj/structure/cable/cyan{ d2 = 8; icon_state = "0-8" }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) +"gyu" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 +/obj/effect/floor_decal/corner/blue{ + dir = 5; + icon_state = "corner_white" }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/securiship/engines) +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) +"gyE" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "medivac blast"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/medivac/general) "gBb" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -31262,16 +29589,6 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"gBp" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/bed/chair/bay/chair{ - dir = 1; - icon_state = "bay_chair_preview" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/securiship/general) "gBy" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 9 @@ -31297,15 +29614,26 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"gJa" = ( -/obj/machinery/door/airlock/multi_tile/metal/mait, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +"gEi" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/securiship/engines) +/obj/effect/floor_decal/corner/blue{ + dir = 5; + icon_state = "corner_white" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 8; + icon_state = "corner_white" + }, +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) +"gPm" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) "gQf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -31348,6 +29676,29 @@ /obj/random/cutout, /turf/simulated/floor, /area/maintenance/station/ai) +"gWA" = ( +/obj/structure/bed/padded, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/shuttle/medivac/general) +"gXI" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/structure/table/glass, +/obj/machinery/recharger, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/shuttle/medivac/cockpit) "gYC" = ( /obj/structure/cable{ d1 = 4; @@ -31367,6 +29718,11 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) +"gYE" = ( +/obj/structure/table/standard, +/obj/random/medical, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/medivac/engines) "gYV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -31381,6 +29737,28 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) +"hcy" = ( +/obj/machinery/door/airlock/glass_external, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 6; + frequency = 1380; + id_tag = "expshuttle_exterior_sensor"; + master_tag = "expshuttle_docker"; + pixel_x = 4; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8; + icon_state = "warning" + }, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/excursion/cargo) "hid" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -31393,13 +29771,28 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"hoF" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 1; - icon_state = "map-fuel" +"hqh" = ( +/obj/structure/fuel_port{ + pixel_x = -32 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/securiship/engines) +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 8; + icon_state = "map" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/medivac/engines) +"hqz" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/shuttle/excursion/general) +"hsB" = ( +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/shuttle/excursion/cargo) "htW" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -31420,20 +29813,10 @@ }, /turf/simulated/wall/rshull, /area/shuttle/securiship/engines) -"hEY" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/securiship/general) +"hAA" = ( +/obj/structure/bed/chair/shuttle, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/shuttle/excursion/general) "hGW" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -31448,6 +29831,30 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) +"hJb" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/engines) +"hME" = ( +/obj/structure/bed/chair/bay/chair/padded/blue{ + dir = 4; + icon_state = "bay_chair_preview" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/shuttle/medivac/cockpit) +"hNY" = ( +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/medivac/general) "hPJ" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, @@ -31458,6 +29865,15 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) +"hSi" = ( +/obj/machinery/door/airlock/multi_tile/metal/mait, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/securiship/engines) "hTN" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/security{ @@ -31478,6 +29894,10 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) +"hZj" = ( +/obj/machinery/door/window/brigdoor/eastleft, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/shuttle/securiship/general) "hZs" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -31521,9 +29941,69 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/security/hallway) +"iix" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/medivac/engines) +"imp" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1; + icon_state = "bulb1" + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/excursion/general) +"ioe" = ( +/obj/structure/bed/padded, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/shuttle/medivac/general) "isz" = ( /turf/simulated/wall/rshull, /area/shuttle/securiship/general) +"iCC" = ( +/obj/machinery/suit_cycler/pilot, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/shuttle/excursion/general) +"iDz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/handrail{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/shuttle/excursion/general) "iDH" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, @@ -31538,6 +30018,31 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) +"iGQ" = ( +/obj/machinery/door/airlock/glass_external, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 5; + pixel_x = -28 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/medivac/general) +"iIc" = ( +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/shuttle/securiship/general) +"iNd" = ( +/obj/structure/bed/chair/bay/chair/padded/beige{ + dir = 4; + icon_state = "bay_chair_preview" + }, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/shuttle/securiship/general) "iOI" = ( /obj/structure/cable{ d1 = 4; @@ -31560,6 +30065,15 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) +"iTN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/medivac/engines) "iUO" = ( /obj/structure/cable/green{ d1 = 1; @@ -31615,36 +30129,25 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"jjJ" = ( -/obj/machinery/power/terminal{ - dir = 1; - icon_state = "term" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/table/standard, -/obj/item/weapon/tank/phoron, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/securiship/engines) "jnQ" = ( /obj/structure/cable/green{ icon_state = "2-8" }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"jrx" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/fuel_port{ +"jqQ" = ( +/obj/machinery/light/small{ dir = 1 }, -/turf/simulated/floor/tiled/monofloor{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" }, -/area/shuttle/securiship/engines) +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/medivac/engines) "jxg" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/command{ @@ -31661,6 +30164,24 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) +"jxv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/closet/secure_closet/guncabinet/excursion, +/obj/item/weapon/pickaxe, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) +"jDJ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/shuttle/excursion/general) "jEX" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -31676,14 +30197,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"jHa" = ( +"jFs" = ( +/obj/machinery/power/smes/buildable/point_of_interest, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 4; + icon_state = "0-4" }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/securiship/general) +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/engines) "jHS" = ( /obj/structure/cable{ icon_state = "1-2" @@ -31696,6 +30217,42 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) +"jIG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/shuttle/excursion/general) +"jMO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) +"jNv" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/fuel_port{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/engines) +"jOx" = ( +/obj/structure/bed/chair/bay/chair/padded/beige{ + dir = 4; + icon_state = "bay_chair_preview" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/securiship/general) +"jRd" = ( +/obj/machinery/sleep_console, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/shuttle/excursion/general) "jRD" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -31728,6 +30285,29 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) +"jSm" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/table/rack/shelf, +/obj/machinery/alarm{ + breach_detection = 0; + dir = 8; + icon_state = "alarm0"; + pixel_x = 25; + rcon_setting = 3; + report_danger_level = 0 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/securiship/general) +"jZe" = ( +/obj/machinery/door/window/brigdoor/northleft{ + req_access = list(5) + }, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/shuttle/medivac/general) "kbY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -31745,29 +30325,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"klB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5; - icon_state = "intact-fuel" - }, -/obj/machinery/alarm{ +"kkt" = ( +/obj/machinery/computer/ship/engines{ dir = 1; - icon_state = "alarm0"; - pixel_y = -22 + icon_state = "computer" }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/securiship/engines) -"kqS" = ( -/obj/structure/cable/green{ - dir = 1; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 9; - icon_state = "intact-aux" - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/securiship/general) +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/shuttle/excursion/cockpit) "kqY" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, @@ -31782,8 +30346,20 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"kAs" = ( -/turf/simulated/floor/tiled/techmaint, +"krJ" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/shuttle/excursion/general) +"ktJ" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/bed/chair/bay/chair/padded/beige, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, /area/shuttle/securiship/general) "kAC" = ( /obj/machinery/door/firedoor/glass, @@ -31817,6 +30393,24 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) +"kLV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/shuttle/excursion/general) +"kPa" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/empty, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/excursion/general) "kSC" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -31843,6 +30437,33 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) +"kVs" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "expshuttle_docker"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 2; + frequency = 1380; + id_tag = "expshuttle_vent" + }, +/obj/structure/handrail, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/shuttle/excursion/cargo) +"kWW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5; + icon_state = "intact-fuel" + }, +/obj/machinery/alarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/engines) "lad" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 1 @@ -31852,16 +30473,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"lmZ" = ( -/obj/machinery/door/airlock/glass_external, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +"lfL" = ( +/obj/machinery/computer/ship/sensors{ + dir = 8; + icon_state = "computer" }, -/obj/effect/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/securiship/general) +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/shuttle/medivac/cockpit) "lon" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -31886,6 +30505,10 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) +"lqn" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) "lug" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -31904,13 +30527,80 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"lFr" = ( -/obj/structure/cable/green{ +"lwU" = ( +/obj/machinery/computer/shuttle_control/explore/excursion{ dir = 1; + icon_state = "computer" + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/shuttle/excursion/cockpit) +"lBz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; icon_state = "1-2" }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/securiship/engines) +/obj/machinery/door/airlock/hatch{ + req_one_access = list(67) + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/excursion/general) +"lDF" = ( +/obj/machinery/door/airlock/hatch{ + req_one_access = list(67) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/excursion/general) +"lIz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/excursion/general) +"lIR" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/excursion/general) +"lKI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/excursion/general) "lMN" = ( /obj/structure/grille, /obj/structure/cable/green, @@ -31943,6 +30633,35 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) +"lOT" = ( +/obj/machinery/power/terminal{ + dir = 1; + icon_state = "term" + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/medivac/engines) +"lWY" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/excursion/general) +"maX" = ( +/obj/machinery/airlock_sensor{ + pixel_x = 28 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 2; + frequency = 1380; + id_tag = "medivac_docker_pump_out_internal" + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/shuttle/medivac/general) "meu" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, @@ -31983,6 +30702,18 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) +"mta" = ( +/obj/machinery/door/airlock/hatch{ + req_one_access = list(67) + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/excursion/general) "mxs" = ( /obj/effect/floor_decal/industrial/warning/full, /obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ @@ -31991,6 +30722,27 @@ /obj/effect/map_helper/airlock/atmos/pump_out_external, /turf/simulated/floor/airless, /area/shuttle/securiship/general) +"mxO" = ( +/obj/structure/cable/green{ + dir = 1; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9; + icon_state = "intact-aux" + }, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/shuttle/securiship/general) +"mzF" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/shuttle/excursion/cockpit) +"mAy" = ( +/obj/machinery/body_scanconsole{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) "mDQ" = ( /obj/machinery/camera/network/security{ dir = 5; @@ -32024,6 +30776,19 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) +"mOR" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/shuttle/securiship/general) "mPW" = ( /obj/effect/floor_decal/techfloor/orange, /obj/effect/floor_decal/techfloor/hole/right, @@ -32032,6 +30797,12 @@ }, /turf/simulated/floor/tiled/techfloor, /area/teleporter/departing) +"mWZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/medivac/general) "ngb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -32046,21 +30817,44 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"nig" = ( -/obj/effect/floor_decal/techfloor, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/securiship/cockpit) -"nin" = ( -/obj/structure/bed/chair/bay/chair{ +"nkR" = ( +/obj/machinery/power/terminal{ dir = 1; - icon_state = "bay_chair_preview" + icon_state = "term" }, -/turf/simulated/floor/tiled/dark, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/table/standard, +/obj/item/weapon/tank/phoron, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/engines) +"nmZ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/excursion/general) +"noj" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) +"npz" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, /area/shuttle/securiship/general) "npJ" = ( /obj/effect/floor_decal/borderfloor{ @@ -32082,16 +30876,6 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"nqE" = ( -/obj/machinery/computer/ship/sensors{ - dir = 8; - icon_state = "computer" - }, -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/securiship/cockpit) "nrc" = ( /obj/structure/cable{ icon_state = "1-8" @@ -32113,16 +30897,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/hallway) -"ntp" = ( -/obj/machinery/computer/ship/engines{ - dir = 4; - icon_state = "computer" - }, -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/securiship/cockpit) "nvb" = ( /obj/machinery/door/airlock/vault/bolted{ req_access = list(53) @@ -32153,12 +30927,6 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) -"nym" = ( -/obj/machinery/computer/shuttle_control/explore/securiship{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/securiship/general) "nzs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -32194,6 +30962,80 @@ /obj/structure/closet/l3closet/security, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) +"nGd" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6; + icon_state = "intact" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/shuttle/excursion/general) +"nMg" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/shuttle/excursion/cargo) +"oad" = ( +/obj/machinery/computer/ship/helm{ + req_one_access = list(67,58) + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/cockpit) +"oek" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "shuttle blast"; + name = "Shuttle Blast Doors"; + pixel_x = -25; + pixel_y = -21; + req_access = list(67) + }, +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 1; + icon_state = "bay_comfychair_preview"; + pixel_y = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/shuttle/excursion/cockpit) +"ogC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8; + icon_state = "intact-aux" + }, +/obj/machinery/airlock_sensor{ + pixel_y = 28 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/shuttle/securiship/general) +"ogX" = ( +/obj/machinery/computer/ship/helm{ + dir = 8; + icon_state = "computer" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/shuttle/medivac/cockpit) "oiV" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -32206,6 +31048,45 @@ /obj/machinery/camera/network/security, /turf/simulated/floor/tiled, /area/security/security_processing) +"ojt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/medivac/general) +"ojG" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 4; + frequency = 1380; + id_tag = "securiship_docker"; + pixel_x = -28 + }, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/obj/machinery/airlock_sensor{ + pixel_y = 28 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/shuttle_landmark{ + base_area = /area/space; + base_turf = /turf/space; + docking_controller = "securiship_bay"; + landmark_tag = "tether_securiship_dock"; + name = "Securiship Dock" + }, +/obj/effect/overmap/visitable/ship/landable/securiship, +/turf/simulated/floor/tiled/eris/techmaint_cargo, +/area/shuttle/securiship/general) "ojY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -32225,6 +31106,16 @@ }, /turf/simulated/wall/rshull, /area/shuttle/securiship/engines) +"omt" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/excursion/cargo) "opL" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -32272,34 +31163,45 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"oEa" = ( -/obj/structure/bed/chair/bay/chair/padded/beige{ - dir = 4; - icon_state = "bay_chair_preview" +"oyD" = ( +/obj/machinery/power/port_gen/pacman/mrs, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/securiship/general) +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/excursion/general) +"oCi" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/shuttle/excursion/cockpit) +"oFw" = ( +/obj/structure/cable/green{ + dir = 1; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/securiship/engines) "oGF" = ( /obj/machinery/door/airlock/glass_external, /obj/effect/map_helper/airlock/door/simple, /turf/simulated/floor/tiled, /area/security/hallway) -"oHo" = ( -/obj/effect/floor_decal/techfloor{ - dir = 10 +"oHK" = ( +/obj/machinery/computer/shuttle_control/explore/medivac{ + dir = 1; + icon_state = "computer" }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/securiship/cockpit) +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/shuttle/medivac/cockpit) "oIb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 1 @@ -32321,6 +31223,29 @@ }, /turf/simulated/wall/rshull, /area/shuttle/securiship/general) +"oMC" = ( +/obj/structure/bed/chair/bay/chair/padded/beige{ + dir = 1; + icon_state = "bay_chair_preview" + }, +/obj/machinery/button/remote/blast_door{ + dir = 2; + id = "securiship blast"; + name = "Shuttle Blast Doors"; + pixel_x = -28; + pixel_y = 28; + req_access = list(67) + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/cockpit) +"oXJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/obj/machinery/meter, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/excursion/general) +"oXM" = ( +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/shuttle/securiship/general) "peF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -32335,6 +31260,30 @@ }, /turf/simulated/floor/tiled/dark, /area/security/security_equiptment_storage) +"pfi" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/rack/shelf, +/obj/item/weapon/tank/oxygen, +/obj/item/device/suit_cooling_unit, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/pilot, +/obj/item/clothing/head/helmet/space/void/pilot, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/shuttle/excursion/general) +"pfR" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/alarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) "plY" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ dir = 1; @@ -32342,6 +31291,18 @@ }, /turf/simulated/wall/rshull, /area/shuttle/securiship/engines) +"pqB" = ( +/obj/machinery/door/airlock/multi_tile/metal/mait{ + dir = 2; + icon_state = "door_closed"; + req_one_access = list(5,67) + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/medivac/engines) "psg" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 @@ -32369,6 +31330,44 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) +"pwO" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 10; + icon_state = "corner_white" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 1; + icon_state = "corner_white" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) +"pDQ" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/machinery/atmospherics/portables_connector/aux, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/shuttle/securiship/general) +"pJZ" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) "pOc" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -32393,6 +31392,22 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/quartermaster/foyer) +"pSI" = ( +/obj/structure/bed/chair/bay/chair/padded/blue{ + dir = 4; + icon_state = "bay_chair_preview" + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "medivac blast"; + name = "Shuttle Blast Doors"; + pixel_x = -28; + pixel_y = -28; + req_access = list(67) + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/shuttle/medivac/cockpit) "pUt" = ( /obj/effect/floor_decal/borderfloorblack/full, /obj/machinery/atmospherics/pipe/simple/hidden/universal{ @@ -32424,31 +31439,83 @@ }, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) +"qhN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) "qkC" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) -"qwY" = ( +"qmW" = ( +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 4; + pixel_x = 0; + pixel_y = -28 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/securiship/general) +"qsy" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/excursion/general) +"qCU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/obj/structure/handrail{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/cyan{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/structure/bed/chair/bay/chair/padded/beige, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/securiship/general) -"qDa" = ( +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/shuttle/excursion/general) +"qGC" = ( +/obj/structure/shuttle/engine/heater, /obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 + dir = 1 }, -/obj/machinery/atmospherics/portables_connector/aux, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/securiship/general) +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/excursion/cargo) "qLc" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -32492,6 +31559,19 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) +"qRd" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "expshuttle_vent" + }, +/obj/structure/cable/cyan, +/obj/structure/handrail{ + dir = 1 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/shuttle/excursion/cargo) "qYJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 1 @@ -32501,17 +31581,26 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"rfZ" = ( -/obj/machinery/door/airlock/glass_external, -/obj/effect/map_helper/airlock/door/ext_door, -/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ - dir = 4; - pixel_x = 0; - pixel_y = -28 +"rbt" = ( +/obj/structure/cable/green{ + icon_state = "2-4" }, -/obj/effect/map_helper/airlock/sensor/ext_sensor, -/turf/simulated/floor/tiled/techfloor/grid, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, /area/shuttle/securiship/general) +"reO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/machinery/light, +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/shuttle/excursion/general) "rgV" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -32525,19 +31614,19 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"rhI" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" +"rir" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/securiship/general) +/obj/structure/closet/crate/freezer/rations, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu10, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/excursion/general) "rlz" = ( /obj/structure/cable/green{ d1 = 2; @@ -32557,6 +31646,85 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) +"rlH" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 1; + icon_state = "bay_chair_preview" + }, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/shuttle/securiship/general) +"rot" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/rack/shelf, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/securiship/general) +"ruj" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair/bay/chair/padded/beige{ + dir = 4; + icon_state = "bay_chair_preview" + }, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/shuttle/securiship/general) +"rvW" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/medivac/engines) +"rwn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/shuttle/excursion/general) +"rwG" = ( +/obj/machinery/bodyscanner{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) +"rxY" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) +"rzZ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 1; + icon_state = "bay_comfychair_preview"; + pixel_y = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/shuttle/excursion/cockpit) "rBj" = ( /obj/structure/grille, /obj/structure/window/reinforced{ @@ -32574,6 +31742,14 @@ }, /turf/simulated/floor/plating, /area/shuttle/securiship/cockpit) +"rBo" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1; + icon_state = "warningcorner" + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) "rCb" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -32592,6 +31768,18 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) +"rEx" = ( +/obj/machinery/airlock_sensor{ + pixel_x = 28; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) "rEP" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -32632,24 +31820,24 @@ }, /turf/simulated/floor/tiled/dark, /area/security/security_equiptment_storage) -"rFu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8; - icon_state = "intact-aux" +"rFD" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" }, -/obj/machinery/airlock_sensor{ +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + name = "north bump"; + pixel_x = 0; pixel_y = 28 }, -/obj/effect/map_helper/airlock/sensor/int_sensor, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/securiship/general) -"rIa" = ( -/obj/structure/cable/green{ - dir = 1; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/securiship/general) +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/engines) "rIS" = ( /obj/machinery/door/airlock/glass_mining{ name = "Delivery Office"; @@ -32669,14 +31857,62 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/quartermaster/delivery) -"rUg" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 +"rJp" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/turf/simulated/floor/tiled/techmaint, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 5; + icon_state = "intact-aux" + }, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, /area/shuttle/securiship/general) +"rJD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1; + icon_state = "warning" + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) +"rNZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/excursion/general) +"rVK" = ( +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/obj/machinery/light, +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/shuttle/excursion/general) +"rVW" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) +"rXA" = ( +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 8; + icon_state = "map_connector-fuel" + }, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/engines) "rZt" = ( /obj/structure/cable/green{ d1 = 1; @@ -32692,14 +31928,44 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"sio" = ( +"sgl" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/structure/cable/cyan{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/securiship/engines) +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/shuttle/excursion/general) +"sja" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/excursion/cargo) +"smZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_external{ + icon_state = "door_locked"; + id_tag = "expshuttle_door_cargo"; + locked = 1; + req_one_access = list() + }, +/obj/machinery/button/remote/airlock{ + desiredstate = 1; + dir = 4; + icon_state = "doorctrl0"; + id = "expshuttle_door_cargo"; + name = "hatch bolt control"; + pixel_x = -32; + req_one_access = list(19,43,67); + specialfunctions = 4 + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/excursion/cargo) "snK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -32723,6 +31989,55 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) +"suq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch{ + req_one_access = list(67) + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/excursion/general) +"syo" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 10; + icon_state = "corner_white" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 4; + icon_state = "corner_white" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) +"syP" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/shuttle/excursion/general) +"sAk" = ( +/obj/machinery/computer/ship/sensors{ + dir = 8; + icon_state = "computer" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/cockpit) "sBF" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -32735,6 +32050,23 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) +"sDA" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "medivac blast"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/medivac/general) "sIA" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -32777,15 +32109,27 @@ /obj/effect/catwalk_plated/dark, /turf/simulated/floor, /area/security/armory/blue) -"sYy" = ( -/obj/machinery/atmospherics/portables_connector/fuel{ - dir = 8; - icon_state = "map_connector-fuel" +"sSb" = ( +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) }, -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/securiship/engines) +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/structure/cable, +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) +"tmi" = ( +/obj/machinery/computer/ship/engines{ + dir = 4; + icon_state = "computer" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/cockpit) "tnC" = ( /obj/structure/cable{ d1 = 4; @@ -32836,6 +32180,17 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) +"tsg" = ( +/obj/machinery/computer/ship/sensors, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/shuttle/excursion/cockpit) +"tvx" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/shuttle/medivac/cockpit) "tyn" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 @@ -32852,6 +32207,120 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) +"tAw" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 + }, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/excursion/cargo) +"tID" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) +"tIF" = ( +/obj/machinery/airlock_sensor{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 2; + frequency = 1380; + id_tag = "expshuttle_docker_pump_out_internal" + }, +/obj/structure/handrail, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/shuttle/excursion/cargo) +"tJp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/excursion/general) +"tND" = ( +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/suit/space/emergency, +/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/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/structure/closet/emcloset/legacy, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/shuttle/excursion/general) +"tQq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) +"tSU" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -26 + }, +/obj/item/weapon/tank/phoron{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/weapon/tank/phoron{ + pixel_x = 6; + pixel_y = -6 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/excursion/general) +"ubQ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/obj/effect/shuttle_landmark{ + base_area = /area/tether/exploration; + base_turf = /turf/simulated/floor/reinforced; + docking_controller = "expshuttle_dock"; + landmark_tag = "tether_excursion_hangar"; + name = "Excursion Shuttle Dock" + }, +/obj/effect/overmap/visitable/ship/landable/excursion, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/shuttle/excursion/cargo) +"ueR" = ( +/obj/machinery/door/airlock/glass_external, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1380; + master_tag = "expshuttle_docker"; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/excursion/cargo) "ufq" = ( /obj/structure/barricade/cutout/ntsec, /turf/simulated/floor/tiled/dark, @@ -32890,6 +32359,27 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/station/upper) +"uqR" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "shuttle_inbound" + }, +/obj/structure/plasticflaps, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/excursion/cargo) +"usY" = ( +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/shuttle/excursion/general) +"uuo" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) "uzs" = ( /obj/machinery/shipsensors{ dir = 1 @@ -32909,6 +32399,20 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/station/upper) +"uCo" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/excursion/general) "uDo" = ( /obj/machinery/atmospherics/valve/digital{ dir = 4; @@ -32917,6 +32421,37 @@ /obj/effect/catwalk_plated/dark, /turf/simulated/floor, /area/security/armory/blue) +"uLF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "shuttle blast"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/excursion/general) +"uQV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5; + icon_state = "intact-supply" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/shuttle/excursion/general) "uSa" = ( /obj/effect/floor_decal/techfloor/orange, /obj/effect/floor_decal/techfloor/hole, @@ -32943,26 +32478,79 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"vlw" = ( -/obj/machinery/door/window/brigdoor/eastleft, -/turf/simulated/floor/tiled/dark, -/area/shuttle/securiship/general) +"viH" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "shuttle_inbound" + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/excursion/cargo) +"vlv" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) +"vlD" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "medivac blast"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/medivac/cockpit) +"voJ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) "vqZ" = ( /turf/simulated/wall/rshull, /area/shuttle/securiship/cockpit) -"vsJ" = ( -/turf/simulated/floor/tiled/dark, -/area/shuttle/securiship/general) -"vyd" = ( -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +"vvu" = ( +/obj/structure/bed/chair/shuttle, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/alarm{ + pixel_y = 22 }, -/obj/machinery/atmospherics/binary/pump/fuel, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/securiship/engines) +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/shuttle/excursion/general) +"vvB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/excursion/general) +"vAI" = ( +/obj/structure/cable/green{ + dir = 1; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/shuttle/securiship/general) "vAP" = ( /obj/item/device/flashlight/lamp, /obj/structure/table/steel, @@ -32971,11 +32559,68 @@ }, /turf/simulated/floor/tiled, /area/security/security_processing) +"vBa" = ( +/obj/machinery/door/window/brigdoor/westright{ + req_access = newlist(); + req_one_access = list(5,67) + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/shuttle/medivac/cockpit) "vFD" = ( /obj/structure/catwalk, /obj/random/cutout, /turf/simulated/floor, /area/maintenance/station/sec_upper) +"vHg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/excursion/general) +"vKn" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/cockpit) +"vMT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) +"vTs" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/bed/chair/bay/chair, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/shuttle/securiship/general) +"vVR" = ( +/obj/machinery/computer/ship/engines, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/shuttle/medivac/cockpit) +"vZj" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/medivac/engines) "wbZ" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -33001,6 +32646,16 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) +"wjT" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/bed/chair/bay/chair{ + dir = 1; + icon_state = "bay_chair_preview" + }, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/shuttle/securiship/general) "wls" = ( /obj/machinery/status_display{ pixel_y = 30 @@ -33021,6 +32676,12 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/hallway/station/upper) +"wou" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/shuttle/excursion/general) "wpQ" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -33038,6 +32699,36 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) +"wAv" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/shuttle/securiship/general) +"wFl" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) "wFV" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -33052,35 +32743,51 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"wIZ" = ( -/obj/effect/floor_decal/techfloor{ - dir = 6 +"wKZ" = ( +/obj/structure/cable/green{ + dir = 1; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6; + icon_state = "intact-fuel" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/engines) +"wOH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 }, /obj/structure/cable/cyan{ - d1 = 2; + d1 = 1; d2 = 8; - icon_state = "2-8" + icon_state = "1-8" }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/securiship/cockpit) -"wRu" = ( -/obj/effect/floor_decal/techfloor/corner{ - dir = 1 +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/excursion/general) +"wSq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24; + pixel_y = 0 }, -/obj/structure/bed/chair/bay/chair/padded/beige{ - dir = 1; - icon_state = "bay_chair_preview" +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/excursion/general) +"wVz" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" }, -/obj/machinery/button/remote/blast_door{ - dir = 2; - id = "securiship blast"; - name = "Shuttle Blast Doors"; - pixel_x = -28; - pixel_y = 28; - req_access = list(67) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/securiship/cockpit) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/shuttle/excursion/cockpit) "wXX" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -33128,6 +32835,22 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) +"xdh" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/medivac/engines) "xeo" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/fuel, /turf/simulated/wall/rshull, @@ -33142,6 +32865,15 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) +"xmj" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/tank/oxygen, +/obj/item/device/suit_cooling_unit, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/pilot, +/obj/item/clothing/head/helmet/space/void/pilot, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/shuttle/excursion/general) "xmG" = ( /obj/structure/grille, /obj/structure/cable/green{ @@ -33177,16 +32909,6 @@ }, /turf/simulated/floor/airless, /area/shuttle/securiship/engines) -"xou" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/bed/chair/bay/chair, -/turf/simulated/floor/tiled/dark, -/area/shuttle/securiship/general) "xqB" = ( /turf/simulated/wall/rshull, /area/shuttle/securiship/engines) @@ -33212,6 +32934,35 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) +"xxx" = ( +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/obj/item/weapon/tank/phoron, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/medivac/engines) +"xAG" = ( +/obj/machinery/sleep_console{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) "xBW" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -33236,18 +32987,52 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"yau" = ( +"xKO" = ( /obj/structure/cable/cyan{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 2; + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 5; - icon_state = "intact-aux" - }, -/turf/simulated/floor/tiled/techmaint, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, /area/shuttle/securiship/general) +"xRe" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "shuttle blast"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/excursion/general) +"xYK" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) +"ybu" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24; + req_access = list() + }, +/obj/structure/handrail, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) "yeP" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 9 @@ -33301,6 +33086,21 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) +"ylJ" = ( +/obj/machinery/door/airlock/hatch{ + req_one_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/excursion/cargo) (1,1,1) = {" aaa @@ -36199,16 +35999,16 @@ aae aaa vqZ vqZ -ntp -oHo -doX -oEa -fGQ -vsJ -nin +tmi +bDx +ruj +iNd +vTs +iIc +rlH xqB -ePT -jjJ +jFs +nkR hyn xny aaa @@ -36340,17 +36140,17 @@ aae aae aaa rBj -cNP -wRu -nig -kAs -kAs -xou -vlw -gBp +oad +oMC +vKn +oXM +oXM +fUW +hZj +wjT xqB -gxX -bpl +rFD +foR plY xny aaa @@ -36482,17 +36282,17 @@ aaa aae aaa rBj -bvH -nqE -wIZ -jHa -rhI -qwY -jHa -jHa -gJa -sio -jrx +fqd +sAk +geT +xKO +mOR +ktJ +xKO +xKO +hSi +hJb +jNv okJ xqB aaa @@ -36624,17 +36424,17 @@ aaa aae aaa isz -qDa -rUg -deE -hEY -yau -kAs -exP -rIa -lFr -gkR -vyd +pDQ +npz +cZP +wAv +rJp +oXM +rbt +vAI +oFw +wKZ +fYm xeo xqB aaa @@ -36770,13 +36570,13 @@ isz isz isz isz -rFu -kAs -cwr -oEa +ogC +oXM +rot +jOx xqB -hoF -klB +eHW +kWW plY xny aaa @@ -36909,16 +36709,16 @@ aae aaa oJa trD -bDn -gjM -boY -kqS -rIa -eZt -nym +ojG +foL +fFY +mxO +vAI +jSm +fDf xqB -sYy -sYy +rXA +rXA gSE xny aaa @@ -37051,8 +36851,8 @@ aae aaa mxs isz -lmZ -rfZ +bZU +qmW isz eZd eZd @@ -43056,12 +42856,12 @@ aMK aIy avs aNL -aNS +flL aNL aNZ aXX aNL -aYX +gYE aNL aYk avs @@ -43198,12 +42998,12 @@ aMK aIy avs aYc -aYN -aOa -aOs -aOH -aYv -aYe +jqQ +iTN +xxx +fre +hqh +rvW aYc aYk avs @@ -43340,12 +43140,12 @@ aMK aIy avs aNL -aXF -aOb -aOt -aOI -aYS -aXf +eCW +lOT +xdh +vZj +bjJ +iix aNL aYk avs @@ -43484,8 +43284,8 @@ aLu aNL aNL aNL -aYY -aOJ +cnF +pqB aNL aNL aNL @@ -43623,13 +43423,13 @@ aML aNj aNu aNF -aNM -aNT -aOd -aXv -aOK -aZz -aWW +iGQ +eSL +ojt +uuo +voJ +jZe +fIK aYa aYk avs @@ -43765,13 +43565,13 @@ aMM aJk aNv aNG -aWu -aWa -aOe -aYr -aOK -aWM -aYs +hNY +maX +mWZ +rEx +voJ +ioe +gWA aYa aYk avs @@ -43910,8 +43710,8 @@ aLu aYa aYa aYa -aWA -aOM +jMO +voJ aXL aYa aYa @@ -43995,8 +43795,8 @@ acK acK acK acK -aXE -aZd +viH +uqR aWp aWp acK @@ -44050,12 +43850,12 @@ aab aab avs aYa -aYA -aOg -aXw -aON -alY -aZt +gPm +vlv +jMO +vMT +wFl +sSb aYa aYk avs @@ -44129,11 +43929,11 @@ acK acK adj adj -aWx +uLF adj -aWx +uLF adj -aWx +uLF aWp aWp aWp @@ -44191,14 +43991,14 @@ aab aab aab avs -aZR -aYO -aOh -aZe -aXB -aOh -aWj -aXg +sDA +ebB +ebB +syo +gyu +ebB +ebB +gyE aYk aaa aaa @@ -44270,19 +44070,19 @@ acE acK aWL adj -aTl -aZU +xmj +iCC adj -aVf -aVE -aVw +tND +krJ +hqz aWp -ait +bHf aWn aUJ aXb aWp -aWV +omt afs ams aXq @@ -44333,14 +44133,14 @@ aab aab aab avs -aZR -aVV -aOh -aXU -aZN -aOh -aYq -aXg +sDA +xAG +ebB +pwO +gEi +ebB +mAy +gyE aYk aaa aaa @@ -44412,19 +44212,19 @@ acE acK afh adj -adW -aUB +pfi +jDJ adj -aUE -aWg -aUm +hAA +usY +jRd aWp aiK -ajY -aWt -aWS +rJD +eLo +noj aWp -aXN +tAw afs ams aXq @@ -44476,12 +44276,12 @@ aab aab avs aWl -aNV -aXj -aAn -aOK -aYl -aYM +rxY +ebB +jMO +voJ +ebB +rwG aWl aYk aaa @@ -44552,19 +44352,19 @@ abe abX acE acK -aVB -ady -adY -aTu +gge +syP +cJq +uQV aVi -aWo -aWg -ajV +cFf +usY +rVK aWp -aVU -aZk -aWR -aZT +dgL +rBo +tID +pfR aiX aZD acK @@ -44619,10 +44419,10 @@ aab aab aXy aXy -aYU -aWy -aXW -aZr +gXI +vBa +dJw +tvx aXy aYa aYk @@ -44697,16 +44497,16 @@ adj adj adj adj -aZL +lDF adj -aUs -afi -aUD +vvu +eje +rwn aWp -aXa -ajZ -aWR -aXo +ybu +fmJ +tID +lqn aiY aWp acK @@ -44761,10 +44561,10 @@ aab aab aXH aXy -aXx -aWC -aZK -aXd +vVR +hME +pSI +oHK aZl aVY aYk @@ -44835,20 +44635,20 @@ aaa abe acs acF -aVB -aVu -adC -aea -afj -aXQ -aUE -afj -aUY -aXS -aiW -aka -aWR -aUK +gge +brW +oek +kkt +kLV +nmZ +hAA +jIG +wou +sja +bfc +rVW +tID +xYK aiY aWp acK @@ -44904,8 +44704,8 @@ aab avs aXy aXy -aZc -aZm +ogX +lfL aXy aXy avs @@ -44977,22 +44777,22 @@ aaa abe abY acE -aVB -aXZ -adD -aeb -aex -aTT -aTi -aYm -aUz -aZa -aSO -aZo -aXi -adB -adZ -aTc +gge +mzF +wVz +oCi +sgl +lBz +iDz +nGd +qCU +ylJ +pJZ +bYR +qhN +eRd +smZ +hsB acK ams aVX @@ -45046,8 +44846,8 @@ avs avs avs aXy -aZv -aZv +vlD +vlD aXy avs avs @@ -45119,20 +44919,20 @@ aaa abe acA acG -aVB -aWD -adE -aZG -aTY +gge +tsg +rzZ +lwU +reO adj adj -afx +suq adj aWp aiX -akb -aZW -alq +jxv +tQq +gtj aXr aWp acK @@ -45265,15 +45065,15 @@ adj adj adj adj -aYK +lKI adj -aWd -aUL -aVg -afV +lWY +lIz +wSq +kPa aiY aXS -akx +ueR aWp aiY aWp @@ -45404,19 +45204,19 @@ abe abX acE acK -aVB -aTq -aec -aXk -aXt -afg -aYg -aVD -agL +gge +oyD +uCo +vvB +mta +dcK +wOH +rNZ +tSU aZD -aUU -aky -aYj +cUl +nMg +cZG aRv aXC acK @@ -45548,19 +45348,19 @@ acE acK afh adj -aeg -aXl +imp +qsy adj -adi -aVR -aUW -agM +fXX +oXJ +vHg +lIR aWp -akj -akQ -aTG +kVs +dqE +qRd aWp -aXN +tAw afs ams amq @@ -45690,19 +45490,19 @@ acE acK acK adj -aUO -aXp +ePs +clf adj -aUM -aTJ -aZX -agM +cVZ +tJp +rir +lIR aWp -akk -akR -aVd +tIF +ubQ +dzP aWp -aXD +qGC afs ams aQL @@ -45832,16 +45632,16 @@ acE acK acK adj -aXc +xRe adj adj adj -aSQ +dyq adj aUR aVQ aWs -aZE +hcy aWp aWp aWp From a6cb4f6d15d6e627ba87dd5690d0442764b3f72f Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Thu, 28 May 2020 18:59:29 -0400 Subject: [PATCH 21/38] Onemoretweak --- maps/tether/tether-03-surface3.dmm | 998 +++--- maps/tether/tether-07-station3.dmm | 4548 ++++++++++++++-------------- 2 files changed, 2773 insertions(+), 2773 deletions(-) diff --git a/maps/tether/tether-03-surface3.dmm b/maps/tether/tether-03-surface3.dmm index 36a9ebc62d..bc11aa0fbe 100644 --- a/maps/tether/tether-03-surface3.dmm +++ b/maps/tether/tether-03-surface3.dmm @@ -28320,22 +28320,6 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/heads/hop) -"bbd" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 1; - icon_state = "bay_chair_preview" - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/eris/white/orangecorner, -/area/shuttle/tourbus/cockpit) "bbi" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/light, @@ -28551,13 +28535,6 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) -"bfI" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 1; - icon_state = "bay_chair_preview" - }, -/turf/simulated/floor/tiled/eris/white/orangecorner, -/area/shuttle/tourbus/cockpit) "bhu" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -28572,6 +28549,23 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) +"bkN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "shuttle blast"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/tourbus/general) "bqs" = ( /obj/structure/disposalpipe/segment, /obj/structure/disposalpipe/segment{ @@ -28702,6 +28696,30 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) +"caw" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4; + icon_state = "steel_decals_central5" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8; + icon_state = "steel_decals_central5" + }, +/obj/machinery/door/airlock/glass_external/public{ + frequency = 1380; + id_tag = "tourbus_right" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/effect/map_helper/airlock/door/simple, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/tourbus/general) "ccf" = ( /obj/structure/cable/green{ d1 = 4; @@ -28759,13 +28777,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"coe" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 4; - icon_state = "bay_chair_preview" - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) "cpd" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -28809,10 +28820,6 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) -"crz" = ( -/obj/machinery/computer/ship/sensors, -/turf/simulated/floor/tiled/eris/white/orangecorner, -/area/shuttle/tourbus/cockpit) "cwI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -28831,16 +28838,6 @@ /obj/machinery/light/small, /turf/simulated/floor/wood, /area/library) -"cBd" = ( -/obj/structure/fuel_port{ - pixel_x = 1; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled/eris/steel/danger, -/area/shuttle/tourbus/general) "cFA" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -28943,6 +28940,23 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) +"ddn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "shuttle blast"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/tourbus/cockpit) "dfq" = ( /obj/machinery/door/airlock/glass, /obj/machinery/door/firedoor/glass, @@ -29005,34 +29019,6 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"dsn" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 8; - icon_state = "steel_decals_central5" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 4; - icon_state = "steel_decals_central5" - }, -/obj/machinery/door/airlock/glass_external{ - icon_state = "door_locked"; - id_tag = "tourbus_left"; - locked = 1; - req_one_access = list() - }, -/obj/machinery/button/remote/airlock{ - desiredstate = 1; - dir = 2; - icon_state = "doorctrl0"; - id = "tourbus_left"; - name = "hatch bolt control"; - pixel_x = 0; - pixel_y = 30; - req_one_access = list(19,43,67); - specialfunctions = 4 - }, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/tourbus/general) "dsF" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -29079,6 +29065,33 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) +"dGZ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) +"dJm" = ( +/obj/machinery/door/airlock/glass{ + req_one_access = list(19,43,67) + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/tourbus/cockpit) "dKj" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner{ @@ -29117,18 +29130,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"dVm" = ( -/obj/machinery/door/airlock/glass{ - req_one_access = list(19,43,67) - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/tourbus/cockpit) "dVE" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -29140,6 +29141,19 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) +"dVW" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 4; + icon_state = "bay_chair_preview" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) "dYX" = ( /obj/structure/cable/green{ d1 = 4; @@ -29179,6 +29193,9 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/maintenance/lower/medsec_maintenance) +"eiO" = ( +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) "epM" = ( /obj/item/weapon/stool/padded, /obj/effect/floor_decal/spline/plain{ @@ -29243,23 +29260,10 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"eEU" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "shuttle blast"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating/eris/under, -/area/shuttle/tourbus/general) +"eCG" = ( +/obj/machinery/computer/ship/helm, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/shuttle/tourbus/cockpit) "eFg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -29270,6 +29274,16 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) +"eGv" = ( +/obj/structure/fuel_port{ + pixel_x = 1; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/steel/danger, +/area/shuttle/tourbus/general) "eHk" = ( /obj/structure/sign/nosmoking_2{ pixel_x = 29 @@ -29293,19 +29307,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"eIo" = ( -/obj/machinery/power/smes/buildable{ - charge = 500000 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/bluecorner, -/area/shuttle/tourbus/engines) "eIs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -29313,13 +29314,6 @@ }, /turf/simulated/floor/wood, /area/library) -"eJl" = ( -/obj/structure/handrail{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating/eris/under, -/area/shuttle/tourbus/cockpit) "eJm" = ( /obj/structure/cable/green{ d1 = 4; @@ -29351,6 +29345,17 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) +"fcg" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 8; + icon_state = "bay_chair_preview" + }, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) "feu" = ( /obj/machinery/alarm{ dir = 1; @@ -29440,6 +29445,28 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) +"fru" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 8; + frequency = 1380; + id_tag = "tourbus_docker"; + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/structure/bed/chair/bay/chair{ + dir = 8; + icon_state = "bay_chair_preview" + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) "fxh" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -29530,7 +29557,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_a) -"fYY" = ( +"fYr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 }, @@ -29550,10 +29577,6 @@ }, /turf/simulated/floor/tiled/eris/dark/golden, /area/shuttle/tourbus/engines) -"gaL" = ( -/obj/machinery/computer/ship/helm, -/turf/simulated/floor/tiled/eris/white/orangecorner, -/area/shuttle/tourbus/cockpit) "ghf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -29594,30 +29617,6 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"gwY" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 4; - icon_state = "steel_decals_central5" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 8; - icon_state = "steel_decals_central5" - }, -/obj/machinery/door/airlock/glass_external/public{ - frequency = 1380; - id_tag = "tourbus_right" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/effect/map_helper/airlock/door/simple, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/tourbus/general) "gAF" = ( /obj/structure/cable/green{ d1 = 4; @@ -29694,6 +29693,17 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) +"gUL" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 8; + icon_state = "bay_chair_preview" + }, +/obj/effect/floor_decal/rust/part_rusted1{ + dir = 8; + icon_state = "part_rusted1" + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) "gVg" = ( /obj/structure/cable/green{ d1 = 1; @@ -29765,6 +29775,13 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) +"hlF" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 1; + icon_state = "bay_chair_preview" + }, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/shuttle/tourbus/cockpit) "hoQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -29815,14 +29832,18 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"hyk" = ( +"hCB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /obj/structure/bed/chair/bay/chair{ dir = 8; icon_state = "bay_chair_preview" }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 +/obj/structure/cable{ + icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/dark/golden, /area/shuttle/tourbus/general) @@ -29833,15 +29854,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/library) -"hIE" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) "hJt" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -29871,14 +29883,6 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) -"hPR" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/eris/white/orangecorner, -/area/shuttle/tourbus/cockpit) "hYK" = ( /obj/effect/floor_decal/techfloor{ dir = 4 @@ -29931,6 +29935,18 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) +"iqb" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 8; + icon_state = "bay_chair_preview" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) "isl" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -29941,6 +29957,13 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) +"ivq" = ( +/obj/machinery/computer/ship/engines{ + dir = 8; + icon_state = "computer" + }, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/shuttle/tourbus/cockpit) "iBA" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -30239,6 +30262,34 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) +"jML" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8; + icon_state = "steel_decals_central5" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4; + icon_state = "steel_decals_central5" + }, +/obj/machinery/door/airlock/glass_external{ + icon_state = "door_locked"; + id_tag = "tourbus_left"; + locked = 1; + req_one_access = list() + }, +/obj/machinery/button/remote/airlock{ + desiredstate = 1; + dir = 2; + icon_state = "doorctrl0"; + id = "tourbus_left"; + name = "hatch bolt control"; + pixel_x = 0; + pixel_y = 30; + req_one_access = list(19,43,67); + specialfunctions = 4 + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/tourbus/general) "jYd" = ( /obj/structure/cable/green{ d1 = 4; @@ -30254,6 +30305,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) +"kcC" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) "kcK" = ( /obj/structure/cable/green{ d1 = 4; @@ -30271,6 +30328,10 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) +"kdx" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/shuttle/tourbus/cockpit) "keX" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -30288,7 +30349,13 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) -"kgB" = ( +"kiw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, /turf/simulated/floor/tiled/eris/dark/golden, /area/shuttle/tourbus/general) "kjn" = ( @@ -30300,6 +30367,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) +"kmK" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 4; + icon_state = "bay_chair_preview" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) "knU" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -30317,6 +30394,31 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) +"kun" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/bed/chair/bay/chair{ + dir = 4; + icon_state = "bay_chair_preview" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) "kuQ" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -30366,6 +30468,17 @@ /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) +"kBF" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/bluecorner, +/area/shuttle/tourbus/engines) "kTn" = ( /obj/machinery/light, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -30469,22 +30582,18 @@ }, /turf/simulated/floor/wood, /area/library) -"lDl" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) -"lLM" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 4; - icon_state = "bay_chair_preview" +"lCq" = ( +/obj/structure/handrail{ + dir = 8 }, +/obj/machinery/light/small, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/tourbus/cockpit) +"lFc" = ( +/obj/effect/floor_decal/rust/part_rusted1, +/obj/machinery/atmospherics/binary/pump, /obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "2-4" }, /turf/simulated/floor/tiled/eris/dark/golden, /area/shuttle/tourbus/general) @@ -30578,19 +30687,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"mtZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/effect/floor_decal/rust/part_rusted1{ - dir = 4; - icon_state = "part_rusted1" - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) "myZ" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ @@ -30629,6 +30725,16 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/maintenance/lower/medsec_maintenance) +"mDf" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 4; + icon_state = "bay_chair_preview" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) "mFq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -30661,18 +30767,6 @@ /obj/item/weapon/reagent_containers/glass/beaker/vial/imidazoline, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"mQV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/machinery/power/terminal, -/obj/structure/cable/green, -/obj/structure/bed/chair/bay/chair{ - dir = 8; - icon_state = "bay_chair_preview" - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) "mRs" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 8 @@ -30774,15 +30868,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"nwO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) "nHF" = ( /obj/structure/table/gamblingtable, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -30817,21 +30902,6 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"oiU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/bed/chair/bay/chair{ - dir = 8; - icon_state = "bay_chair_preview" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) "olG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -30959,10 +31029,33 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) +"oLR" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 1; + icon_state = "bay_chair_preview" + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/shuttle/tourbus/cockpit) "oMK" = ( /obj/machinery/atmospherics/unary/engine, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/shuttle_pad) +"oPm" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 4; + icon_state = "bay_chair_preview" + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) "oRG" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, @@ -31084,16 +31177,10 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) -"pmy" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 4; - icon_state = "bay_chair_preview" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) +"pwF" = ( +/obj/machinery/computer/ship/sensors, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/shuttle/tourbus/cockpit) "pzH" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -31135,13 +31222,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"pIE" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 8; - icon_state = "bay_chair_preview" - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) "pJL" = ( /obj/structure/cable/green{ d1 = 1; @@ -31150,6 +31230,14 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) +"pNk" = ( +/obj/machinery/computer/shuttle_control/explore/tourbus, +/obj/machinery/light/small{ + dir = 1; + icon_state = "bulb1" + }, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/shuttle/tourbus/cockpit) "pPs" = ( /obj/machinery/light{ dir = 1 @@ -31175,23 +31263,6 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"qfv" = ( -/obj/machinery/light/small, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/door/window/southleft{ - dir = 1; - icon_state = "left"; - req_one_access = list(19,43,67) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/dark/bluecorner, -/area/shuttle/tourbus/engines) "qfz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -31234,23 +31305,6 @@ "qwm" = ( /turf/simulated/wall/shull, /area/shuttle/tourbus/engines) -"qzR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "shuttle blast"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating/eris/under, -/area/shuttle/tourbus/general) "qCn" = ( /obj/structure/bed/chair/wood{ dir = 8 @@ -31291,31 +31345,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"qSw" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28; - req_access = list(67) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/bed/chair/bay/chair{ - dir = 4; - icon_state = "bay_chair_preview" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) "qWU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /turf/simulated/wall/shull, @@ -31357,24 +31386,15 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) -"rdG" = ( -/obj/machinery/atmospherics/portables_connector{ +"rbR" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/bluecorner, -/area/shuttle/tourbus/engines) -"rkV" = ( -/obj/machinery/computer/ship/engines{ - dir = 8; - icon_state = "computer" - }, -/turf/simulated/floor/tiled/eris/white/orangecorner, -/area/shuttle/tourbus/cockpit) +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) "rxh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 10 @@ -31416,10 +31436,6 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"rHg" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled/eris/white/orangecorner, -/area/shuttle/tourbus/cockpit) "rMS" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -31430,14 +31446,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"rXC" = ( -/obj/machinery/computer/shuttle_control/explore/tourbus, -/obj/machinery/light/small{ - dir = 1; - icon_state = "bulb1" - }, -/turf/simulated/floor/tiled/eris/white/orangecorner, -/area/shuttle/tourbus/cockpit) "rXW" = ( /obj/effect/floor_decal/techfloor{ dir = 1 @@ -31470,30 +31478,12 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"sgb" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 4; - icon_state = "bay_chair_preview" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) "sla" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"stP" = ( -/obj/machinery/shipsensors{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/light/small, -/turf/simulated/floor/plating/eris/under, -/area/shuttle/tourbus/cockpit) "suT" = ( /obj/structure/cable/green{ d1 = 4; @@ -31524,6 +31514,23 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) +"sGV" = ( +/obj/machinery/light/small, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/door/window/southleft{ + dir = 1; + icon_state = "left"; + req_one_access = list(19,43,67) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/dark/bluecorner, +/area/shuttle/tourbus/engines) "sJC" = ( /obj/structure/cable/green{ d1 = 1; @@ -31567,14 +31574,6 @@ }, /turf/simulated/floor/tiled/monofloor, /area/crew_quarters/bar) -"sRY" = ( -/obj/effect/floor_decal/rust/part_rusted1, -/obj/machinery/atmospherics/binary/pump, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) "sSK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -31661,23 +31660,25 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) -"tpu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 +"tcW" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/tether/surfacebase/shuttle_pad; + base_turf = /turf/simulated/floor/reinforced; + docking_controller = "tourbus_pad"; + landmark_tag = "tourbus_dock"; + name = "Tourbus Pad" }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "shuttle blast"; - name = "Shuttle Blast Doors"; - opacity = 0 +/obj/effect/overmap/visitable/ship/landable/tourbus, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating/eris/under, -/area/shuttle/tourbus/cockpit) +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) "tqY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 1 @@ -31751,6 +31752,19 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) +"tLv" = ( +/obj/machinery/power/smes/buildable{ + charge = 500000 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/bluecorner, +/area/shuttle/tourbus/engines) "tRg" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloor, @@ -31791,17 +31805,6 @@ /obj/structure/table/steel, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"tYO" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 8; - icon_state = "bay_chair_preview" - }, -/obj/effect/floor_decal/rust/part_rusted1{ - dir = 8; - icon_state = "part_rusted1" - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) "tZw" = ( /obj/structure/sign/biohazard{ pixel_y = 32 @@ -31838,35 +31841,11 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"ufi" = ( +"uhm" = ( /obj/structure/bed/chair/bay/chair{ dir = 8; icon_state = "bay_chair_preview" }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) -"umI" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/tether/surfacebase/shuttle_pad; - base_turf = /turf/simulated/floor/reinforced; - docking_controller = "tourbus_pad"; - landmark_tag = "tourbus_dock"; - name = "Tourbus Pad" - }, -/obj/effect/overmap/visitable/ship/landable/tourbus, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, /turf/simulated/floor/tiled/eris/dark/golden, /area/shuttle/tourbus/general) "uxo" = ( @@ -32002,6 +31981,14 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) +"vrU" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/shuttle/tourbus/cockpit) "vtN" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 9 @@ -32131,6 +32118,23 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) +"wyi" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "shuttle blast"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/tourbus/general) "wGK" = ( /obj/structure/bed/chair/wood{ dir = 1 @@ -32157,6 +32161,18 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) +"wQf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/power/terminal, +/obj/structure/cable/green, +/obj/structure/bed/chair/bay/chair{ + dir = 8; + icon_state = "bay_chair_preview" + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) "wXr" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 6 @@ -32340,43 +32356,6 @@ /obj/random/cutout, /turf/simulated/floor/plating, /area/vacant/vacant_site/gateway) -"xHF" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) -"xIM" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - dir = 8; - frequency = 1380; - id_tag = "tourbus_docker"; - pixel_x = 28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/structure/bed/chair/bay/chair{ - dir = 8; - icon_state = "bay_chair_preview" - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable, -/turf/simulated/floor/tiled/eris/dark/golden, -/area/shuttle/tourbus/general) "xIO" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -32405,6 +32384,19 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) +"xOa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/effect/floor_decal/rust/part_rusted1{ + dir = 4; + icon_state = "part_rusted1" + }, +/turf/simulated/floor/tiled/eris/dark/golden, +/area/shuttle/tourbus/general) "xUo" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -32413,6 +32405,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) +"xXf" = ( +/obj/machinery/shipsensors{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/light/small, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/tourbus/cockpit) "xZw" = ( /obj/structure/bed/chair{ dir = 8 @@ -43453,13 +43453,13 @@ aJn aKa aKU aKU -eJl +lCq jvK jvK jvK -qzR +bkN jHw -dsn +jML jHw jpB qWU @@ -43597,13 +43597,13 @@ aKU aKU jvK jvK -rHg +kdx jvK -coe -pmy -kgB -coe -fYY +oPm +mDf +eiO +oPm +fYr qwm qwm aKU @@ -43737,16 +43737,16 @@ ats aKD aKU aKU -tpu -gaL -bbd +ddn +eCG +oLR jvK -coe -sgb -mtZ -lLM -qSw -rdG +oPm +kmK +xOa +dVW +kun +kBF qom aKU avs @@ -43879,16 +43879,16 @@ aJn aKa aKU aKU -tpu -rXC -hPR -dVm -nwO -lDl -cBd -sRY -xHF -qfv +ddn +pNk +vrU +dJm +kiw +kcC +eGv +lFc +dGZ +sGV qom aKU aOI @@ -44021,16 +44021,16 @@ aJn aKa aKU aKU -tpu -crz -bfI +ddn +pwF +hlF jvK -pIE -tYO -hIE -oiU -mQV -eIo +uhm +gUL +rbR +hCB +wQf +tLv fNt aKU aOI @@ -44165,13 +44165,13 @@ aKU aKU jvK jvK -rkV +ivq jvK -pIE -hyk -umI -ufi -xIM +uhm +fcg +tcW +iqb +fru qwm qwm aKU @@ -44305,13 +44305,13 @@ aJn aKa aKU aKU -stP +xXf jvK jvK jvK -eEU +wyi jHw -gwY +caw jHw gHh qWU diff --git a/maps/tether/tether-07-station3.dmm b/maps/tether/tether-07-station3.dmm index 03280b9bf6..899a81bdf7 100644 --- a/maps/tether/tether-07-station3.dmm +++ b/maps/tether/tether-07-station3.dmm @@ -5695,6 +5695,16 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) +"akx" = ( +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/obj/machinery/light, +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) "akz" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -27663,6 +27673,15 @@ }, /turf/simulated/wall/rshull, /area/shuttle/excursion/cargo) +"aXD" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/tank/oxygen, +/obj/item/device/suit_cooling_unit, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/pilot, +/obj/item/clothing/head/helmet/space/void/pilot, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/shuttle/excursion/general) "aXG" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, @@ -28576,19 +28595,22 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) -"bfc" = ( -/obj/structure/fuel_port{ - pixel_x = 0; - pixel_y = 3 +"bfa" = ( +/obj/machinery/door/window/brigdoor/westright{ + req_access = newlist(); + req_one_access = list(5,67) }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/shuttle/excursion/cargo) -"bjJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 10 +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/medivac/engines) +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/shuttle/medivac/cockpit) "bmI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -28612,10 +28634,6 @@ }, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) -"brW" = ( -/obj/machinery/computer/ship/helm, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/shuttle/excursion/cockpit) "btu" = ( /obj/structure/cable{ d1 = 4; @@ -28655,26 +28673,28 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"bDx" = ( -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" +"bDD" = ( +/obj/machinery/sleep_console, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) +"bFX" = ( +/obj/machinery/power/port_gen/pacman/mrs, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -28 +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) +"bHX" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/fuel_port{ + dir = 1 }, /turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/cockpit) -"bHf" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/plating/eris/under, -/area/shuttle/excursion/cargo) +/area/shuttle/securiship/engines) "bJB" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/security{ @@ -28697,6 +28717,68 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) +"bNj" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 10; + icon_state = "corner_white" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 4; + icon_state = "corner_white" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) +"bPP" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 4; + frequency = 1380; + id_tag = "securiship_docker"; + pixel_x = -28 + }, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/obj/machinery/airlock_sensor{ + pixel_y = 28 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/shuttle_landmark{ + base_area = /area/space; + base_turf = /turf/space; + docking_controller = "securiship_bay"; + landmark_tag = "tether_securiship_dock"; + name = "Securiship Dock" + }, +/obj/effect/overmap/visitable/ship/landable/securiship, +/turf/simulated/floor/tiled/eris/techmaint_cargo, +/area/shuttle/securiship/general) +"bRO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "shuttle blast"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/excursion/general) +"bTM" = ( +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/shuttle/securiship/general) "bWl" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -28708,6 +28790,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/station/upper) +"bWE" = ( +/obj/machinery/sleep_console{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) "bYp" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/paleblue/border, @@ -28723,31 +28811,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"bYR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +"bYH" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/dark/gray_perforated, -/area/shuttle/excursion/cargo) -"bZU" = ( -/obj/machinery/door/airlock/glass_external, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/securiship/general) +/obj/structure/table/glass, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/shuttle/medivac/cockpit) "cay" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 5 @@ -28757,33 +28827,79 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"clf" = ( +"ccy" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, /obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/machinery/power/smes/buildable/point_of_interest, -/turf/simulated/floor/tiled/eris/dark/techfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/shuttle/securiship/general) +"cgm" = ( +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, /area/shuttle/excursion/general) -"cnF" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, +"ciI" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/medivac/engines) -"cFf" = ( -/obj/structure/bed/chair/shuttle, -/obj/machinery/light{ - dir = 1 +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/engines) +"ckU" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) +"coc" = ( +/obj/machinery/computer/ship/helm{ + req_one_access = list(67,58) }, -/turf/simulated/floor/tiled/eris/dark/monofloor, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/cockpit) +"cow" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, /area/shuttle/excursion/general) +"crE" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) +"czA" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/shuttle/securiship/general) +"cGX" = ( +/obj/machinery/computer/ship/sensors{ + dir = 8; + icon_state = "computer" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/cockpit) "cIJ" = ( /obj/machinery/light{ dir = 8; @@ -28808,14 +28924,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"cJq" = ( -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/shuttle/excursion/general) "cKx" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -28835,92 +28943,68 @@ }, /turf/simulated/floor/tiled/dark, /area/security/security_equiptment_storage) -"cUl" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1380; - id_tag = "expshuttle_vent" - }, -/obj/item/device/radio/intercom{ +"cNv" = ( +/obj/machinery/power/terminal{ dir = 1; - pixel_y = 24; - req_access = list() + icon_state = "term" }, -/obj/structure/handrail, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/tiled/eris/dark/danger, -/area/shuttle/excursion/cargo) -"cVZ" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/excursion/general) -"cZG" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "expshuttle_vent" - }, -/obj/machinery/oxygen_pump{ - pixel_y = -32 - }, -/obj/structure/handrail{ - dir = 1 - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/tiled/eris/dark/danger, -/area/shuttle/excursion/cargo) -"cZP" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/cyan{ - d2 = 2; +/obj/structure/cable/green{ icon_state = "0-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/turf/simulated/floor/tiled/eris/steel/gray_perforated, -/area/shuttle/securiship/general) -"dcK" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/excursion/general) -"dgL" = ( -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8; - icon_state = "warning" - }, -/obj/machinery/conveyor_switch/oneway{ - id = "shuttle_outbound" - }, -/obj/machinery/light{ +/area/shuttle/medivac/engines) +"cQa" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ dir = 1 }, -/turf/simulated/floor/tiled/eris/dark/gray_perforated, -/area/shuttle/excursion/cargo) -"dqE" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 }, -/turf/simulated/floor/tiled/eris/dark/danger, +/turf/simulated/floor/plating/eris/under, /area/shuttle/excursion/cargo) +"cTI" = ( +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 4; + pixel_x = 0; + pixel_y = -28 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/securiship/general) +"cUg" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/medivac/engines) +"daI" = ( +/obj/machinery/computer/shuttle_control/explore/medivac{ + dir = 1; + icon_state = "computer" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/shuttle/medivac/cockpit) +"dhW" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) +"dln" = ( +/obj/structure/bed/padded, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/shuttle/medivac/general) +"doD" = ( +/obj/machinery/computer/ship/sensors, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/shuttle/excursion/cockpit) "dtK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -28951,28 +29035,11 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"dyq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "shuttle blast"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating/eris/under, -/area/shuttle/excursion/general) -"dzP" = ( +"dzV" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 1; frequency = 1380; - id_tag = "expshuttle_docker_pump_out_internal" + id_tag = "expshuttle_vent" }, /obj/machinery/oxygen_pump{ pixel_y = -32 @@ -28980,13 +29047,25 @@ /obj/structure/handrail{ dir = 1 }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/obj/effect/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/tiled/eris/dark/danger, /area/shuttle/excursion/cargo) +"dAo" = ( +/obj/machinery/power/terminal{ + dir = 1; + icon_state = "term" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/table/standard, +/obj/item/weapon/tank/phoron, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/engines) +"dAW" = ( +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/cockpit) "dCf" = ( /obj/effect/floor_decal/borderfloorblack/full, /obj/machinery/camera/network/security{ @@ -29018,18 +29097,30 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"dJw" = ( -/obj/machinery/door/window/brigdoor/westleft{ - req_access = newlist(); - req_one_access = list(5,67) - }, -/obj/structure/cable{ - d1 = 1; +"dFx" = ( +/obj/structure/cable/cyan{ + d1 = 4; d2 = 8; - icon_state = "1-8" + icon_state = "4-8" }, -/turf/simulated/floor/tiled/eris/steel/cyancorner, -/area/shuttle/medivac/cockpit) +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) +"dRj" = ( +/obj/structure/table/standard, +/obj/random/medical, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/medivac/engines) "dSk" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -29052,125 +29143,17 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"ebj" = ( -/obj/machinery/door/airlock/glass_external, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +"dYt" = ( +/obj/machinery/computer/ship/helm{ + dir = 8; + icon_state = "computer" }, -/obj/effect/map_helper/airlock/door/simple, -/turf/simulated/floor/tiled, -/area/security/hallway) -"ebB" = ( -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) -"ehI" = ( -/obj/machinery/atm{ - pixel_y = 30 - }, -/obj/effect/floor_decal/borderfloor{ +/obj/machinery/light{ dir = 1 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/upper) -"eje" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5; - icon_state = "intact-scrubbers" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/shuttle/excursion/general) -"esK" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/upper) -"eAb" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/security{ - name = "Armory Storage"; - secured_wires = 1 - }, -/obj/machinery/door/blast/regular{ - dir = 4; - icon_state = "pdoor1"; - id = "armoryred"; - name = "Red Armory"; - p_open = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armory/red) -"eCW" = ( -/obj/machinery/power/smes/buildable/point_of_interest, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/medivac/engines) -"eHW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 1; - icon_state = "map-fuel" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/engines) -"eLo" = ( -/obj/machinery/mineral/equipment_vendor/survey, -/turf/simulated/floor/tiled/eris/dark/gray_perforated, -/area/shuttle/excursion/cargo) -"ePs" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/terminal, -/obj/machinery/cell_charger, -/obj/structure/table/steel, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/obj/random/powercell, -/obj/item/stack/material/tritium{ - amount = 5 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/excursion/general) -"eRd" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/eris/dark/gray_perforated, -/area/shuttle/excursion/cargo) -"eSL" = ( +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/shuttle/medivac/cockpit) +"eaH" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume, /obj/machinery/embedded_controller/radio/airlock/docking_port{ dir = 4; @@ -29194,6 +29177,196 @@ /obj/effect/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/tiled/eris/steel/gray_perforated, /area/shuttle/medivac/general) +"ebj" = ( +/obj/machinery/door/airlock/glass_external, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/map_helper/airlock/door/simple, +/turf/simulated/floor/tiled, +/area/security/hallway) +"egf" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -26 + }, +/obj/item/weapon/tank/phoron{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/weapon/tank/phoron{ + pixel_x = 6; + pixel_y = -6 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) +"ehI" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"ejd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) +"elB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) +"esK" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"eug" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/shuttle/excursion/cargo) +"evl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) +"ewT" = ( +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 8; + icon_state = "map_connector-fuel" + }, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/engines) +"eAb" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/security{ + name = "Armory Storage"; + secured_wires = 1 + }, +/obj/machinery/door/blast/regular{ + dir = 4; + icon_state = "pdoor1"; + id = "armoryred"; + name = "Red Armory"; + p_open = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/red) +"eBO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "shuttle blast"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/excursion/general) +"eKK" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) +"eLO" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/bed/chair/bay/chair, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/shuttle/securiship/general) +"eQX" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/shuttle/excursion/general) +"eVj" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/engines) "eWf" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -29233,6 +29406,15 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) +"fcC" = ( +/obj/machinery/door/airlock/multi_tile/metal/mait, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/securiship/engines) "fdX" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -29252,6 +29434,29 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) +"feb" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1; + icon_state = "bulb1" + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) "fho" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -29266,6 +29471,21 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) +"fkB" = ( +/obj/machinery/door/airlock/glass_external, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 5; + pixel_x = -28 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/medivac/general) "fkQ" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled, @@ -29284,21 +29504,6 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"flL" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/medivac/engines) -"fmJ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/eris/dark/gray_perforated, -/area/shuttle/excursion/cargo) "fox" = ( /obj/structure/cable{ icon_state = "1-2" @@ -29312,34 +29517,12 @@ /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"foL" = ( -/obj/structure/cable/green{ - dir = 1; - icon_state = "1-2" +"fqf" = ( +/obj/machinery/sleeper{ + dir = 4 }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/machinery/light/small{ - dir = 8; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/eris/techmaint_cargo, -/area/shuttle/securiship/general) -"foR" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/engines) -"fqd" = ( -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/cockpit) -"fre" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/medivac/engines) +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) "fuV" = ( /obj/structure/bed/chair/comfy/brown, /obj/machinery/holoposter{ @@ -29366,12 +29549,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"fDf" = ( -/obj/machinery/computer/shuttle_control/explore/securiship{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/securiship/general) "fFS" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -29390,19 +29567,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"fFY" = ( -/obj/machinery/door/airlock/glass_external, -/obj/structure/cable/green{ - dir = 1; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/effect/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/securiship/general) -"fIK" = ( -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/shuttle/medivac/general) "fKd" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -29416,6 +29580,20 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) +"fQo" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/shuttle/excursion/cockpit) "fTy" = ( /obj/effect/floor_decal/borderfloorblack/full, /obj/machinery/light{ @@ -29429,43 +29607,37 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"fUW" = ( -/obj/structure/window/reinforced{ +"fZo" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, -/obj/structure/window/reinforced{ +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/medivac/engines) +"gde" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/excursion/cargo) +"gdk" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/portables_connector{ dir = 1 }, -/obj/structure/bed/chair/bay/chair, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/shuttle/securiship/general) -"fXX" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/alarm{ - pixel_y = 22 - }, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/excursion/general) -"fYm" = ( -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/binary/pump/fuel, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/engines) -"geT" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/cockpit) +/area/shuttle/medivac/engines) +"geP" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) "gfw" = ( /obj/structure/cable{ d1 = 4; @@ -29479,23 +29651,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"gge" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "shuttle blast"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating/eris/under, -/area/shuttle/excursion/general) "gqZ" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -29507,53 +29662,24 @@ /obj/structure/table/steel, /turf/simulated/floor/tiled, /area/security/security_processing) -"gtj" = ( -/obj/machinery/recharger, -/obj/structure/table/steel, +"gvu" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, /obj/machinery/light{ - dir = 4; + dir = 8; icon_state = "tube1" }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 2; - name = "south bump"; - pixel_y = -28; - req_access = list(67) - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/eris/dark/gray_perforated, -/area/shuttle/excursion/cargo) -"gyu" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5; - icon_state = "corner_white" - }, -/obj/effect/floor_decal/corner/blue, /turf/simulated/floor/tiled/eris/white, /area/shuttle/medivac/general) -"gyE" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "medivac blast"; - name = "Shuttle Blast Doors"; - opacity = 0 +"gAZ" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 }, -/turf/simulated/floor/plating/eris/under, -/area/shuttle/medivac/general) +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) "gBb" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -29614,26 +29740,34 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"gEi" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5; - icon_state = "corner_white" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 8; - icon_state = "corner_white" - }, -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) -"gPm" = ( -/obj/structure/bed/chair/shuttle{ +"gER" = ( +/obj/machinery/body_scanconsole{ dir = 4 }, /turf/simulated/floor/tiled/eris/white, /area/shuttle/medivac/general) +"gNy" = ( +/obj/machinery/door/airlock/glass_external, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 6; + frequency = 1380; + id_tag = "expshuttle_exterior_sensor"; + master_tag = "expshuttle_docker"; + pixel_x = 4; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8; + icon_state = "warning" + }, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/excursion/cargo) "gQf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -29676,29 +29810,12 @@ /obj/random/cutout, /turf/simulated/floor, /area/maintenance/station/ai) -"gWA" = ( -/obj/structure/bed/padded, -/turf/simulated/floor/tiled/eris/dark/violetcorener, +"gWG" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white, /area/shuttle/medivac/general) -"gXI" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/table/glass, -/obj/machinery/recharger, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/eris/steel/cyancorner, -/area/shuttle/medivac/cockpit) "gYC" = ( /obj/structure/cable{ d1 = 4; @@ -29718,11 +29835,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"gYE" = ( -/obj/structure/table/standard, -/obj/random/medical, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/medivac/engines) "gYV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -29737,28 +29849,6 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"hcy" = ( -/obj/machinery/door/airlock/glass_external, -/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ - dir = 6; - frequency = 1380; - id_tag = "expshuttle_exterior_sensor"; - master_tag = "expshuttle_docker"; - pixel_x = 4; - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8; - icon_state = "warning" - }, -/obj/effect/map_helper/airlock/door/ext_door, -/obj/effect/map_helper/airlock/sensor/ext_sensor, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/excursion/cargo) "hid" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -29771,28 +29861,22 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"hqh" = ( -/obj/structure/fuel_port{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 8; - icon_state = "map" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/medivac/engines) -"hqz" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/shuttle/excursion/general) -"hsB" = ( -/obj/structure/handrail{ +"hpj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/eris/dark/danger, -/area/shuttle/excursion/cargo) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) +"hsy" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) "htW" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -29813,10 +29897,29 @@ }, /turf/simulated/wall/rshull, /area/shuttle/securiship/engines) -"hAA" = ( -/obj/structure/bed/chair/shuttle, -/turf/simulated/floor/tiled/eris/dark/monofloor, +"hyH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, /area/shuttle/excursion/general) +"hGJ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1; + icon_state = "warningcorner" + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) "hGW" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -29831,30 +29934,26 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) -"hJb" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/engines) -"hME" = ( -/obj/structure/bed/chair/bay/chair/padded/blue{ - dir = 4; - icon_state = "bay_chair_preview" +"hIb" = ( +/obj/machinery/light/small{ + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10; icon_state = "intact" }, -/turf/simulated/floor/tiled/eris/steel/cyancorner, -/area/shuttle/medivac/cockpit) -"hNY" = ( -/obj/machinery/door/airlock/glass_external, -/obj/effect/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/medivac/general) +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/medivac/engines) +"hNx" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) "hPJ" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, @@ -29865,15 +29964,6 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"hSi" = ( -/obj/machinery/door/airlock/multi_tile/metal/mait, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/securiship/engines) "hTN" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/security{ @@ -29894,10 +29984,13 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"hZj" = ( -/obj/machinery/door/window/brigdoor/eastleft, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/shuttle/securiship/general) +"hTW" = ( +/obj/structure/bed/chair/shuttle, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) "hZs" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -29941,38 +30034,32 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/security/hallway) -"iix" = ( -/obj/machinery/atmospherics/portables_connector{ +"ijU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5; + icon_state = "intact-supply" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/structure/handrail{ dir = 1 }, -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/medivac/engines) -"imp" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/shuttle/excursion/general) +"inX" = ( +/obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light/small{ - dir = 1; - icon_state = "bulb1" +/obj/effect/floor_decal/corner/blue{ + dir = 5; + icon_state = "corner_white" }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/excursion/general) -"ioe" = ( +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) +"irY" = ( /obj/structure/bed/padded, /obj/structure/window/reinforced{ dir = 1 @@ -29982,28 +30069,36 @@ "isz" = ( /turf/simulated/wall/rshull, /area/shuttle/securiship/general) -"iCC" = ( -/obj/machinery/suit_cycler/pilot, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -26 +"isN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" }, -/turf/simulated/floor/tiled/eris/techmaint_perforated, -/area/shuttle/excursion/general) -"iDz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/handrail{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch{ + req_one_access = list(67) + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor/tiled/eris/dark/monofloor, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/shuttle/excursion/general) +"iCh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1; + icon_state = "warning" + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/shuttle/excursion/cargo) "iDH" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, @@ -30018,31 +30113,44 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"iGQ" = ( -/obj/machinery/door/airlock/glass_external, -/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ - dir = 5; - pixel_x = -28 +"iEF" = ( +/obj/structure/fuel_port{ + pixel_x = -32 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 8; + icon_state = "map" }, -/obj/effect/map_helper/airlock/sensor/ext_sensor, -/obj/effect/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/medivac/general) -"iIc" = ( -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/shuttle/securiship/general) -"iNd" = ( -/obj/structure/bed/chair/bay/chair/padded/beige{ - dir = 4; - icon_state = "bay_chair_preview" +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/medivac/engines) +"iEV" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 }, -/turf/simulated/floor/tiled/eris/steel/gray_perforated, -/area/shuttle/securiship/general) +/obj/effect/shuttle_landmark{ + base_area = /area/tether/exploration; + base_turf = /turf/simulated/floor/reinforced; + docking_controller = "expshuttle_dock"; + landmark_tag = "tether_excursion_hangar"; + name = "Excursion Shuttle Dock" + }, +/obj/effect/overmap/visitable/ship/landable/excursion, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/shuttle/excursion/cargo) +"iFx" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/shuttle/excursion/cockpit) +"iJT" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/excursion/cargo) "iOI" = ( /obj/structure/cable{ d1 = 4; @@ -30065,15 +30173,18 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"iTN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +"iPK" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = -32 }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/medivac/engines) +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) +"iQS" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/shuttle/excursion/general) "iUO" = ( /obj/structure/cable/green{ d1 = 1; @@ -30085,6 +30196,29 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) +"iWG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/excursion/general) +"iWZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) +"iXe" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair/bay/chair/padded/beige{ + dir = 4; + icon_state = "bay_chair_preview" + }, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/shuttle/securiship/general) "jbY" = ( /obj/structure/cable{ d1 = 4; @@ -30103,6 +30237,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) +"jcr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) "jfu" = ( /obj/machinery/newscaster{ layer = 3.3; @@ -30129,25 +30270,31 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) +"jna" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 5; + icon_state = "intact-aux" + }, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/shuttle/securiship/general) "jnQ" = ( /obj/structure/cable/green{ icon_state = "2-8" }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"jqQ" = ( -/obj/machinery/light/small{ - dir = 1 +"jsf" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/medivac/engines) +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/excursion/cargo) "jxg" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/command{ @@ -30164,24 +30311,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"jxv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/closet/secure_closet/guncabinet/excursion, -/obj/item/weapon/pickaxe, -/turf/simulated/floor/tiled/eris/dark/gray_perforated, -/area/shuttle/excursion/cargo) -"jDJ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/shuttle/excursion/general) "jEX" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -30197,14 +30326,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"jFs" = ( -/obj/machinery/power/smes/buildable/point_of_interest, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/engines) "jHS" = ( /obj/structure/cable{ icon_state = "1-2" @@ -30217,42 +30338,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"jIG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"jQx" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/shuttle/excursion/general) -"jMO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) -"jNv" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/fuel_port{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/engines) -"jOx" = ( -/obj/structure/bed/chair/bay/chair/padded/beige{ - dir = 4; - icon_state = "bay_chair_preview" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/securiship/general) -"jRd" = ( -/obj/machinery/sleep_console, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/shuttle/excursion/general) +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) "jRD" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -30285,29 +30378,6 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"jSm" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/table/rack/shelf, -/obj/machinery/alarm{ - breach_detection = 0; - dir = 8; - icon_state = "alarm0"; - pixel_x = 25; - rcon_setting = 3; - report_danger_level = 0 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/securiship/general) -"jZe" = ( -/obj/machinery/door/window/brigdoor/northleft{ - req_access = list(5) - }, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/shuttle/medivac/general) "kbY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -30325,13 +30395,27 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"kkt" = ( -/obj/machinery/computer/ship/engines{ - dir = 1; - icon_state = "computer" +"kgD" = ( +/obj/structure/fuel_port{ + pixel_x = 0; + pixel_y = 3 }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/shuttle/excursion/cockpit) +/turf/simulated/floor/tiled/eris/techmaint, +/area/shuttle/excursion/cargo) +"khf" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/shuttle/securiship/general) +"knm" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/medivac/engines) "kqY" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, @@ -30346,21 +30430,16 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"krJ" = ( -/obj/structure/closet/walllocker/emerglocker{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/shuttle/excursion/general) -"ktJ" = ( -/obj/structure/cable/cyan{ +"krV" = ( +/obj/machinery/light, +/obj/structure/cable/green{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 8; + icon_state = "1-8" }, -/obj/structure/bed/chair/bay/chair/padded/beige, -/turf/simulated/floor/tiled/eris/steel/gray_perforated, -/area/shuttle/securiship/general) +/obj/machinery/atmospherics/binary/pump/fuel, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/engines) "kAC" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/security{ @@ -30377,6 +30456,36 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) +"kCz" = ( +/obj/machinery/door/airlock/hatch{ + req_one_access = list(67) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/excursion/general) +"kDC" = ( +/obj/structure/bed/chair/bay/chair/padded/blue{ + dir = 4; + icon_state = "bay_chair_preview" + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "medivac blast"; + name = "Shuttle Blast Doors"; + pixel_x = -28; + pixel_y = -28; + req_access = list(67) + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/shuttle/medivac/cockpit) "kFO" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -30393,24 +30502,28 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"kLV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"kOD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/shuttle/excursion/general) -"kPa" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/empty, /turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/excursion/general) +/area/shuttle/medivac/engines) +"kPW" = ( +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/shuttle/excursion/cargo) "kSC" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -30437,33 +30550,30 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"kVs" = ( -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "expshuttle_docker"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1380; - id_tag = "expshuttle_vent" +"kTn" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24; + req_access = list() }, /obj/structure/handrail, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/tiled/eris/dark/danger, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, /area/shuttle/excursion/cargo) -"kWW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5; - icon_state = "intact-fuel" - }, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 +"kUK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/closet/secure_closet/guncabinet/excursion, +/obj/item/weapon/pickaxe, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) +"kVs" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/engines) +/area/shuttle/excursion/general) "lad" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 1 @@ -30473,14 +30583,39 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"lfL" = ( -/obj/machinery/computer/ship/sensors{ - dir = 8; - icon_state = "computer" +"ldH" = ( +/obj/structure/bed/chair/bay/chair/padded/blue{ + dir = 4; + icon_state = "bay_chair_preview" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" }, -/obj/machinery/light, /turf/simulated/floor/tiled/eris/steel/cyancorner, /area/shuttle/medivac/cockpit) +"lfJ" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/alarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) +"lnp" = ( +/obj/machinery/door/airlock/glass_external, +/obj/structure/cable/green{ + dir = 1; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/securiship/general) "lon" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -30505,10 +30640,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"lqn" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/eris/dark/gray_perforated, -/area/shuttle/excursion/cargo) "lug" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -30527,80 +30658,29 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"lwU" = ( -/obj/machinery/computer/shuttle_control/explore/excursion{ - dir = 1; - icon_state = "computer" - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/shuttle/excursion/cockpit) -"lBz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/hatch{ - req_one_access = list(67) - }, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/excursion/general) -"lDF" = ( -/obj/machinery/door/airlock/hatch{ - req_one_access = list(67) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/excursion/general) -"lIz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; +"lus" = ( +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/shuttle/medivac/general) +"lxr" = ( +/obj/structure/cable{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/excursion/general) -"lIR" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 +/obj/structure/cable{ + icon_state = "2-8" }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/excursion/general) -"lKI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) +"lyg" = ( +/obj/machinery/computer/ship/engines{ dir = 4; - icon_state = "intact-scrubbers" + icon_state = "computer" }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating/eris/under, -/area/shuttle/excursion/general) +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/cockpit) +"lHY" = ( +/obj/machinery/door/window/brigdoor/eastleft, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/shuttle/securiship/general) "lMN" = ( /obj/structure/grille, /obj/structure/cable/green, @@ -30633,35 +30713,16 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"lOT" = ( -/obj/machinery/power/terminal{ - dir = 1; - icon_state = "term" +"lSD" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/medivac/engines) -"lWY" = ( -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/excursion/general) -"maX" = ( -/obj/machinery/airlock_sensor{ - pixel_x = 28 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1380; - id_tag = "medivac_docker_pump_out_internal" - }, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/obj/effect/map_helper/airlock/atmos/pump_out_internal, -/turf/simulated/floor/tiled/eris/steel/gray_perforated, -/area/shuttle/medivac/general) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/shuttle/excursion/cockpit) "meu" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, @@ -30689,6 +30750,27 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) +"miK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/rack/shelf, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/securiship/general) +"mnk" = ( +/obj/machinery/door/airlock/hatch{ + req_one_access = list(67) + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/excursion/general) "mqv" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -30702,18 +30784,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"mta" = ( -/obj/machinery/door/airlock/hatch{ - req_one_access = list(67) - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/excursion/general) "mxs" = ( /obj/effect/floor_decal/industrial/warning/full, /obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ @@ -30722,27 +30792,27 @@ /obj/effect/map_helper/airlock/atmos/pump_out_external, /turf/simulated/floor/airless, /area/shuttle/securiship/general) -"mxO" = ( -/obj/structure/cable/green{ - dir = 1; - icon_state = "1-2" +"myk" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 9; - icon_state = "intact-aux" +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "medivac blast"; + name = "Shuttle Blast Doors"; + opacity = 0 }, -/turf/simulated/floor/tiled/eris/steel/gray_perforated, -/area/shuttle/securiship/general) -"mzF" = ( -/obj/structure/table/steel, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/shuttle/excursion/cockpit) -"mAy" = ( -/obj/machinery/body_scanconsole{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white, +/turf/simulated/floor/plating/eris/under, /area/shuttle/medivac/general) +"mzj" = ( +/obj/machinery/computer/ship/engines, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/shuttle/medivac/cockpit) "mDQ" = ( /obj/machinery/camera/network/security{ dir = 5; @@ -30761,6 +30831,19 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) +"mFv" = ( +/obj/machinery/airlock_sensor{ + pixel_x = 28 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 2; + frequency = 1380; + id_tag = "medivac_docker_pump_out_internal" + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/shuttle/medivac/general) "mLa" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -30776,19 +30859,6 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"mOR" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/steel/gray_perforated, -/area/shuttle/securiship/general) "mPW" = ( /obj/effect/floor_decal/techfloor/orange, /obj/effect/floor_decal/techfloor/hole/right, @@ -30797,11 +30867,23 @@ }, /turf/simulated/floor/tiled/techfloor, /area/teleporter/departing) -"mWZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/glass_external, -/obj/effect/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/eris/techmaint_panels, +"ndd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5; + icon_state = "intact-fuel" + }, +/obj/machinery/alarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/engines) +"nfB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white, /area/shuttle/medivac/general) "ngb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -30817,43 +30899,35 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"nkR" = ( -/obj/machinery/power/terminal{ - dir = 1; - icon_state = "term" +"njt" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/table/standard, -/obj/item/weapon/tank/phoron, /turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/engines) -"nmZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating/eris/under, -/area/shuttle/excursion/general) -"noj" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/gray_perforated, -/area/shuttle/excursion/cargo) -"npz" = ( -/obj/structure/window/reinforced{ +/area/shuttle/securiship/cockpit) +"nkk" = ( +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) +"nlw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/item/device/radio/intercom{ dir = 8; - health = 1e+006 + pixel_x = -24; + pixel_y = 0 }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) +"nlX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8; + icon_state = "intact-aux" + }, +/obj/machinery/airlock_sensor{ + pixel_y = 28 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, /turf/simulated/floor/tiled/eris/steel/gray_perforated, /area/shuttle/securiship/general) "npJ" = ( @@ -30927,6 +31001,59 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) +"nvd" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/machinery/atmospherics/portables_connector/aux, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/shuttle/securiship/general) +"nvV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 1; + icon_state = "map-fuel" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/engines) +"nwM" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/terminal, +/obj/machinery/cell_charger, +/obj/structure/table/steel, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/obj/random/powercell, +/obj/item/stack/material/tritium{ + amount = 5 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) +"nzo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/obj/structure/closet/crate/freezer/rations, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu10, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) "nzs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -30962,80 +31089,44 @@ /obj/structure/closet/l3closet/security, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"nGd" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6; - icon_state = "intact" +"nRt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/medivac/engines) +"nVr" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/shuttle/excursion/general) -"nMg" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible, -/turf/simulated/floor/tiled/eris/dark/danger, -/area/shuttle/excursion/cargo) -"oad" = ( -/obj/machinery/computer/ship/helm{ - req_one_access = list(67,58) - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/cockpit) -"oek" = ( -/obj/machinery/alarm{ +/obj/machinery/power/apc{ dir = 4; - pixel_x = -23; - pixel_y = 0 + name = "east bump"; + pixel_x = 24 }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "shuttle blast"; - name = "Shuttle Blast Doors"; - pixel_x = -25; - pixel_y = -21; - req_access = list(67) +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" }, -/obj/structure/bed/chair/bay/comfy/blue{ - dir = 1; - icon_state = "bay_comfychair_preview"; - pixel_y = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/shuttle/excursion/cockpit) -"ogC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8; - icon_state = "intact-aux" - }, -/obj/machinery/airlock_sensor{ - pixel_y = 28 - }, -/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, /turf/simulated/floor/tiled/eris/steel/gray_perforated, /area/shuttle/securiship/general) -"ogX" = ( -/obj/machinery/computer/ship/helm{ - dir = 8; - icon_state = "computer" +"nYv" = ( +/obj/machinery/door/window/brigdoor/westleft{ + req_access = newlist(); + req_one_access = list(5,67) }, -/obj/machinery/light{ - dir = 1 +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/tiled/eris/steel/cyancorner, /area/shuttle/medivac/cockpit) +"nYO" = ( +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/shuttle/securiship/general) "oiV" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -31048,45 +31139,6 @@ /obj/machinery/camera/network/security, /turf/simulated/floor/tiled, /area/security/security_processing) -"ojt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_external, -/obj/effect/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/medivac/general) -"ojG" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 1 - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - dir = 4; - frequency = 1380; - id_tag = "securiship_docker"; - pixel_x = -28 - }, -/obj/effect/map_helper/airlock/atmos/pump_out_internal, -/obj/machinery/airlock_sensor{ - pixel_y = 28 - }, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/obj/effect/shuttle_landmark{ - base_area = /area/space; - base_turf = /turf/space; - docking_controller = "securiship_bay"; - landmark_tag = "tether_securiship_dock"; - name = "Securiship Dock" - }, -/obj/effect/overmap/visitable/ship/landable/securiship, -/turf/simulated/floor/tiled/eris/techmaint_cargo, -/area/shuttle/securiship/general) "ojY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -31106,15 +31158,32 @@ }, /turf/simulated/wall/rshull, /area/shuttle/securiship/engines) -"omt" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ +"ooe" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/cockpit) +"opv" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8; + icon_state = "warning" + }, +/obj/machinery/conveyor_switch/oneway{ + id = "shuttle_outbound" + }, +/obj/machinery/light{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 6 - }, -/turf/simulated/floor/plating/eris/under, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, /area/shuttle/excursion/cargo) "opL" = ( /obj/effect/floor_decal/borderfloor{ @@ -31134,6 +31203,40 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) +"opP" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/structure/table/glass, +/obj/machinery/recharger, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/shuttle/medivac/cockpit) +"oqg" = ( +/obj/structure/bed/chair/shuttle, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) +"owc" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) "owU" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -31163,45 +31266,26 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"oyD" = ( -/obj/machinery/power/port_gen/pacman/mrs, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" +"oDi" = ( +/obj/machinery/door/window/brigdoor/northleft{ + req_access = list(5) }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/eris/dark/techfloor, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/shuttle/medivac/general) +"oDB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, /area/shuttle/excursion/general) -"oCi" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/shuttle/excursion/cockpit) -"oFw" = ( -/obj/structure/cable/green{ - dir = 1; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/securiship/engines) "oGF" = ( /obj/machinery/door/airlock/glass_external, /obj/effect/map_helper/airlock/door/simple, /turf/simulated/floor/tiled, /area/security/hallway) -"oHK" = ( -/obj/machinery/computer/shuttle_control/explore/medivac{ - dir = 1; - icon_state = "computer" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/eris/steel/cyancorner, -/area/shuttle/medivac/cockpit) "oIb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 1 @@ -31223,29 +31307,88 @@ }, /turf/simulated/wall/rshull, /area/shuttle/securiship/general) -"oMC" = ( -/obj/structure/bed/chair/bay/chair/padded/beige{ - dir = 1; - icon_state = "bay_chair_preview" +"oNI" = ( +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/suit/space/emergency, +/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/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/structure/closet/emcloset/legacy, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) +"oPK" = ( +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/machinery/button/remote/blast_door{ - dir = 2; - id = "securiship blast"; - name = "Shuttle Blast Doors"; - pixel_x = -28; - pixel_y = 28; - req_access = list(67) +/obj/structure/bed/chair/bay/chair, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/shuttle/securiship/general) +"oQw" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/cockpit) -"oXJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, -/obj/machinery/meter, -/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/securiship/engines) +"oUa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/obj/machinery/light, +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, /area/shuttle/excursion/general) -"oXM" = ( +"oWx" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/bed/chair/bay/chair/padded/beige, /turf/simulated/floor/tiled/eris/steel/gray_perforated, /area/shuttle/securiship/general) +"oYj" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "shuttle blast"; + name = "Shuttle Blast Doors"; + pixel_x = -25; + pixel_y = -21; + req_access = list(67) + }, +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 1; + icon_state = "bay_comfychair_preview"; + pixel_y = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/shuttle/excursion/cockpit) "peF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -31260,30 +31403,31 @@ }, /turf/simulated/floor/tiled/dark, /area/security/security_equiptment_storage) -"pfi" = ( -/obj/machinery/light{ - dir = 1 +"pfr" = ( +/obj/structure/cable/green{ + icon_state = "1-8" }, -/obj/structure/table/rack/shelf, -/obj/item/weapon/tank/oxygen, -/obj/item/device/suit_cooling_unit, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/pilot, -/obj/item/clothing/head/helmet/space/void/pilot, -/turf/simulated/floor/tiled/eris/techmaint_perforated, -/area/shuttle/excursion/general) -"pfR" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" }, -/obj/structure/handrail{ - dir = 1 +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) +"pgk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/tiled/eris/dark/gray_perforated, -/area/shuttle/excursion/cargo) +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/medivac/engines) +"pjr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/medivac/general) "plY" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ dir = 1; @@ -31291,18 +31435,6 @@ }, /turf/simulated/wall/rshull, /area/shuttle/securiship/engines) -"pqB" = ( -/obj/machinery/door/airlock/multi_tile/metal/mait{ - dir = 2; - icon_state = "door_closed"; - req_one_access = list(5,67) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/medivac/engines) "psg" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 @@ -31330,44 +31462,19 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"pwO" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 10; - icon_state = "corner_white" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1; - icon_state = "corner_white" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ +"pwj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) -"pDQ" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" }, -/obj/machinery/atmospherics/portables_connector/aux, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/eris/steel/gray_perforated, -/area/shuttle/securiship/general) -"pJZ" = ( -/obj/structure/closet/walllocker/emerglocker{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/dark/gray_perforated, -/area/shuttle/excursion/cargo) +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/excursion/general) "pOc" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -31378,6 +31485,12 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) +"pPy" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/shuttle/excursion/cargo) "pQE" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -31392,22 +31505,29 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"pSI" = ( -/obj/structure/bed/chair/bay/chair/padded/blue{ - dir = 4; - icon_state = "bay_chair_preview" +"pTp" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/machinery/button/remote/blast_door{ - dir = 8; +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; id = "medivac blast"; name = "Shuttle Blast Doors"; - pixel_x = -28; - pixel_y = -28; - req_access = list(67) + opacity = 0 }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/eris/steel/cyancorner, +/turf/simulated/floor/plating/eris/under, /area/shuttle/medivac/cockpit) +"pUf" = ( +/obj/machinery/bodyscanner{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) "pUt" = ( /obj/effect/floor_decal/borderfloorblack/full, /obj/machinery/atmospherics/pipe/simple/hidden/universal{ @@ -31415,6 +31535,13 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) +"pUV" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 1; + icon_state = "bay_chair_preview" + }, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/shuttle/securiship/general) "pYS" = ( /obj/structure/grille, /obj/structure/window/reinforced{ @@ -31433,13 +31560,33 @@ }, /turf/simulated/floor/plating, /area/shuttle/securiship/general) +"qcm" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) "qgj" = ( /obj/structure/cable{ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, /area/security/nuke_storage) -"qhN" = ( +"qkC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) +"qmq" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5; icon_state = "intact" @@ -31451,71 +31598,36 @@ }, /turf/simulated/floor/tiled/eris/dark/gray_perforated, /area/shuttle/excursion/cargo) -"qkC" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/nuke_storage) -"qmW" = ( -/obj/machinery/door/airlock/glass_external, -/obj/effect/map_helper/airlock/door/ext_door, -/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ - dir = 4; - pixel_x = 0; - pixel_y = -28 - }, -/obj/effect/map_helper/airlock/sensor/ext_sensor, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/securiship/general) -"qsy" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/handrail{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/excursion/general) -"qCU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/structure/handrail{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/shuttle/excursion/general) -"qGC" = ( -/obj/structure/shuttle/engine/heater, +"qxW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 10 +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "shuttle blast"; + name = "Shuttle Blast Doors"; + opacity = 0 }, +/obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating/eris/under, -/area/shuttle/excursion/cargo) +/area/shuttle/excursion/general) +"qEn" = ( +/obj/machinery/computer/ship/helm, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/shuttle/excursion/cockpit) +"qJK" = ( +/obj/machinery/suit_cycler/pilot, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/shuttle/excursion/general) "qLc" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -31559,19 +31671,35 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"qRd" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ +"qOY" = ( +/obj/machinery/door/airlock/multi_tile/metal/mait{ + dir = 2; + icon_state = "door_closed"; + req_one_access = list(5,67) + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/medivac/engines) +"qPS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4; + icon_state = "intact-scrubbers" + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/shuttle/excursion/general) +"qTB" = ( +/obj/machinery/computer/ship/engines{ dir = 1; - frequency = 1380; - id_tag = "expshuttle_vent" + icon_state = "computer" }, -/obj/structure/cable/cyan, -/obj/structure/handrail{ - dir = 1 - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/tiled/eris/dark/danger, -/area/shuttle/excursion/cargo) +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/shuttle/excursion/cockpit) "qYJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 1 @@ -31581,25 +31709,38 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"rbt" = ( -/obj/structure/cable/green{ - icon_state = "2-4" +"rbb" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "expshuttle_docker_pump_out_internal" }, -/turf/simulated/floor/tiled/eris/steel/gray_perforated, -/area/shuttle/securiship/general) -"reO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/oxygen_pump{ + pixel_y = -32 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/light/small{ dir = 4; - icon_state = "intact-scrubbers" + pixel_y = 0 }, -/obj/machinery/light, -/obj/item/device/radio/intercom{ - pixel_y = -24 +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/shuttle/excursion/cargo) +"reu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/tiled/eris/white/bluecorner, +/obj/machinery/door/airlock/hatch{ + req_one_access = list(67) + }, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/shuttle/excursion/general) "rgV" = ( /obj/structure/disposalpipe/segment{ @@ -31614,18 +31755,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"rir" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 10 +"rhv" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/structure/closet/crate/freezer/rations, -/obj/item/weapon/storage/mre/menu11, -/obj/item/weapon/storage/mre/menu10, -/turf/simulated/floor/tiled/eris/dark/techfloor, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, /area/shuttle/excursion/general) "rlz" = ( /obj/structure/cable/green{ @@ -31646,85 +31780,29 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"rlH" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 1; - icon_state = "bay_chair_preview" +"rAB" = ( +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -30 }, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/shuttle/securiship/general) -"rot" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" }, -/obj/structure/table/rack/shelf, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/securiship/general) -"ruj" = ( -/obj/machinery/light{ - dir = 8 +/obj/structure/cable{ + icon_state = "0-4" }, -/obj/structure/bed/chair/bay/chair/padded/beige{ - dir = 4; - icon_state = "bay_chair_preview" +/obj/structure/cable{ + icon_state = "1-4" }, -/turf/simulated/floor/tiled/eris/steel/gray_perforated, -/area/shuttle/securiship/general) -"rvW" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 }, -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/effect/floor_decal/industrial/outline/red, +/obj/item/weapon/tank/phoron, /turf/simulated/floor/tiled/eris/dark/techfloor, /area/shuttle/medivac/engines) -"rwn" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/shuttle/excursion/general) -"rwG" = ( -/obj/machinery/bodyscanner{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) -"rxY" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) -"rzZ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/bed/chair/bay/comfy/blue{ - dir = 1; - icon_state = "bay_comfychair_preview"; - pixel_y = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/shuttle/excursion/cockpit) "rBj" = ( /obj/structure/grille, /obj/structure/window/reinforced{ @@ -31742,14 +31820,6 @@ }, /turf/simulated/floor/plating, /area/shuttle/securiship/cockpit) -"rBo" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1; - icon_state = "warningcorner" - }, -/turf/simulated/floor/tiled/eris/dark/gray_perforated, -/area/shuttle/excursion/cargo) "rCb" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -31768,18 +31838,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"rEx" = ( -/obj/machinery/airlock_sensor{ - pixel_x = 28; - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/obj/effect/map_helper/airlock/sensor/int_sensor, -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) "rEP" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -31820,24 +31878,13 @@ }, /turf/simulated/floor/tiled/dark, /area/security/security_equiptment_storage) -"rFD" = ( -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" +"rFo" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/handrail{ + dir = 1 }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/engines) +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) "rIS" = ( /obj/machinery/door/airlock/glass_mining{ name = "Delivery Office"; @@ -31857,62 +31904,16 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/quartermaster/delivery) -"rJp" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 5; - icon_state = "intact-aux" - }, -/turf/simulated/floor/tiled/eris/steel/gray_perforated, -/area/shuttle/securiship/general) -"rJD" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1; - icon_state = "warning" - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/eris/dark/gray_perforated, -/area/shuttle/excursion/cargo) -"rNZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/excursion/general) -"rVK" = ( -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, -/obj/machinery/light, -/obj/structure/bed/chair/shuttle{ +"rUl" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ dir = 1 }, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/shuttle/excursion/general) -"rVW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/turf/simulated/floor/plating/eris/under, /area/shuttle/excursion/cargo) -"rXA" = ( -/obj/machinery/atmospherics/portables_connector/fuel{ - dir = 8; - icon_state = "map_connector-fuel" - }, -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/engines) "rZt" = ( /obj/structure/cable/green{ d1 = 1; @@ -31928,23 +31929,21 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"sgl" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +"sdI" = ( +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/shuttle/excursion/general) -"sja" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating/eris/under, -/area/shuttle/excursion/cargo) -"smZ" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/structure/cable, +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) +"shd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 }, @@ -31966,6 +31965,21 @@ }, /turf/simulated/floor/tiled/eris/techmaint_panels, /area/shuttle/excursion/cargo) +"slB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) "snK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -31977,6 +31991,32 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) +"sqj" = ( +/obj/structure/cable/green{ + dir = 1; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6; + icon_state = "intact-fuel" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/engines) +"ssc" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "expshuttle_docker"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 2; + frequency = 1380; + id_tag = "expshuttle_vent" + }, +/obj/structure/handrail, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/shuttle/excursion/cargo) "sso" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -31989,55 +32029,6 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"suq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch{ - req_one_access = list(67) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/excursion/general) -"syo" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 10; - icon_state = "corner_white" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 4; - icon_state = "corner_white" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) -"syP" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/brown, -/obj/structure/curtain/open/bed, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/shuttle/excursion/general) -"sAk" = ( -/obj/machinery/computer/ship/sensors{ - dir = 8; - icon_state = "computer" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/cockpit) "sBF" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -32050,23 +32041,30 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"sDA" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ +"sFS" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ dir = 1 }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "medivac blast"; - name = "Shuttle Blast Doors"; - opacity = 0 +/obj/machinery/meter, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) +"sHL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" }, -/turf/simulated/floor/plating/eris/under, -/area/shuttle/medivac/general) +/obj/structure/table/rack/shelf, +/obj/machinery/alarm{ + breach_detection = 0; + dir = 8; + icon_state = "alarm0"; + pixel_x = 25; + rcon_setting = 3; + report_danger_level = 0 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/securiship/general) "sIA" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -32109,27 +32107,32 @@ /obj/effect/catwalk_plated/dark, /turf/simulated/floor, /area/security/armory/blue) -"sSb" = ( -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 2; - name = "south bump"; - pixel_y = -28; - req_access = list(67) +"sNy" = ( +/obj/machinery/door/airlock/glass_external, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/structure/bed/chair/shuttle{ - dir = 4 - }, -/obj/structure/cable, -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) -"tmi" = ( -/obj/machinery/computer/ship/engines{ +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/securiship/general) +"sTT" = ( +/obj/machinery/conveyor{ dir = 4; - icon_state = "computer" + id = "shuttle_inbound" }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/cockpit) +/obj/structure/plasticflaps, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/excursion/cargo) +"tnc" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/shuttle/securiship/general) "tnC" = ( /obj/structure/cable{ d1 = 4; @@ -32145,6 +32148,24 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) +"tnX" = ( +/obj/machinery/airlock_sensor{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 2; + frequency = 1380; + id_tag = "expshuttle_docker_pump_out_internal" + }, +/obj/structure/handrail, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/shuttle/excursion/cargo) "tqy" = ( /obj/structure/grille, /obj/structure/cable/green{ @@ -32180,17 +32201,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"tsg" = ( -/obj/machinery/computer/ship/sensors, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/shuttle/excursion/cockpit) -"tvx" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/glass, -/turf/simulated/floor/tiled/eris/steel/cyancorner, -/area/shuttle/medivac/cockpit) "tyn" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 @@ -32207,120 +32217,20 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"tAw" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 +"tTA" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 10; + icon_state = "corner_white" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 1 - }, -/turf/simulated/floor/plating/eris/under, -/area/shuttle/excursion/cargo) -"tID" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/eris/dark/gray_perforated, -/area/shuttle/excursion/cargo) -"tIF" = ( -/obj/machinery/airlock_sensor{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1380; - id_tag = "expshuttle_docker_pump_out_internal" - }, -/obj/structure/handrail, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/obj/effect/map_helper/airlock/atmos/pump_out_internal, -/turf/simulated/floor/tiled/eris/dark/danger, -/area/shuttle/excursion/cargo) -"tJp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 9; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/excursion/general) -"tND" = ( -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/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/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/structure/closet/emcloset/legacy, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/shuttle/excursion/general) -"tQq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/turf/simulated/floor/tiled/eris/dark/gray_perforated, -/area/shuttle/excursion/cargo) -"tSU" = ( -/obj/machinery/atmospherics/binary/pump, -/obj/machinery/firealarm{ +/obj/effect/floor_decal/corner/blue{ dir = 1; - pixel_x = 0; - pixel_y = -26 - }, -/obj/item/weapon/tank/phoron{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/weapon/tank/phoron{ - pixel_x = 6; - pixel_y = -6 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/excursion/general) -"ubQ" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 8 - }, -/obj/effect/shuttle_landmark{ - base_area = /area/tether/exploration; - base_turf = /turf/simulated/floor/reinforced; - docking_controller = "expshuttle_dock"; - landmark_tag = "tether_excursion_hangar"; - name = "Excursion Shuttle Dock" - }, -/obj/effect/overmap/visitable/ship/landable/excursion, -/turf/simulated/floor/tiled/eris/dark/danger, -/area/shuttle/excursion/cargo) -"ueR" = ( -/obj/machinery/door/airlock/glass_external, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "expshuttle_docker"; - pixel_y = -24 + icon_state = "corner_white" }, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/excursion/cargo) +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) "ufq" = ( /obj/structure/barricade/cutout/ntsec, /turf/simulated/floor/tiled/dark, @@ -32344,6 +32254,21 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) +"ukN" = ( +/obj/structure/bed/chair/bay/chair/padded/beige{ + dir = 1; + icon_state = "bay_chair_preview" + }, +/obj/machinery/button/remote/blast_door{ + dir = 2; + id = "securiship blast"; + name = "Shuttle Blast Doors"; + pixel_x = -28; + pixel_y = 28; + req_access = list(67) + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/cockpit) "upC" = ( /obj/structure/cable{ d1 = 4; @@ -32359,27 +32284,46 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"uqR" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "shuttle_inbound" +"uqh" = ( +/obj/machinery/light{ + dir = 1 }, -/obj/structure/plasticflaps, -/turf/simulated/floor/plating/eris/under, -/area/shuttle/excursion/cargo) -"usY" = ( -/turf/simulated/floor/tiled/eris/dark/monofloor, +/obj/structure/table/rack/shelf, +/obj/item/weapon/tank/oxygen, +/obj/item/device/suit_cooling_unit, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/pilot, +/obj/item/clothing/head/helmet/space/void/pilot, +/turf/simulated/floor/tiled/eris/techmaint_perforated, /area/shuttle/excursion/general) -"uuo" = ( -/obj/structure/cable/green{ - icon_state = "1-8" +"urb" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/medivac/engines) +"usk" = ( +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" }, -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/securiship/cockpit) +"utX" = ( +/obj/machinery/computer/shuttle_control/explore/excursion{ + dir = 1; + icon_state = "computer" + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/shuttle/excursion/cockpit) "uzs" = ( /obj/machinery/shipsensors{ dir = 1 @@ -32399,20 +32343,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"uCo" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/excursion/general) "uDo" = ( /obj/machinery/atmospherics/valve/digital{ dir = 4; @@ -32421,37 +32351,42 @@ /obj/effect/catwalk_plated/dark, /turf/simulated/floor, /area/security/armory/blue) -"uLF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - density = 0; +"uIH" = ( +/obj/structure/cable/green{ dir = 1; - icon_state = "pdoor0"; - id = "shuttle blast"; - name = "Shuttle Blast Doors"; - opacity = 0 + icon_state = "1-2" }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating/eris/under, -/area/shuttle/excursion/general) -"uQV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - icon_state = "intact-supply" +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/securiship/engines) +"uKH" = ( +/obj/structure/cable/green{ + icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/shuttle/securiship/general) +"uLO" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 2; + frequency = 1380; + id_tag = "expshuttle_vent" }, -/obj/structure/handrail{ +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24; + req_access = list() + }, +/obj/structure/handrail, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/shuttle/excursion/cargo) +"uRY" = ( +/obj/machinery/atmospherics/portables_connector{ dir = 1 }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/shuttle/excursion/general) +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/medivac/engines) "uSa" = ( /obj/effect/floor_decal/techfloor/orange, /obj/effect/floor_decal/techfloor/hole, @@ -32460,6 +32395,51 @@ }, /turf/simulated/floor/tiled/techfloor, /area/teleporter/departing) +"uVL" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "medivac blast"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/medivac/general) +"uVS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5; + icon_state = "intact-scrubbers" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) +"uZd" = ( +/obj/structure/bed/chair/bay/chair/padded/beige{ + dir = 4; + icon_state = "bay_chair_preview" + }, +/turf/simulated/floor/tiled/eris/steel/gray_perforated, +/area/shuttle/securiship/general) +"vbD" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "expshuttle_vent" + }, +/obj/structure/cable/cyan, +/obj/structure/handrail{ + dir = 1 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/shuttle/excursion/cargo) "vbE" = ( /obj/structure/cable/green{ d1 = 1; @@ -32478,77 +32458,53 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"viH" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "shuttle_inbound" - }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/plating/eris/under, -/area/shuttle/excursion/cargo) -"vlv" = ( -/obj/structure/bed/chair/shuttle{ - dir = 4 +"vnu" = ( +/obj/machinery/computer/shuttle_control/explore/securiship{ + dir = 8 }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/securiship/general) +"vpU" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) -"vlD" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ dir = 4 }, -/obj/machinery/door/blast/regular{ - density = 0; +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/bed/chair/bay/comfy/blue{ dir = 1; - icon_state = "pdoor0"; - id = "medivac blast"; - name = "Shuttle Blast Doors"; - opacity = 0 + icon_state = "bay_comfychair_preview"; + pixel_y = 5 }, -/turf/simulated/floor/plating/eris/under, -/area/shuttle/medivac/cockpit) -"voJ" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 }, -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/shuttle/excursion/cockpit) "vqZ" = ( /turf/simulated/wall/rshull, /area/shuttle/securiship/cockpit) -"vvu" = ( -/obj/structure/bed/chair/shuttle, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/eris/dark/monofloor, +"vre" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, /area/shuttle/excursion/general) -"vvB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/excursion/general) -"vAI" = ( +"vux" = ( /obj/structure/cable/green{ dir = 1; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9; + icon_state = "intact-aux" + }, /turf/simulated/floor/tiled/eris/steel/gray_perforated, /area/shuttle/securiship/general) "vAP" = ( @@ -32559,68 +32515,33 @@ }, /turf/simulated/floor/tiled, /area/security/security_processing) -"vBa" = ( -/obj/machinery/door/window/brigdoor/westright{ - req_access = newlist(); - req_one_access = list(5,67) - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/cyancorner, -/area/shuttle/medivac/cockpit) "vFD" = ( /obj/structure/catwalk, /obj/random/cutout, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"vHg" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 1 +"vFT" = ( +/obj/machinery/door/airlock/hatch{ + req_one_access = newlist() }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/excursion/general) -"vKn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/cockpit) -"vMT" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) -"vTs" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/bed/chair/bay/chair, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/shuttle/securiship/general) -"vVR" = ( -/obj/machinery/computer/ship/engines, -/turf/simulated/floor/tiled/eris/steel/cyancorner, -/area/shuttle/medivac/cockpit) -"vZj" = ( -/obj/structure/cable{ - icon_state = "1-4" +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/excursion/cargo) +"vQT" = ( +/obj/structure/bed/chair/bay/chair/padded/beige{ + dir = 4; + icon_state = "bay_chair_preview" }, /turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/medivac/engines) +/area/shuttle/securiship/general) "wbZ" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -32638,15 +32559,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"wjz" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/hallwayaux) -"wjT" = ( +"wcg" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -32656,6 +32569,41 @@ }, /turf/simulated/floor/tiled/eris/dark/violetcorener, /area/shuttle/securiship/general) +"wcZ" = ( +/obj/machinery/computer/ship/sensors{ + dir = 8; + icon_state = "computer" + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/shuttle/medivac/cockpit) +"wiE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/obj/structure/handrail{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) +"wjz" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) "wls" = ( /obj/machinery/status_display{ pixel_y = 30 @@ -32676,12 +32624,6 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"wou" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/shuttle/excursion/general) "wpQ" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -32699,21 +32641,7 @@ }, /turf/simulated/floor/tiled, /area/security/hallwayaux) -"wAv" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/turf/simulated/floor/tiled/eris/steel/gray_perforated, -/area/shuttle/securiship/general) -"wFl" = ( +"wss" = ( /obj/structure/bed/chair/shuttle{ dir = 4 }, @@ -32729,6 +32657,13 @@ }, /turf/simulated/floor/tiled/eris/white, /area/shuttle/medivac/general) +"wFm" = ( +/obj/machinery/power/smes/buildable/point_of_interest, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/shuttle/medivac/engines) "wFV" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -32743,51 +32678,94 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"wKZ" = ( -/obj/structure/cable/green{ - dir = 1; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6; - icon_state = "intact-fuel" +"wJx" = ( +/obj/machinery/power/smes/buildable/point_of_interest, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" }, /turf/simulated/floor/tiled/eris/dark/techfloor_grid, /area/shuttle/securiship/engines) -"wOH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 +"wJy" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/shuttle/excursion/general) +"wOI" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/empty, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) +"wPw" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/shuttle/excursion/cargo) +"wPF" = ( +/obj/structure/bed/chair/shuttle, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) +"wRt" = ( +/obj/machinery/mineral/equipment_vendor/survey, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/shuttle/excursion/cargo) +"wRy" = ( +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/medivac/general) +"wSA" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6; + icon_state = "intact" }, /obj/structure/cable/cyan{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 4; + icon_state = "1-4" }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/excursion/general) -"wSq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/excursion/general) -"wVz" = ( /obj/structure/cable/cyan{ d1 = 2; d2 = 4; icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) +"wUW" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +/obj/machinery/alarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 }, /turf/simulated/floor/tiled/eris/white/bluecorner, -/area/shuttle/excursion/cockpit) +/area/shuttle/excursion/general) +"wWn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/handrail{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) "wXX" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -32835,26 +32813,66 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"xdh" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, +"xcF" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" + icon_state = "4-8" }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/medivac/engines) +/obj/effect/floor_decal/corner/blue{ + dir = 5; + icon_state = "corner_white" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 8; + icon_state = "corner_white" + }, +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) "xeo" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/fuel, /turf/simulated/wall/rshull, /area/shuttle/securiship/engines) +"xeA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/obj/machinery/meter, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) +"xir" = ( +/obj/machinery/airlock_sensor{ + pixel_x = 28; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor/tiled/eris/white, +/area/shuttle/medivac/general) +"xiw" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes/buildable/point_of_interest, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/excursion/general) +"xla" = ( +/obj/machinery/door/airlock/glass_external, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1380; + master_tag = "expshuttle_docker"; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/eris/techmaint_panels, +/area/shuttle/excursion/cargo) "xlU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -32865,15 +32883,6 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) -"xmj" = ( -/obj/structure/table/rack/shelf, -/obj/item/weapon/tank/oxygen, -/obj/item/device/suit_cooling_unit, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/pilot, -/obj/item/clothing/head/helmet/space/void/pilot, -/turf/simulated/floor/tiled/eris/techmaint_perforated, -/area/shuttle/excursion/general) "xmG" = ( /obj/structure/grille, /obj/structure/cable/green{ @@ -32934,35 +32943,28 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"xxx" = ( -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -30 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 10 - }, -/obj/item/weapon/tank/phoron, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/medivac/engines) -"xAG" = ( -/obj/machinery/sleep_console{ +"xAb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ dir = 4 }, -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "shuttle blast"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating/eris/under, +/area/shuttle/excursion/general) "xBW" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -32987,51 +32989,40 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"xKO" = ( +"xCq" = ( +/obj/machinery/recharger, +/obj/structure/table/steel, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/eris/dark/gray_perforated, +/area/shuttle/excursion/cargo) +"xLC" = ( +/obj/structure/cable/green{ + dir = 1; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/steel/gray_perforated, /area/shuttle/securiship/general) -"xRe" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "shuttle blast"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +"ydg" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "shuttle_inbound" }, +/obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/plating/eris/under, -/area/shuttle/excursion/general) -"xYK" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/gray_perforated, -/area/shuttle/excursion/cargo) -"ybu" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24; - req_access = list() - }, -/obj/structure/handrail, -/turf/simulated/floor/tiled/eris/dark/gray_perforated, /area/shuttle/excursion/cargo) "yeP" = ( /obj/effect/floor_decal/borderfloorblack{ @@ -33086,21 +33077,30 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"ylJ" = ( -/obj/machinery/door/airlock/hatch{ - req_one_access = newlist() +"yhM" = ( +/obj/structure/cable/green{ + dir = 1; + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/light/small{ + dir = 8; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/eris/techmaint_cargo, +/area/shuttle/securiship/general) +"ykh" = ( /obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/cyan{ +/obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/int_door, /turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/excursion/cargo) +/area/shuttle/medivac/general) (1,1,1) = {" aaa @@ -35999,16 +35999,16 @@ aae aaa vqZ vqZ -tmi -bDx -ruj -iNd -vTs -iIc -rlH +lyg +usk +iXe +uZd +oPK +bTM +pUV xqB -jFs -nkR +wJx +dAo hyn xny aaa @@ -36140,17 +36140,17 @@ aae aae aaa rBj -oad -oMC -vKn -oXM -oXM -fUW -hZj -wjT +coc +ukN +ooe +nYO +nYO +eLO +lHY +wcg xqB -rFD -foR +eVj +ciI plY xny aaa @@ -36282,17 +36282,17 @@ aaa aae aaa rBj -fqd -sAk -geT -xKO -mOR -ktJ -xKO -xKO -hSi -hJb -jNv +dAW +cGX +njt +tnc +czA +oWx +tnc +tnc +fcC +oQw +bHX okJ xqB aaa @@ -36424,17 +36424,17 @@ aaa aae aaa isz -pDQ -npz -cZP -wAv -rJp -oXM -rbt -vAI -oFw -wKZ -fYm +nvd +khf +nVr +ccy +jna +nYO +uKH +xLC +uIH +sqj +krV xeo xqB aaa @@ -36570,13 +36570,13 @@ isz isz isz isz -ogC -oXM -rot -jOx +nlX +nYO +miK +vQT xqB -eHW -kWW +nvV +ndd plY xny aaa @@ -36709,16 +36709,16 @@ aae aaa oJa trD -ojG -foL -fFY -mxO -vAI -jSm -fDf +bPP +yhM +lnp +vux +xLC +sHL +vnu xqB -rXA -rXA +ewT +ewT gSE xny aaa @@ -36851,8 +36851,8 @@ aae aaa mxs isz -bZU -qmW +sNy +cTI isz eZd eZd @@ -42856,12 +42856,12 @@ aMK aIy avs aNL -flL +urb aNL aNZ aXX aNL -gYE +dRj aNL aYk avs @@ -42998,12 +42998,12 @@ aMK aIy avs aYc -jqQ -iTN -xxx -fre -hqh -rvW +hIb +pgk +rAB +cUg +iEF +gdk aYc aYk avs @@ -43140,12 +43140,12 @@ aMK aIy avs aNL -eCW -lOT -xdh -vZj -bjJ -iix +wFm +cNv +kOD +knm +nRt +uRY aNL aYk avs @@ -43284,8 +43284,8 @@ aLu aNL aNL aNL -cnF -pqB +fZo +qOY aNL aNL aNL @@ -43423,13 +43423,13 @@ aML aNj aNu aNF -iGQ -eSL -ojt -uuo -voJ -jZe -fIK +fkB +eaH +ykh +pfr +crE +oDi +lus aYa aYk avs @@ -43565,13 +43565,13 @@ aMM aJk aNv aNG -hNY -maX -mWZ -rEx -voJ -ioe -gWA +wRy +mFv +pjr +xir +crE +irY +dln aYa aYk avs @@ -43710,8 +43710,8 @@ aLu aYa aYa aYa -jMO -voJ +nfB +crE aXL aYa aYa @@ -43795,8 +43795,8 @@ acK acK acK acK -viH -uqR +ydg +sTT aWp aWp acK @@ -43850,12 +43850,12 @@ aab aab avs aYa -gPm -vlv -jMO -vMT -wFl -sSb +gWG +gvu +nfB +lxr +wss +sdI aYa aYk avs @@ -43929,11 +43929,11 @@ acK acK adj adj -uLF +eBO adj -uLF +eBO adj -uLF +eBO aWp aWp aWp @@ -43991,14 +43991,14 @@ aab aab aab avs -sDA -ebB -ebB -syo -gyu -ebB -ebB -gyE +myk +nkk +nkk +bNj +inX +nkk +nkk +uVL aYk aaa aaa @@ -44070,19 +44070,19 @@ acE acK aWL adj -xmj -iCC +aXD +qJK adj -tND -krJ -hqz +oNI +iPK +eKK aWp -bHf +jsf aWn aUJ aXb aWp -omt +iJT afs ams aXq @@ -44133,14 +44133,14 @@ aab aab aab avs -sDA -xAG -ebB -pwO -gEi -ebB -mAy -gyE +myk +bWE +nkk +tTA +xcF +nkk +gER +uVL aYk aaa aaa @@ -44212,19 +44212,19 @@ acE acK afh adj -pfi -jDJ +uqh +wUW adj -hAA -usY -jRd +oqg +cgm +bDD aWp aiK -rJD -eLo -noj +iCh +wRt +eug aWp -tAw +cQa afs ams aXq @@ -44276,12 +44276,12 @@ aab aab avs aWl -rxY -ebB -jMO -voJ -ebB -rwG +fqf +nkk +nfB +crE +nkk +pUf aWl aYk aaa @@ -44352,19 +44352,19 @@ abe abX acE acK -gge -syP -cJq -uQV +qxW +iQS +wJy +ijU aVi -cFf -usY -rVK +hTW +cgm +akx aWp -dgL -rBo -tID -pfR +opv +hGJ +geP +lfJ aiX aZD acK @@ -44419,10 +44419,10 @@ aab aab aXy aXy -gXI -vBa -dJw -tvx +opP +bfa +nYv +bYH aXy aYa aYk @@ -44497,16 +44497,16 @@ adj adj adj adj -lDF +kCz adj -vvu -eje -rwn +wPF +uVS +oDB aWp -ybu -fmJ -tID -lqn +kTn +hNx +geP +ckU aiY aWp acK @@ -44561,10 +44561,10 @@ aab aab aXH aXy -vVR -hME -pSI -oHK +mzj +ldH +kDC +daI aZl aVY aYk @@ -44635,20 +44635,20 @@ aaa abe acs acF -gge -brW -oek -kkt -kLV -nmZ -hAA -jIG -wou -sja -bfc -rVW -tID -xYK +qxW +qEn +oYj +qTB +qPS +iWG +oqg +hpj +rhv +gde +kgD +owc +geP +rFo aiY aWp acK @@ -44704,8 +44704,8 @@ aab avs aXy aXy -ogX -lfL +dYt +wcZ aXy aXy avs @@ -44777,22 +44777,22 @@ aaa abe abY acE -gge -mzF -wVz -oCi -sgl -lBz -iDz -nGd -qCU -ylJ -pJZ -bYR -qhN -eRd -smZ -hsB +qxW +iFx +fQo +lSD +eQX +reu +wWn +wSA +wiE +vFT +qcm +slB +qmq +jQx +shd +kPW acK ams aVX @@ -44846,8 +44846,8 @@ avs avs avs aXy -vlD -vlD +pTp +pTp aXy avs avs @@ -44919,20 +44919,20 @@ aaa abe acA acG -gge -tsg -rzZ -lwU -reO +qxW +doD +vpU +utX +oUa adj adj -suq +isN adj aWp aiX -jxv -tQq -gtj +kUK +iWZ +xCq aXr aWp acK @@ -45065,15 +45065,15 @@ adj adj adj adj -lKI +pwj adj -lWY -lIz -wSq -kPa +hsy +evl +nlw +wOI aiY aXS -ueR +xla aWp aiY aWp @@ -45204,19 +45204,19 @@ abe abX acE acK -gge -oyD -uCo -vvB -mta -dcK -wOH -rNZ -tSU +qxW +bFX +cow +hyH +mnk +kVs +elB +ejd +egf aZD -cUl -nMg -cZG +uLO +wPw +dzV aRv aXC acK @@ -45348,19 +45348,19 @@ acE acK afh adj -imp -qsy +feb +dFx adj -fXX -oXJ -vHg -lIR +dhW +xeA +sFS +gAZ aWp -kVs -dqE -qRd +ssc +pPy +vbD aWp -tAw +cQa afs ams amq @@ -45490,19 +45490,19 @@ acE acK acK adj -ePs -clf +nwM +xiw adj -cVZ -tJp -rir -lIR +vre +jcr +nzo +gAZ aWp -tIF -ubQ -dzP +tnX +iEV +rbb aWp -qGC +rUl afs ams aQL @@ -45632,16 +45632,16 @@ acE acK acK adj -xRe +xAb adj adj adj -dyq +bRO adj aUR aVQ aWs -hcy +gNy aWp aWp aWp From 6bafa21400d9854160e092eb1cadca420866857c Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Thu, 28 May 2020 19:13:33 -0400 Subject: [PATCH 22/38] Add missing flechette projectile icon --- icons/obj/projectiles.dmi | Bin 26597 -> 26665 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/obj/projectiles.dmi b/icons/obj/projectiles.dmi index 1a56a0be84d23aa771f3b9049895a37b032b47c9..c5912ad2991a5ddd13a5ac3d15c34342856af0f2 100644 GIT binary patch delta 5179 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 From ba820465ccef1808a86f878a4ce66864cb593b20 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Thu, 28 May 2020 19:44:24 -0400 Subject: [PATCH 23/38] Add a drill to Talon --- maps/tether/submaps/offmap/talon1.dmm | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/maps/tether/submaps/offmap/talon1.dmm b/maps/tether/submaps/offmap/talon1.dmm index 619483be81..b98faa2fa0 100644 --- a/maps/tether/submaps/offmap/talon1.dmm +++ b/maps/tether/submaps/offmap/talon1.dmm @@ -841,9 +841,6 @@ /obj/item/weapon/pipe_dispenser, /turf/simulated/floor/tiled/eris/dark/brown_platform, /area/talon/deckone/port_eng_store) -"gN" = ( -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/shuttle/talonboat) "gQ" = ( /obj/machinery/vending/cola, /turf/simulated/floor/tiled/steel_ridged, @@ -1485,6 +1482,14 @@ }, /turf/simulated/floor/tiled/eris/steel, /area/talon/deckone/central_hallway) +"me" = ( +/obj/machinery/camera/network/talon{ + dir = 9; + icon_state = "camera" + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/shuttle/talonboat) "mf" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -2250,13 +2255,6 @@ /obj/effect/catwalk_plated, /turf/simulated/floor/plating/eris/under, /area/talon/deckone/central_hallway) -"tv" = ( -/obj/machinery/camera/network/talon{ - dir = 9; - icon_state = "camera" - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/shuttle/talonboat) "tw" = ( /obj/item/modular_computer/console/preset/talon{ dir = 4; @@ -2583,6 +2581,11 @@ /obj/item/device/spaceflare, /turf/simulated/floor/tiled/eris/white/danger, /area/talon/deckone/armory) +"xf" = ( +/obj/structure/table/standard, +/obj/item/weapon/pickaxe/drill, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/shuttle/talonboat) "xk" = ( /obj/structure/catwalk, /obj/structure/cable/green{ @@ -15728,7 +15731,7 @@ uW mb nc Nn -gN +xf YO YO ys @@ -15870,7 +15873,7 @@ MG dL nc Nn -tv +me ht xu Kk From 97d6799cb2aef21e6e33a8260bb990aa39dd4c82 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Thu, 28 May 2020 23:00:32 -0400 Subject: [PATCH 24/38] Move the flooring cache onto the flooring decls --- code/game/turfs/flooring/flooring.dm | 8 +++++++ code/game/turfs/simulated/floor_icon.dm | 30 +++++++++---------------- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/code/game/turfs/flooring/flooring.dm b/code/game/turfs/flooring/flooring.dm index 5c6888d8c9..d785a8f2d4 100644 --- a/code/game/turfs/flooring/flooring.dm +++ b/code/game/turfs/flooring/flooring.dm @@ -46,6 +46,14 @@ var/list/flooring_types var/list/footstep_sounds = list() // key=species name, value = list of sounds, // For instance, footstep_sounds = list("key" = list(sound.ogg)) var/is_plating = FALSE + var/list/flooring_cache = list() // Cached overlays for our edges and corners and junk + +/decl/flooring/proc/get_flooring_overlay(var/cache_key, var/icon_base, var/icon_dir = 0, var/layer = ABOVE_TURF_LAYER) + if(!flooring_cache[cache_key]) + var/image/I = image(icon = icon, icon_state = icon_base, dir = icon_dir) + I.layer = layer + flooring_cache[cache_key] = I + return flooring_cache[cache_key] /decl/flooring/grass name = "grass" diff --git a/code/game/turfs/simulated/floor_icon.dm b/code/game/turfs/simulated/floor_icon.dm index 5e332ca760..67ba62e104 100644 --- a/code/game/turfs/simulated/floor_icon.dm +++ b/code/game/turfs/simulated/floor_icon.dm @@ -38,37 +38,37 @@ var/image/no_ceiling_image = null var/turf/simulated/floor/T = get_step(src, step_dir) if(!test_link(T)) has_border |= step_dir - add_overlay(get_flooring_overlay("[flooring.icon_base]-edge-[step_dir]", "[flooring.icon_base]_edges", step_dir)) + add_overlay(flooring.get_flooring_overlay("[flooring.icon_base]-edge-[step_dir]", "[flooring.icon_base]_edges", step_dir)) //Note: Doesn't actually check northeast, this is bitmath to check if we're edge'd (aka not smoothed) to NORTH and EAST //North = 0001, East = 0100, Northeast = 0101, so (North|East) == Northeast, therefore (North|East)&Northeast == Northeast if((has_border & NORTHEAST) == NORTHEAST) - add_overlay(get_flooring_overlay("[flooring.icon_base]-edge-[NORTHEAST]", "[flooring.icon_base]_edges", NORTHEAST)) + add_overlay(flooring.get_flooring_overlay("[flooring.icon_base]-edge-[NORTHEAST]", "[flooring.icon_base]_edges", NORTHEAST)) if((has_border & NORTHWEST) == NORTHWEST) - add_overlay(get_flooring_overlay("[flooring.icon_base]-edge-[NORTHWEST]", "[flooring.icon_base]_edges", NORTHWEST)) + add_overlay(flooring.get_flooring_overlay("[flooring.icon_base]-edge-[NORTHWEST]", "[flooring.icon_base]_edges", NORTHWEST)) if((has_border & SOUTHEAST) == SOUTHEAST) - add_overlay(get_flooring_overlay("[flooring.icon_base]-edge-[SOUTHEAST]", "[flooring.icon_base]_edges", SOUTHEAST)) + add_overlay(flooring.get_flooring_overlay("[flooring.icon_base]-edge-[SOUTHEAST]", "[flooring.icon_base]_edges", SOUTHEAST)) if((has_border & SOUTHWEST) == SOUTHWEST) - add_overlay(get_flooring_overlay("[flooring.icon_base]-edge-[SOUTHWEST]", "[flooring.icon_base]_edges", SOUTHWEST)) + add_overlay(flooring.get_flooring_overlay("[flooring.icon_base]-edge-[SOUTHWEST]", "[flooring.icon_base]_edges", SOUTHWEST)) if(flooring.flags & TURF_HAS_CORNERS) //Like above but checking for NO similar bits rather than both similar bits. if((has_border & NORTHEAST) == 0) //Are connected NORTH and EAST var/turf/simulated/floor/T = get_step(src, NORTHEAST) if(!test_link(T)) //But not NORTHEAST - add_overlay(get_flooring_overlay("[flooring.icon_base]-corner-[NORTHEAST]", "[flooring.icon_base]_corners", NORTHEAST)) + add_overlay(flooring.get_flooring_overlay("[flooring.icon_base]-corner-[NORTHEAST]", "[flooring.icon_base]_corners", NORTHEAST)) if((has_border & NORTHWEST) == 0) var/turf/simulated/floor/T = get_step(src, NORTHWEST) if(!test_link(T)) - add_overlay(get_flooring_overlay("[flooring.icon_base]-corner-[NORTHWEST]", "[flooring.icon_base]_corners", NORTHWEST)) + add_overlay(flooring.get_flooring_overlay("[flooring.icon_base]-corner-[NORTHWEST]", "[flooring.icon_base]_corners", NORTHWEST)) if((has_border & SOUTHEAST) == 0) var/turf/simulated/floor/T = get_step(src, SOUTHEAST) if(!test_link(T)) - add_overlay(get_flooring_overlay("[flooring.icon_base]-corner-[SOUTHEAST]", "[flooring.icon_base]_corners", SOUTHEAST)) + add_overlay(flooring.get_flooring_overlay("[flooring.icon_base]-corner-[SOUTHEAST]", "[flooring.icon_base]_corners", SOUTHEAST)) if((has_border & SOUTHWEST) == 0) var/turf/simulated/floor/T = get_step(src, SOUTHWEST) if(!test_link(T)) - add_overlay(get_flooring_overlay("[flooring.icon_base]-corner-[SOUTHWEST]", "[flooring.icon_base]_corners", SOUTHWEST)) + add_overlay(flooring.get_flooring_overlay("[flooring.icon_base]-corner-[SOUTHWEST]", "[flooring.icon_base]_corners", SOUTHWEST)) // Re-apply floor decals if(LAZYLEN(decals)) @@ -79,9 +79,9 @@ var/image/no_ceiling_image = null icon_state = "dmg[rand(1,4)]" else if(flooring) if(!isnull(broken) && (flooring.flags & TURF_CAN_BREAK)) - add_overlay(get_flooring_overlay("[flooring.icon_base]-broken-[broken]","broken[broken]")) + add_overlay(flooring.get_flooring_overlay("[flooring.icon_base]-broken-[broken]","broken[broken]")) if(!isnull(burnt) && (flooring.flags & TURF_CAN_BURN)) - add_overlay(get_flooring_overlay("[flooring.icon_base]-burned-[burnt]","burned[burnt]")) + add_overlay(flooring.get_flooring_overlay("[flooring.icon_base]-burned-[burnt]","burned[burnt]")) if(update_neighbors) for(var/turf/simulated/floor/F in range(src, 1)) @@ -132,11 +132,3 @@ var/image/no_ceiling_image = null /turf/simulated/floor/proc/test_link(var/turf/simulated/floor/them) return (istype(them) && them.flooring?.name == src.flooring.name) - -/turf/simulated/floor/proc/get_flooring_overlay(var/cache_key, var/icon_base, var/icon_dir = 0) - if(!flooring_cache[cache_key]) - var/image/I = image(icon = flooring.icon, icon_state = icon_base, dir = icon_dir) - I.layer = layer - flooring_cache[cache_key] = I - return flooring_cache[cache_key] - From a20bcec893b935e6912001ea1db771c4991f8b28 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Thu, 28 May 2020 23:03:01 -0400 Subject: [PATCH 25/38] Allow plating operations on 'floored' plating --- code/game/turfs/simulated/floor_attackby.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/turfs/simulated/floor_attackby.dm b/code/game/turfs/simulated/floor_attackby.dm index 70bc2646a2..624cad36cd 100644 --- a/code/game/turfs/simulated/floor_attackby.dm +++ b/code/game/turfs/simulated/floor_attackby.dm @@ -53,7 +53,7 @@ break return - if(flooring) + if(flooring && !flooring.is_plating) if(istype(C, /obj/item/weapon)) try_deconstruct_tile(C, user) return From ba4d90a7f95bba246daba7385c41397891a04e54 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Thu, 28 May 2020 23:17:11 -0400 Subject: [PATCH 26/38] Fixup issues on shipself --- maps/tether/submaps/om_ships/aro2.dmm | 1155 ++++++++++++------------- 1 file changed, 572 insertions(+), 583 deletions(-) diff --git a/maps/tether/submaps/om_ships/aro2.dmm b/maps/tether/submaps/om_ships/aro2.dmm index 06d809e160..4c79d606c8 100644 --- a/maps/tether/submaps/om_ships/aro2.dmm +++ b/maps/tether/submaps/om_ships/aro2.dmm @@ -3,14 +3,6 @@ /obj/effect/overmap/visitable/ship/aro2, /turf/space, /area/space) -"ae" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/wall/rpshull, -/area/aro2/frontroom) "af" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -38,14 +30,6 @@ }, /turf/simulated/wall/rpshull, /area/aro2/frontroom) -"aj" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/wall/rpshull, -/area/aro2/boatdeck) "ak" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -75,14 +59,6 @@ }, /turf/simulated/wall/rpshull, /area/aro2/room1) -"an" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/wall/rpshull, -/area/aro2/room1) "ao" = ( /turf/simulated/wall/r_wall, /area/aro2/frontroom) @@ -254,6 +230,17 @@ }, /turf/simulated/floor/carpet/blue, /area/aro2/room1) +"bd" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/power/pointdefense{ + id_tag = "aroship" + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating/eris/under, +/area/aro2/frontroom) "bi" = ( /obj/structure/window/plastitanium/full, /obj/structure/window/plastitanium{ @@ -281,15 +268,6 @@ }, /turf/simulated/floor/tiled/eris/steel/cyancorner, /area/aro2/boatdeck) -"bu" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/cockpit) -"bv" = ( -/turf/simulated/floor/tiled/techfloor, -/area/aro2/cockpit) "by" = ( /turf/simulated/wall, /area/aro2/room2) @@ -364,13 +342,6 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating/eris/under, /area/aro2/frontroom) -"cb" = ( -/obj/structure/table/steel, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/cockpit) "cc" = ( /obj/structure/closet/secure_closet/personal, /obj/machinery/light{ @@ -407,88 +378,6 @@ }, /turf/simulated/floor/carpet/gaycarpet, /area/aro2/room2) -"ck" = ( -/obj/machinery/vending/food/arojoan{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/aro2/dining) -"cl" = ( -/obj/machinery/alarm{ - alarm_id = null; - breach_detection = 0; - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -24; - pixel_y = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/cockpit) -"cm" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/cockpit) -"cn" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/closet/crate/bin, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/cockpit) -"co" = ( -/obj/structure/table/steel, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/cockpit) -"cp" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/box/metalfoam, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/cockpit) "ct" = ( /obj/structure/table/fancyblack, /turf/simulated/floor/wood, @@ -500,12 +389,6 @@ }, /turf/simulated/floor/wood, /area/aro2/dining) -"cy" = ( -/obj/machinery/vending/cola{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/aro2/dining) "cA" = ( /obj/structure/table/steel, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -561,13 +444,6 @@ }, /turf/simulated/floor/wood, /area/aro2/dining) -"cL" = ( -/obj/machinery/chemical_dispenser/bar_soft/full{ - dir = 8 - }, -/obj/structure/table/steel, -/turf/simulated/floor/wood, -/area/aro2/dining) "cT" = ( /obj/machinery/door/airlock/multi_tile/glass{ dir = 1 @@ -685,6 +561,9 @@ /obj/structure/flora/tree/jungle_small, /turf/simulated/floor/grass, /area/aro2/boatdeck) +"dF" = ( +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/dining) "dG" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -771,6 +650,21 @@ }, /turf/simulated/floor/water/indoors/surfluid, /area/aro2/boatdeck) +"ec" = ( +/obj/machinery/alarm{ + alarm_id = null; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 6 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/aro2/cockpit) "eg" = ( /obj/structure/table/steel, /obj/machinery/atmospherics/unary/vent_scrubber/on, @@ -884,17 +778,6 @@ }, /turf/simulated/floor/tiled/eris/dark/gray_perforated, /area/aro2/observation) -"eV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/aro2/frontroom) "eY" = ( /obj/structure/railing/grey, /turf/simulated/floor/tiled/eris/dark, @@ -1003,17 +886,6 @@ "fy" = ( /turf/simulated/floor/tiled/eris/dark/cargo, /area/shuttle/aroboat2) -"fA" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/power/pointdefense{ - id_tag = "aroship" - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating/eris/under, -/area/aro2/room1) "fC" = ( /obj/structure/table/steel, /obj/structure/cable/cyan, @@ -1078,24 +950,6 @@ "fX" = ( /turf/simulated/floor/tiled/eris/dark/golden, /area/aro2/cockpit) -"fZ" = ( -/obj/structure/cable/cyan{ - icon_state = "1-8" - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/eris/dark/gray_perforated, -/area/aro2/observation) "ga" = ( /turf/simulated/wall/r_wall, /area/aro2/starboardbay) @@ -1422,24 +1276,6 @@ }, /turf/simulated/floor/tiled/eris/techmaint_perforated, /area/aro2/boatdeck) -"jM" = ( -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/eris/dark, -/area/aro2/boatdeck) "jN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ dir = 8 @@ -1497,6 +1333,14 @@ }, /turf/simulated/floor/tiled/eris/dark, /area/aro2/boatdeck) +"kX" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) "le" = ( /obj/structure/window/plastitanium/full, /obj/structure/window/plastitanium{ @@ -1526,19 +1370,6 @@ }, /turf/simulated/wall/r_wall, /area/aro2/powerarea) -"lm" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/r_wall, -/area/aro2/powerarea) "ln" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -1556,19 +1387,6 @@ }, /turf/simulated/wall/r_wall, /area/aro2/airarea) -"ls" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/r_wall, -/area/aro2/airarea) "lt" = ( /obj/structure/cable/cyan{ d1 = 2; @@ -1715,11 +1533,6 @@ }, /turf/simulated/floor/tiled/eris/dark, /area/aro2/starboardbay) -"mH" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/device/perfect_tele/alien, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/aro2/frontroom) "mI" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -1760,19 +1573,6 @@ }, /turf/simulated/floor/tiled/eris/steel/cyancorner, /area/aro2/boatdeck) -"ni" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/dark, -/area/aro2/boatdeck) "nn" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -1787,6 +1587,20 @@ "nu" = ( /turf/simulated/floor/tiled/eris/steel/cyancorner, /area/aro2/boatdeck) +"nv" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/aro2/frontroom) "nA" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -1931,18 +1745,10 @@ }, /turf/simulated/floor/tiled/eris/steel/bar_flat, /area/aro2/frontroom) -"pm" = ( -/obj/structure/table/steel, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/shuttle/aroboat2) -"pn" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/eris/dark/gray_perforated, -/area/aro2/observation) +"pe" = ( +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/aro2/frontroom) "pK" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -1962,12 +1768,38 @@ /obj/structure/bed/chair/bay/comfy/blue, /turf/simulated/floor/tiled/eris/techmaint_perforated, /area/aro2/boatdeck) +"pW" = ( +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/smes/buildable/hybrid{ + input_attempt = 1; + input_level = 250000; + input_level_max = 250000; + output_level = 190000 + }, +/turf/simulated/floor/plating/eris/under, +/area/aro2/powerarea) "pX" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/eris/dark, /area/aro2/surfluid) +"qb" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/wall/r_wall, +/area/aro2/airarea) "qd" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -2019,6 +1851,12 @@ }, /turf/simulated/floor/tiled/eris/dark, /area/aro2/portbay) +"qn" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/aro2/cockpit) "qq" = ( /obj/structure/cable/cyan{ d1 = 2; @@ -2071,11 +1909,6 @@ }, /turf/simulated/floor/tiled/eris/dark/gray_perforated, /area/aro2/airarea) -"qG" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/device/sleevemate, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/aro2/frontroom) "qH" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/eris/dark, @@ -2089,6 +1922,21 @@ }, /turf/simulated/floor/wood, /area/aro2/dining) +"qO" = ( +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating/eris/under, +/area/aro2/powerarea) "qQ" = ( /obj/structure/bed/chair/bay/comfy/blue, /turf/simulated/floor/carpet/bcarpet, @@ -2148,6 +1996,9 @@ /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/tiled/eris/techmaint_perforated, /area/aro2/surfluid) +"rA" = ( +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/observation) "rE" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -2243,17 +2094,6 @@ "sP" = ( /turf/simulated/floor/tiled/eris/dark/gray_perforated, /area/aro2/powerarea) -"sU" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/power/pointdefense{ - id_tag = "aroship" - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating/eris/under, -/area/aro2/boatdeck) "tg" = ( /obj/structure/bed/chair/wood{ dir = 8 @@ -2304,12 +2144,6 @@ }, /turf/simulated/floor/tiled/eris/techmaint_panels, /area/aro2/powerarea) -"tJ" = ( -/obj/machinery/vending/snack{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/aro2/dining) "tN" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -2346,47 +2180,12 @@ }, /turf/simulated/floor/plating/eris/under, /area/shuttle/aroboat2) -"tT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/bed/chair/bay/comfy/beige{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/aro2/cockpit) "tX" = ( /obj/structure/bed/chair/bay/comfy/blue{ dir = 4 }, /turf/simulated/floor/carpet/bcarpet, /area/shuttle/aroboat2) -"tZ" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/eris/dark, -/area/aro2/boatdeck) -"uc" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/eris/dark, -/area/aro2/boatdeck) "ue" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -2454,6 +2253,10 @@ /obj/structure/cable/cyan, /turf/simulated/floor/tiled/eris/techmaint_cargo, /area/shuttle/aroboat2) +"us" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/aro2/frontroom) "uy" = ( /obj/machinery/door/airlock, /obj/structure/cable/cyan{ @@ -2463,6 +2266,20 @@ }, /turf/simulated/floor/tiled/eris/techmaint_panels, /area/aro2/boatdeck) +"uA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/aro2/frontroom) "uG" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -2477,6 +2294,26 @@ }, /turf/simulated/floor/tiled/eris/dark, /area/aro2/boatdeck) +"uL" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/closet/crate/bin, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/aro2/cockpit) "uQ" = ( /obj/structure/table/steel, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -2558,6 +2395,12 @@ }, /turf/simulated/floor/tiled/eris/dark/cyancorner, /area/aro2/dining) +"vJ" = ( +/obj/machinery/vending/cola{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/dining) "vN" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -2590,9 +2433,6 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating/eris/under, /area/shuttle/aroboat2) -"wl" = ( -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/aro2/frontroom) "wm" = ( /obj/structure/bed/chair/bay/comfy/blue{ dir = 1 @@ -2661,6 +2501,12 @@ }, /turf/simulated/floor/tiled/eris/steel/bar_flat, /area/aro2/frontroom) +"xb" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/dining) "xk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 1 @@ -2719,22 +2565,49 @@ }, /turf/simulated/floor/tiled/eris/dark/cyancorner, /area/aro2/dining) -"xZ" = ( -/obj/machinery/shipsensors{ - dir = 1 +"yc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/turf/simulated/floor/plating/eris/under, -/area/aro2/cockpit) +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) "yk" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/eris/dark, /area/aro2/boatdeck) +"yr" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/table/steel, +/obj/item/weapon/inducer/hybrid, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/surfluid) "yw" = ( /obj/structure/table/rack/shelf/steel, /turf/simulated/floor/tiled/eris/techmaint_perforated, /area/aro2/starboardbay) +"yx" = ( +/obj/structure/table/steel, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/aro2/cockpit) "yC" = ( /obj/machinery/alarm{ dir = 4; @@ -2763,6 +2636,12 @@ }, /turf/simulated/floor/tiled/eris/dark, /area/aro2/boatdeck) +"yK" = ( +/obj/machinery/vending/food/arojoan{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/dining) "yY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 1 @@ -2777,6 +2656,19 @@ }, /turf/simulated/floor/tiled/eris/dark, /area/aro2/boatdeck) +"za" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/wall/r_wall, +/area/aro2/powerarea) "zg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ dir = 4 @@ -2893,18 +2785,6 @@ }, /turf/simulated/floor/water/indoors/surfluid, /area/aro2/boatdeck) -"Aw" = ( -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/smes/buildable/hybrid{ - input_attempt = 1; - input_level = 250000; - input_level_max = 250000 - }, -/turf/simulated/floor/plating/eris/under, -/area/aro2/powerarea) "Ax" = ( /obj/structure/flora/pottedplant/crystal, /obj/machinery/light, @@ -3224,12 +3104,49 @@ }, /turf/simulated/floor/tiled/eris/dark, /area/aro2/portbay) +"Fz" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) "FA" = ( /obj/structure/bed/chair/bay/comfy/blue{ dir = 8 }, /turf/simulated/floor/carpet/bcarpet, /area/shuttle/aroboat2) +"FF" = ( +/obj/structure/table/steel, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/aro2/cockpit) "FP" = ( /obj/structure/cable/cyan{ d2 = 2; @@ -3311,14 +3228,6 @@ }, /turf/simulated/floor/tiled/eris/steel/cyancorner, /area/aro2/boatdeck) -"Gs" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/dark/gray_perforated, -/area/aro2/observation) "Gu" = ( /obj/machinery/light{ dir = 4 @@ -3358,6 +3267,29 @@ }, /turf/simulated/floor/tiled/eris/techmaint_panels, /area/aro2/powerarea) +"GL" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) +"GN" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/observation) "Hb" = ( /obj/structure/table/steel, /obj/machinery/power/apc{ @@ -3434,11 +3366,6 @@ }, /turf/simulated/floor/tiled/eris/white/gray_perforated, /area/shuttle/aroboat2) -"HC" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/weapon/inducer/hybrid, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/aro2/frontroom) "HF" = ( /obj/effect/floor_decal/industrial/warning/full, /obj/machinery/power/pointdefense{ @@ -3486,6 +3413,11 @@ /obj/fiftyspawner/rods, /turf/simulated/floor/tiled/eris/dark/gray_perforated, /area/aro2/airarea) +"HT" = ( +/obj/structure/table/steel, +/obj/item/device/perfect_tele/alien, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/aroboat2) "Ib" = ( /obj/machinery/computer/shuttle_control/explore/aroboat2{ dir = 8 @@ -3584,6 +3516,17 @@ }, /turf/simulated/floor/tiled/eris/techmaint_cargo, /area/aro2/portbay) +"Jg" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/power/pointdefense{ + id_tag = "aroship" + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating/eris/under, +/area/aro2/room1) "Jh" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/eris/dark, @@ -3611,6 +3554,20 @@ }, /turf/simulated/floor/tiled/eris/dark, /area/aro2/surfluid) +"Jw" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/aro2/cockpit) "JD" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -3646,6 +3603,14 @@ "Kd" = ( /turf/simulated/floor/carpet/bcarpet, /area/shuttle/aroboat2) +"Kg" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/observation) "Ki" = ( /obj/structure/fans/hardlight, /obj/machinery/door/blast/regular{ @@ -3748,6 +3713,20 @@ }, /turf/simulated/floor/tiled/eris/techmaint_perforated, /area/aro2/boatdeck) +"KY" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/observation) "Lg" = ( /obj/structure/bed/chair/wood{ dir = 4 @@ -3819,17 +3798,14 @@ "Lu" = ( /turf/simulated/floor/tiled/eris/techmaint_cargo, /area/shuttle/aroboat2) -"Lw" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +"Lv" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/metalfoam, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/aro2/frontroom) +/turf/simulated/floor/carpet/oracarpet, +/area/aro2/cockpit) "LD" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 4 @@ -3868,6 +3844,15 @@ }, /turf/simulated/floor/tiled/eris/techmaint_perforated, /area/aro2/boatdeck) +"Me" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/bed/chair/bay/comfy/beige{ + dir = 8 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/aro2/cockpit) "Mp" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -3894,6 +3879,16 @@ /obj/structure/closet/crate/bin, /turf/simulated/floor/tiled/eris/techmaint_cargo, /area/shuttle/aroboat2) +"Mx" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) "Mz" = ( /obj/machinery/light, /turf/simulated/floor/tiled/eris/dark, @@ -3937,6 +3932,19 @@ }, /turf/simulated/floor/plating/eris/under, /area/aro2/boatdeck) +"MU" = ( +/obj/machinery/power/smes/buildable/hybrid{ + input_attempt = 1; + input_level = 250000; + input_level_max = 250000; + output_level = 190000 + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating/eris/under, +/area/aro2/powerarea) "Ni" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -3975,6 +3983,14 @@ /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/tiled/eris/techmaint_perforated, /area/aro2/starboardbay) +"NP" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/item/device/sleevemate, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/surfluid) "NQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -3984,6 +4000,20 @@ }, /turf/simulated/floor/tiled/eris/dark, /area/aro2/starboardbay) +"NT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/boatdeck) "OA" = ( /obj/structure/railing/grey{ dir = 4 @@ -4005,6 +4035,9 @@ }, /turf/simulated/floor/tiled/eris/steel/bar_flat, /area/aro2/frontroom) +"OH" = ( +/turf/simulated/floor/plating/eris/under/airless, +/area/aro2/cockpit) "OK" = ( /obj/effect/floor_decal/industrial/warning/full, /obj/machinery/power/pointdefense{ @@ -4071,25 +4104,6 @@ /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating/eris/under, /area/aro2/airarea) -"Ph" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/eris/dark/gray_perforated, -/area/aro2/observation) "Pi" = ( /obj/machinery/computer/ship/navigation/telescreen{ pixel_y = 23 @@ -4183,12 +4197,25 @@ /obj/structure/table/steel, /turf/simulated/floor/tiled/eris/dark/gray_perforated, /area/aro2/powerarea) -"Qu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"Qh" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor/tiled/eris/techmaint_perforated, -/area/aro2/surfluid) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/observation) "Qz" = ( /turf/space, /area/space) @@ -4285,6 +4312,25 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating/eris/under, /area/aro2/room1) +"RN" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/surfluid) "RR" = ( /obj/structure/cable/cyan{ d1 = 2; @@ -4323,12 +4369,25 @@ }, /turf/simulated/floor/plating/eris/under, /area/aro2/airarea) +"Sp" = ( +/obj/machinery/vending/snack{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/dining) "Sq" = ( /obj/structure/railing/grey{ dir = 8 }, /turf/simulated/floor/water/indoors/surfluid, /area/aro2/surfluid) +"Sr" = ( +/obj/machinery/chemical_dispenser/bar_soft/full{ + dir = 8 + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/eris/techmaint_perforated, +/area/aro2/dining) "St" = ( /obj/machinery/computer/ship/navigation/telescreen{ pixel_y = 23 @@ -4392,34 +4451,6 @@ /obj/structure/reagent_dispensers/watertank/high, /turf/simulated/floor/tiled/eris/techmaint_perforated, /area/aro2/surfluid) -"SJ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/aro2/dining) -"SK" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/bed/chair/bay/comfy/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/techmaint_perforated, -/area/aro2/surfluid) "SN" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -4463,9 +4494,24 @@ /obj/machinery/telecomms/allinone, /turf/simulated/floor/tiled/eris/steel/bar_flat, /area/aro2/boatdeck) -"To" = ( -/turf/simulated/floor/plating/eris/under, -/area/aro2/cockpit) +"Tk" = ( +/obj/structure/cable/cyan{ + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/observation) "Tu" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -4569,45 +4615,6 @@ }, /turf/simulated/floor/tiled/eris/dark, /area/aro2/boatdeck) -"Ux" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating/eris/under, -/area/aro2/powerarea) -"UK" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/eris/dark/gray_perforated, -/area/aro2/observation) -"UN" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/eris/dark, -/area/aro2/boatdeck) "UY" = ( /obj/structure/table/rack/shelf/steel, /obj/machinery/atmospherics/pipe/simple/hidden/aux{ @@ -4826,6 +4833,14 @@ /obj/machinery/portable_atmospherics/canister/empty, /turf/simulated/floor/plating/eris/under, /area/aro2/airarea) +"Xt" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/eris/dark, +/area/aro2/observation) "XJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -4833,36 +4848,19 @@ /turf/simulated/floor/tiled/eris/dark, /area/aro2/starboardbay) "XN" = ( -/obj/machinery/power/smes/buildable/hybrid{ - input_attempt = 1; - input_level = 250000; - input_level_max = 250000 - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating/eris/under, -/area/aro2/powerarea) +/turf/simulated/floor/carpet/oracarpet, +/area/aro2/cockpit) "XO" = ( /obj/structure/table/steel, /obj/fiftyspawner/wood, /turf/simulated/floor/tiled/eris/dark/gray_perforated, /area/aro2/airarea) -"XQ" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +"XP" = ( +/obj/machinery/shipsensors{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/techmaint_perforated, -/area/aro2/surfluid) +/turf/simulated/floor/plating/eris/under/airless, +/area/aro2/cockpit) "XZ" = ( /obj/machinery/light{ dir = 8 @@ -4889,15 +4887,6 @@ }, /turf/space, /area/space) -"Yq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/bed/chair/bay/comfy/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/techmaint_perforated, -/area/aro2/surfluid) "Ys" = ( /obj/machinery/light, /turf/simulated/floor/tiled/eris/steel/bar_flat, @@ -12327,7 +12316,6 @@ Qz Qz Qz Qz -PF Qz Qz Qz @@ -12335,7 +12323,8 @@ Qz Qz Qz Qz -PF +Qz +Qz Qz Qz Qz @@ -12469,7 +12458,7 @@ Qz Qz Qz Qz -gP +PF lA Ki Ki @@ -12477,7 +12466,7 @@ Ki Ki Ki lA -gP +PF Qz Qz Qz @@ -13015,7 +13004,7 @@ Qz Qz Qz Qz -Ed +Qz Qz Qz Qz @@ -13141,8 +13130,8 @@ Qz Qz Qz Qz -Wg -ae +Qz +bd ah ah MG @@ -13157,7 +13146,7 @@ IB IB bS bS -dv +Ed Qz Qz Qz @@ -13713,10 +13702,10 @@ Qz bV We zV -wl +us ED gr -Lw +nv iU bU YP @@ -13855,10 +13844,10 @@ Qz bV We zV -wl +us AT ED -eV +uA fK bU Pi @@ -13903,8 +13892,8 @@ nO DL sP km -XN -Aw +MU +pW km EQ ll @@ -14187,7 +14176,7 @@ nO jm Vg km -Ux +qO ZT km ke @@ -14277,9 +14266,9 @@ Qz Qz Qz Qz +Qz Wg ai -ai ap ap vN @@ -14287,10 +14276,10 @@ WY zV oU bU -SJ -dk -dk -dk +xb +dF +dF +dF QW QW dk @@ -14333,9 +14322,9 @@ nn km km eE -ll -jx -Qz +za +lu +el Qz Qz Qz @@ -14425,14 +14414,14 @@ ah ah ao ao -HC -mH -qG +pe +pe +pe bU -ck -cy -cL -tJ +yK +vJ +Sr +Sp QW QW uX @@ -14475,10 +14464,10 @@ ej SN fC Lk -lm -lu -lu -el +ll +jx +jx +Qz Qz Qz Qz @@ -14713,7 +14702,7 @@ aL fX vo jf -cl +ec aX nu nu @@ -14724,9 +14713,9 @@ kO nu nu ds -eF -Ib -il +ds +ds +NT Ae Ka Lu @@ -14740,10 +14729,10 @@ FZ ds DD Nu -XQ +qA nO gd -Zo +yr Zo tr Zo @@ -14850,12 +14839,12 @@ Qz Qz Qz aK -To +OH bi LE PM fX -bv +XN eP nu nu @@ -14865,10 +14854,10 @@ ng ng ng nu -eY -Tf -sc -Lr +ds +eF +Ib +il Ul Vx TJ @@ -14882,7 +14871,7 @@ FZ ds gd FP -SK +RN hE gy hE @@ -14896,12 +14885,12 @@ YQ YQ gT Vo -Vo -fZ -Gs -Gs -Gs -pn +KY +Tk +GN +GN +GN +Kg EO DC Qz @@ -14992,12 +14981,12 @@ Qz Qz Qz aK -xZ +XP bi fX Ig fX -cm +Jw rE TU WV @@ -15008,8 +14997,8 @@ dm dm Sx eY -mU -CG +Tf +sc Lr Av tO @@ -15024,7 +15013,7 @@ FZ ds gd dQ -Yq +kK nO TL nO @@ -15038,12 +15027,12 @@ nO nO Ns EO -EO -Ph -Gs -Gs -Gs -UK +rA +Qh +GN +GN +GN +Xt EO DC Qz @@ -15136,10 +15125,10 @@ Qz az az aL -bu -bv -bv -cn +qn +XN +XN +uL aX wz WV @@ -15149,13 +15138,13 @@ dq dq dm Sx -ds -iM -Vm -UN +eY +mU +CG +Lr Av wh -pm +HT sg El qQ @@ -15166,13 +15155,13 @@ FZ ds DD zE -Qu +kK fR gd iC iC LD -iC +NP iC gd Ii @@ -15278,10 +15267,10 @@ az az aL aL -bv -bv -tT -co +XN +XN +Me +yx aX OV WV @@ -15292,9 +15281,9 @@ dq dm Sx ds -ds -ds -Nz +iM +Vm +Fz Av Vx Ga @@ -15421,9 +15410,9 @@ aL aL oI PM -bv -cb -cp +XN +FF +Lv aX St WV @@ -15469,10 +15458,10 @@ Py oy sl Eu -ls -ly -ly -OK +lr +jS +jS +Qz Qz Qz Qz @@ -15555,8 +15544,8 @@ Qz Qz Qz Qz -sU -aj +Qz +MR ar as as @@ -15611,9 +15600,9 @@ Fn YL hh Wv -lr -jS -Qz +qb +ly +OK Qz Qz Qz @@ -16004,7 +15993,7 @@ Ll ds ds ds -jM +GL dr dr Tz @@ -16146,10 +16135,10 @@ Ll ds ds ds -uc -tZ -QT -ni +yc +Mx +ds +kX QT fG yY @@ -16691,8 +16680,8 @@ Qz Qz Qz Qz -fA -an +Qz +Jg av av Rq @@ -16707,7 +16696,7 @@ le cH cH ar -ak +aI Qz Qz Qz @@ -16849,7 +16838,7 @@ Qz Qz Qz Qz -aI +Qz Qz Qz Qz @@ -17439,7 +17428,7 @@ Qz Qz Qz Qz -hg +HF lC oG oG @@ -17447,7 +17436,7 @@ oG oG oG lC -hg +HF Qz Qz Qz @@ -17581,7 +17570,6 @@ Qz Qz Qz Qz -HF Qz Qz Qz @@ -17589,7 +17577,8 @@ Qz Qz Qz Qz -HF +Qz +Qz Qz Qz Qz From d57addfdea155a07a3ffabc6d691f68de3f488da Mon Sep 17 00:00:00 2001 From: David Winters Date: Fri, 29 May 2020 03:00:00 -0400 Subject: [PATCH 27/38] New posters Following in Pip's wake, I made 11 posters. Not much more to say, really. --- .../effects/decals/posters/voreposters_vr.dm | 46 +++++++++++++++++- icons/obj/contraband_vr.dmi | Bin 144175 -> 150505 bytes 2 files changed, 45 insertions(+), 1 deletion(-) diff --git a/code/game/objects/effects/decals/posters/voreposters_vr.dm b/code/game/objects/effects/decals/posters/voreposters_vr.dm index 6f4935718d..9826989850 100644 --- a/code/game/objects/effects/decals/posters/voreposters_vr.dm +++ b/code/game/objects/effects/decals/posters/voreposters_vr.dm @@ -49,4 +49,48 @@ /datum/poster/vore_13 icon_state = "sbsposter13" name = "Ammer" - desc = "You see a blue panda on the poster. She's awfully smug about her size." \ No newline at end of file + desc = "You see a blue panda on the poster. She's awfully smug about her size." + /datum/poster/vore_14 + icon_state = "dwposter1" + name = "WANTED: WAR CRIMINAL" + desc = "A poster bringing awareness to the distinguishing costume of a known war criminal operating in Virgo-Erigonne space." +/datum/poster/vore_15 + icon_state = "dwposter2" + name = "Implanter" + desc = "A poster explaining the benefits and function of back-up implanters." +/datum/poster/vore_16 + icon_state = "dwposter3" + name = "Back-up implant" + desc = "A poster describing the electronics implanted by back-up implanters." +/datum/poster/vore_17 + icon_state = "dwposter4" + name = "We know" + desc = "A poster purporting the infallibility of NanoTrasen's forensics department." +/datum/poster/vore_18 + icon_state = "dwposter5" + name = "KAT" + desc = "A promotional poster for popular exotube show 'Kat-Kat Korner'" +/datum/poster/vore_19 + icon_state = "dwposter6" + name = "install.css" + desc = "A nostalgia trip." +/datum/poster/vore_20 + icon_state = "dwposter7" + name = "TALON" + desc = "The logo and banner of a notable group of contractors known to trade with NanoTrasen." +/datum/poster/vore_21 + icon_state = "dwposter8" + name = "GPA" + desc = "A pretentious advertisement for the drink 'Galactic Panic Attack'" +/datum/poster/vore_22 + icon_state = "dwposter9" + name = "Rope" + desc = "A poster outlining proper pit-traversal gear." +/datum/poster/vore_23 + icon_state = "dwposter10" + name = "Visit Luna" + desc = "Part of a tourism campaign from Solcom encouraging people to visit Earth's moon, Luna." +/datum/poster/vore_24 + icon_state = "dwposter11" + name = "Secgun" + desc = "A striking, wordless advertisement for NanoTrasnen's security department. It wasn't very effective and just seems to be used as a warning sign." \ No newline at end of file diff --git a/icons/obj/contraband_vr.dmi b/icons/obj/contraband_vr.dmi index 5a6988bb08e2b0248c5f6dcc67409751567946b7..0e0406e824a4888f990456f9d483b4f71827d589 100644 GIT binary patch literal 150505 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ĂL&>dZU#49bk_(~C@7v%D} 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 XTKXavWv&zy@Fy#!Bw6#xDER*XyKQHG literal 144175 zcmc$_Wl$VZ8zwrq!{F}jB*EP+xC96mf&?eHYw+OiE`h+{u0exq7<`c6?#|rFxA)sy zb!%&@_SaT*SD)^lKGUaPd(QhlCrU$20SlcB9RL7eDJjZo0RV78|8`Vl*p-surXJYI zlaG$Ro2;d)xr@zLHybBM0Kh9J7d&CxCrJ>#>Fz@K&2eSxxyd6@RWll+D-4)jfu@q2 zfJS)MjWL3zGk2xx%-AU}HuYn;)N7^t4Eu8fq!a?eabJm4$tc&&$~kiRAj=>S#L-9X^w)_|w)HQX-lVk})|lxM8X7$EdKMO73%m@AE#l8H?!3 zUG*JkJg_G^^D%2jK~JDuv~}|pVP05OdGGu8-=Ti@;FDd}r}iTw(mRh!t6ijZBa@I^ zco8u$W4A+xZ#>UND(9luw>6B#>SD+YyYLesITgYvZ<^@5{-oAgis+2~rK0)ByI4jX zzO)7%0Y-J%eJ3JY#NsBm>X3rVTamf-EoEKKg-( z@_!EQ+0qkX{-+t6!475J{}|5=rh?RnwYO+SA1_du)`)eR`TC9A?qABYLQiHf!7hXN z8l(TKEgBzy;noY?)flzY{9kRVh;NK=O?oBrDsl-8qfgA}`Jap*5xn`$ACq~Fz5)O= z03}%|9j~0@T<;u$KW#nv+VAz;?~eP$Q4vtlQSn+x0&QFMCJx<)Ddl2WvRa48WpqNw z`1H&fqR3QZw(#&7@Sy? zbMyRT_(%680CJUgmqY(5W=s_(UAUiYq4u(pY}ipf&B02qXFs;BX>Zy{=?_2;`wafu zZWq{l1BTFfUOTfiQ<*DJ2T2z$x_fP`i|o{g@5KC|9{L0J!wGsiYpcFro^P=FK_tbU z`NljPvmZ!{*bYioVVdE^qD7QOH3APhQ@9x`fZYKhG=N@rWBV2PIo^^KhGZrC6(&@8 z$M%CVRZy%3D@|C@+3XyF#;=RBCOb#{#ME&x+!CXAn z|4vQ^L$XiR_ou9}0^!uQ_Ia5?L1yiZP<)eNS}x2%daAWqNoSjb;n4HpCcE>)E*fV(iKO zCC7Dy>FL;!TDrmKkJI^falD3fZS4L$+Vi1X-1=;U$hw7bevfc&vA|t`y5?=Fzh&U? zQiMJtsC(BJbs~v!P8878^b$RF*0a~FHuc5S-=G{UeA(OOsT_1v(<4_oTA2G?4SxCt z`H&=$z_C6q|EYw$e*W8kdpi5=4t@m`XzM`IMhNoN#q7dct!`ttvX%s*)s?SuoF^Fv zfArLv4o?1J;tYxtPy_FUWmld1fbV>L=UAUcyX$+lk7X#TiRm7s^8y##Ti`WJKFC|$ zL^En`k1`t1@vNc!BHc3zfqmxOSC};8e}W!8YKo!C+S)b+4g*BPaM!$*`^(R(A6Wj= zng0p5o&F?D`m(Rc03t3U9Y5{{pTQ*c<=202^lq{(l(jqu!;gawZ2a_XqAZd?1X~xm zQsdf8I4zjS<>r9+weP|e+S}`b#=}Lpg zyPdyR2XUtQ+|G9wefg2tiyj6aSqxphn!>w>n+mi$WSZ=etY#8_gQdM#HXTBuDN%L5 zh}R>$IriObj4@xVu4bRqmI9`*8^OM3DfEXCQZGE$V5n+CiYT7;H-&Xm5AySz1oVqOD#9DAVxwKd+FA#ofF}D6ge%t5MmH7Oxvk;vJ#CK0r~Oq)wqg|uIHiux9T(d?_MVD8 zsDA0YC8t|5-wPZh)cZYCtnkiemf;o>7-%(-#fTA4MS0IPz{L!pr0-Gx`6yj?RRn^T z_rr9cFM_>c5IU88M*egynaQA9}IA#}i3xh31R>ZpGNLrJ1O*glW>P z7txG^Sx;?z-eSl7)^|&Pf3fbfxy8lbmAXHF)YO!BcXua~Tw9oSz<1#VoxE%xftGrT zb9>|Nv75`gI152gP~eM*+Ka}g%|5w7>`#&OXCGAw=$-c|42Y?a$_+PWnO{ZAG%Dum zavFRa>RHl-FSMng4j7aB5xGU-R;zHcaNq>(eG3lQmt7&p?PEyOf#?Di_E@pjAv=& z775eI?hc3e8&~F-c$l%(_1lFDg=Irvo8>Dt-H9l453hx;KgOeRN{ao_Fp?BvX-E z4v$yuvae^IfrN&L@4if?!1mSBk4POV7@xlE&BY)-wO>I97yr}*DwO;6xwp8Sd6yGH zAu|<3%DleHW`M=|a8sV6c0++o{&tc7Xm%XmYgb(l->UO4CH%(tyD1LgtBdVn&&Tn) zVT!?%J1Ev1@Anr(U0vObG9^#Cul-m8$0?kMi~zBMlzm4-sQ&wEFHPyXlLHKJ;Gw}g z*+K%h+dt`VjzAImtzU6r7D2hjr`ynmy$GWB`fiR9DU$im0a9@jHIyoLm*4u1t+u&- z4@dvZ15-|E2;=$o2Pp+Ia`HE-$uN!8*3}(+&)p>}BZHv5DsMHJ!|ExIs{uca;PY7g z$V=BmnF;wYaGiS8(>AYShQ0@Kf1nhx?3i_@49b&z&6j1pZQ(T?xAY%EYM-XR85)BFhWDOyU{e4irgzvhm zIXYz>Ah7M8{4&OsixvC+@Nsd$t*NIgEw+m6!txF5k1i%f&fM4$0n88NB#x2fkInxGiny)9g<8#=yMwijs;C`HScA^IBd-zWV3W)wbNwjaY&8-aG%p!^3;?o3C6K z>}|SETZy#W88Ed|OMMNl-bdKyVs4`kcozBIaA3Dr4GR1sZnwAQyaU>Fx1sXCCx)Q| zdGy~FZ@r=rqhv!yX=N0M#SMilSO8~VE@Rjlgf>IBGyHEXVL$tz!t8Er;$pXyb5+C3 zC;qiRX%Bh%gB#ckQv;?369?^|EoUZ&KByyu-{3771jIz2M6|!=V+n&$0Mr<;=zRf; zrK6TuW2BlAF|hEE#DmGk_7fnu`2~llCG&1#Zp7lPBD-p(1AVy7`EBit9NhHy@>U;@ zVF%S$@a0t81GLYVk~u>AUEpm@^(o@1qk*s-M9LUCMHOb7ACi2k4{Gzca|TpFYV#J- zym*gcp=)qX{`pwy(lKvgp-lDGd*YZ}&W!Z;dKF4%X`7#q@KpR~ZI7jc0z!1Tvx8;$ zMG6?Q0IgP=y)gkM@L-BpQfnWxgtv}2oCiQdN1X2_kN9V~BgYpg?1n!`daCuD2UIiZ zU=&2Kz-h2N@`w=z!T)>yIAa+O<}1n)*e;>>_eqooK^W#pDS&HCMgY1Tb(s#_zOoaY z&tRMa7NRx_fuX9?PE9Ebq@Z8Sv2hco?GT zU`S6n3J5<|pV4@?u9Cw8$I2LP_9=_$z>SO+QIh~SoECJXrKcB>B1YX^4MSnDu4;}0 zA8$Jx;Epl-)6%(&mF?`+oH*+J>*QrB&Yuw=LMtMJu2!hwcdH3su!zVgi7p3`L<{;{E`ydJ zUFWX>U!dV8g_clMQ-CO0xHzH#U$SWOPfi568u0U;|8BE*u%!STBvJq@1n6=ok4b=v ze~J)R6kk;K?E?!zw0JZg;2-cV{?B9o7f#(en9gHJ-&v4^qtZ^h=fXr=W`jx#l-_9P zirX$Y5^e_}01@E;prg+#{8?qRr3{%Wu$C0?>zt~|_7un?vVXAPyLksJ{v$ zs7B8>`;{2*Ld_Hj$8Pig+-U%90dWXWYB)O*UUxqQ4pw zPhIJE`MAfcoBYqG#czH8plFy%gy7Q4-&zrON&n9~KKv{2_Y7{vdl$phXQ>zK1^-pI zJ8WH~5}4rp319{kCOxA76Zrq}X^Nu)JOma%#j=`UO2b0X!DT2$I8YviM*|b_{q+(n z(kF#tM8!glYnZ7XhqAzFu@I~vFan}gVVa|HjRn&Z58)I5E5QoNKQktVH6PKH0R+*x zn2eIqCt?3oWd@B=(*NJ>u+QbvXw$bcXfRN#;r2-nSiplRw3}fL$PjQ^|8S--o-Ywd zPMHL|$>PB{Z}IhiH>!VQw+|jkW-dpcx+4>5t>5-_;{Lb>e;>4D`L5w*lbGsiZ|Y8B zM`q1xJmZZ_xLG6+-WaUJlniqRKzLe2(9xD4b~~u}NEjdm1i)0M*`e5mOiMXwgaOd( zfR6|#u;w< zi%R5`43VUvkHVx6rA-KC;HDfe2`0e(0zI;K%s+oul3?xe?0<}Ie*_8Ke7w7U;$B37 z8KfIq)U+FK^~<9#Ri?e)3s(QWg+%_8`HIJdJG)s@qeCanMuf!bd_W8Q|Lb@kE@9BL z1?1(*h=+!58e?g2%oiXkjk<1B3+U$oN`E3j)+8XL1|7Y%oo68X%>6)VQ z%1~R?|IDHckEj`%f+vBwRA3XT^;R&o&#{L|8g(~i!!H#0yq|Wo*y=21wy$ZD*4NC5 zjJ+Sf=i6xc);dexTbK~KsDj@=ebE_IR%TVdL;>2PNAv=z>$*#Dbsc9V9p^&_p%ypw z$j>+Ais2zsx%{az>LO9iX&*is8s2X&y{iQ*pQ-jwqlWhK{X#uG3@hm!JeslPz)ELe(A4mK?NQFuJ(u4A06DN>GY|4DC-5q9@HXai?$DN@e zHh7MR$EfzbGl*w!PiU-%ZjBZ{q-f}kBqWtt8t_Qa5WqOod{{EzH_P;9$}!^LDg!zG z?BXIiIXO$A7u!mu(j-N#>z~z3(b7rHVbgAy+QYn@MJy%tML9gt`c2nUq4JbtD@My7 z4Wn_r)eX9;f)~n|k|fy@3)a!1h&qQ&t^BER!!ddAfpVcI<(4GK(sPl#SgeS_G1ikJ zyzN}%dNr)_m12WxOZ#Y)s@Bekrq;oz(@kEc!WaJ3`*0r%q)-#7r5Nf|J6daa(3LWx z98Xm8#k)vO$ig*a@-QIjd*0cx%_7Yn=snsi&7{26!1rk!o3|@Yki!MXqapdKOE$zL z3t?4NIdt~KARWJ4sUkGo7F!j3RpeGPMR#}34lIw0m!MtyytKRYEfKX5a8Ic>eS0o4 zO)6J$dp$>UzM3}a;1&oilA(Y+W1uL7ja>m*JYZvPHLLifc<0_RpuxjO7fI*;3pQH~ zw$M0{Q=o%`gRG{`vFr+2_f_s0DlMWN7!+IFjOWxx8FtiO#l5Yr%8%1*&^c#izN3O? z5L?OrP5UjA?^78~BX4MFvWh_o9-1^(s6zr*gQ7mNkFSp+e(3`o*nK-vxPinlAd-+n z-pX{iSv5;iw$Nz={fjzgE<2`V{F1g!siPPwElF_SGZg}m_!e#{Z6vjYqcq^72( zq^4?q_#p4#zzLgZmdx2`RS^97^G8Qd@7X+s@7tr>Ej#seLmrm}s&PS;`Y{SWZQb6!Wxdv6K?C5RwG zlw-4A(DktjWm0>;%>Z6bj)TXiy!V#6Sm2j)W+V4CP6qst3FEHrEqxR)y{U= zMZSXS&Utb9=Y29$Q5QBsU0uJE)_1k`-^|s-@+(w32x6zoV9SHI zj9OE0J5HPlvOs2xTag0U6SM6X2$c~Ovf@ty$k>qBvNTMX!}q@YJOBJ}mGIKy&wvuQ#WyYV@BdUDY4t&c!Q4I*&THFa$9zBgM=xzsd!2umN*AJC;8^_ zv;5+w2{VbTIyhdz25e&O9AIh7?0wc$6<@q~F3b@lT zOM~5b5k0BB1RNZyt+iy{@m@Zh($CyM0`r@j`Gbnyfq7$DqG6Ga1~sxMk_I)}+nZLl ze8EdRf7so4p~~P}nGHnH+sZot`v z!ueSMwI9g&ds9&8^>~;8gSZ(`61dUaOemslSLK2nunDjr*=ncCydytfUjE$)2}&N>`tlaFH-^q- zeRmFE>}*V|3Ka|yKgdiDT6~CT?Mvwk=d|k18ce>qyKKGIiaj+Fl;Wk9 z_U-k_#H9U#7g0mgB>2o?@vJ`o>d;~C;ko5>BS^bu;LS-AsK+L&(ZOigTfw{YIsH4_ z{h9VwD=j*LiPx!%m5Do+dUtE20VIDSnVW0t(9Y`O*^WKa`wyS!%jIX#^QlT)t_Nwl zUe#6*HI!`X=(VK=@e}i|FXU;RzhbfNwEbuxRnLU={RF}p3$H4D{w#ACoysC8=ZrjN zymU}c%RBg5YD~r&mH$I%s}h2G{QYZPi^~;4y7MbB_a<2VHA6)?$wfc=+Pkt;>nSOv z{x$hnEl+fbW3i^9y2SJ(P(#-+3i#l zd{b?!@-wSB_Dq}4?JkKT2xbzZ)D~0{XS9CQF5YZIalgg}CcoUAD%bz~ zplzZl<+G^qY>!PUhe_4KjPZKLt+-|6Y?1;D4yUDycIvXJF;ZJ9(3CvhhfCsKnp;{RH<%BfQLRon_Tl*?90+;h8Z!kZPWvjc%WIPZ*5@jlraX zt#OIPj(>m5aqp(?QGMQ`9X`K>iVf}~bdPs%L&h@@x`&biC8qXYu=ifTd0*zmBO2~^ zm`Sd}ioKyX67PI^YU=MHf%3l-Xi!J?QUTXC(Gpe009MBC(mg+I-u8e-p8VOv5*uJE zZlnC)q@+&HbJg4qEAcTQfxy%N-?ND(`hclF0xDATWPkDS=Dr`xmgqL??yHXq?8uca zw%{>k@&!sweN4d;&-wG7s(*TWpPIE|5pl>$oIu{%fs92{cQ$_qEsDa$Zr^t#s`{m5(8Mw4C@Z%jcLiZ?Z>25T_+IH-1Ng&@o8usJlHyQ-GM2mrW zXs|_=jFm(bG17C-nS_-1+(7Mi%~t>5S(@KV*tO7BE9rh#fz636#W3xe<=0DZH<{rZ zgzytF(jXRiFpi{v^Ggs7Jahh+mM(0#4an4L$5IF$BfvkD2Gt|#4FISR7FiMM zvY33l1oD*ojQg)?u{fD`ZY432L#zdfzWK^*sRPqkm|{}vt`(#n3{oVYmWZT)2^2h; z_Tn5d2>UaVwJfOTSKiZ@eTsNUQZpAKif{1(v>lx4*UToc`x#4wF$E&~fa*cqKH|u# zup%b6(gHRTjT_}LT)&OanI+pHGrY4MjR9Xmnq^IL6&Y%;F}@Q6Izu19{gUd5I~cdx zhRlp)OHi#YfAr4(x5aN|v?Y$Xvf%BFEG9v0@3~MT>|tKoY({V%I$I-rC{Ra7=lb5S z15Xb3At&NDzu7WTwVgx}v{pFjGsB1!0-CG0TOzG=0twLb9`E($Q{R z)m!9i{HplIzMC^#Gm<1Ho85{PuHrtP#rxgwosZ{#GECA4oy27_CeCMi0@VLL?T@&G z_~Emg1R{e+8jd0A=D!ngpf3uDWSSY}Hru;~)XIQI)Q;$@h}&rVT-lQE=|MiBkymJ0 z@+H6g^1QR|En^yOX~G!R(g7Z~wC)QU))mRo$W7ne zp(m&D6CG7s5@CEC;rK9UCyKVfdB5NxCC{Z`7FiyE29tg~Kp|!RF&eP>Ap234WMuK7 zg*;$3)C#NHWj;_-TU*Aj3i-h=Z;#3=lGqh{ubrB@Bqd2wQeT=fps;aisg{liPL>jaUIyP(;t=*Sh|NsV8T$q3_cxV-b!99`Bud*4zi)vpO5Muwa{!4CRmQ zIb$Ihr4yb|X5{S!?-4@VK^Vr5&FJvc*$beQq_MN-$U`Z58#@#AJ~AbON7d(+kF0KMziQp2YX~7zc*s2V1HhbB`9lS4MohQ9PTk9ks>h2K(zPCVg*ioEgDiyj z4_kG_Hrfd{jJh5nGFL%V|K$R_eILOhRp4zu9!}C%9(cmC(6mF!>qjA+P{jeU$B_M( zjqI=ISk8SF2sV=}pZsnk;9mi=s2)F;=OW;J86sl9fDeSAMS(0H9&IB*t1<}YKa?33 z9rEYU`ceC*-?-&!CQkySFG1fNmKHsdc%n(}9$Y1D5zQ104av=bT4K*EfFi}M2XRe; z8!t9g82*-yA_|i|i8GbQjsHkC@y%A~pd?wp$(E2@z>&jo`$>FwN-(}WKOoDrvn9pV zwN8dGh?X&tLn>$)s@HaNQ8Hqh%=eBt3NFN=s_mhR#t(w{DfR7k|u=$_oqUqyoc{3P~@~{TQH>h zS3QT;4xu8XUoEZp2wniaf|4iF-cCDb`;IS!h9UKB5TIX8!z8n;%~>ecE*mz7&@(kq zVW7uD>tcYb<@o-(bMnV7fGSjtfdg50smgZJwI7Yxtz#`7dP&1wV?C%+Ri-khUw7|B zk`?ag(4At0CP}@O<2spmx9X}M{}KLQ4K6I$99Fem2USPhQolzR{N`AuzP|{s|JV|r zTR^bEh&WJ@mWo=3NrDw~I>L+iFQdk+o~J?}$1Bh>-TY`XTOloE*6IHenyg=U?wL|P zH+b^Q^Jx`s&fwX06>nd8r?xn_HMxzM4k(99N}3Rd=<#$QkqG2ikna9-`kbAWCG0?7 z%8)(r)^e1c0Oh^kp)~;n0n{^IUpqu1)`66;H@NTy2XE5 z)tU6^F6au96_)ob*pg@3lVcWAvU{}n~;H7&*A4fV$sK9?j*<1VkOtGmynl?m67u-9j%WzpEj*q_KCp5t|{ zC!gj`C>&7M1tQ}0^P>9UoV^x6Z&b0=T8G@!lse7!Nd z+X5a1p#@_ zd$~U*iMOaKwRkXyTnAGuNlTFdPw=-|+{&yQaxBR&Sl+A-A1xf4T;9Nd6c*#u%15jk zIGn6Moh&!`IYRtx9PT6a`IVWY=|YLrpLin1P;&um^CO^_py)>>oq2USw~rNT+ZYyP z+eE((xN|1EOz#OF_)&}xy`-M~O<&hr;99-ovpXhah$}tNDO)L71);Ev^*gh^(5)k< zt{WnlN$(XP;2bl+Q@&Syf8chaOqWOlZceO^{&+1L(lPgC$f=|<^L7R+=W+h*o^RN5 z+3NB6ORaVY^~zjATdTW==Dnb_;;}{h&nV6!a;66!c(+kJGzMBTz)5ObV|%K-^|E5g za3ID!WgAXZcn`juunB`f9qsV+C@>HMHwZ5%7pOWXxRav&w;xBMQ#IF~>n`e>23&jW zJOEZp&*Zhys?+^CbMT}k^7zAn3(;^CLL^%NJaL+(_3OuV-t^6pCd28(!elMPoC5P= z6&}Roe8md~H9VErAQq|v?=MQeNGSr5Q~vm)tu&*33)1ver;m~DqZx2Fex~^}oq@ki ziCj9kv4-`T?1S-G5g|LUf`IFMx#v|**PSoR42T3bp{iQ)bjQs1l?IljGyA(CH9f2G z`I5P88oq-gXUt*QK(=t8k&i7xT@t?g7FYU1?dw`PV7~<%m@vV)QI$T$BvhZ~W=lsr z2Hp6A9~izZWOQ*#Sl}6GQf5QMtbgotiZzy=tj3fn5hxDz*-70xG8m@KRhg~z^Dg&y zS4DB)%qlZmQtG4G(0l1YtElWVX{+%-259F$(6^g?CQ0(^P8F#(UzX6us<2Hs$KNBd zx{n|DcCTCyz3}{GOV-Y%zul_CWX>#caennL;K_tzvc7g5)YZTN3*l%hJf^yTp;ai_ z2Rz5aM3EqEd<`Q3FrT#_flNdeN#9v1svdc>E~kluS64B6<;u^-Oile#S-;7T8nlSE zs~RF+)ZR>5`h8iuwhU66r2Z^59Xcci?HVzO$NSCX#q0f}mu)z0fB4M&Vq}vQ))y1MHxZP6JWpUS{n&Ps9RpA^>zxX$iWfj4 z;viFS5OQ#$Ev17+uD%@|pI~`$y)}tK{=3>x-nJJtpbn}kNE+cMuFgMxIT1$vWi52c ze{7O>!ZG*e>3v#)8qdJ>Np%hk1 zUZ^$%7yD0UzEd#z`U?q9T{ciG!`01=iqQPn+32C!+Go0Lq5jk(K z5Y2&*hbAe}?2xJ5aRZ5p{3E#74mk@LswsLn&&%<#VZtb2@8J1(cKCibXL}|zoQao? z)F3hDmV>c+*PH4OU+S@t85tp=W$S||O-24!^fr5s<--IM=G?_gVV$;!8W~#k*Ay==f8*tl2{aA+22&3Q2 ze(^!Nnrr`frggj8pGexyT+_bRoKKq3UT;sRifqWrEZ-{RVD+{<`vQJYh$pISyJ(G| z4NgMlgK+;YaBj!FX*l=Kmt_l{OQAPT+ug%IV>lWNN8s$WocplItb1g%Set=Gm|dp9 zWv@T(Z+>@r{c)H;gO%Q?W6PVWJyQ}a>?XaFwUqGWrE?{v;1{*vZYPDx_K35Qe+5m) zQiG>0%wkd;qN8C{G+0J`{tTSyHXxB!{(fFMDgJca-ycCa6c5Q6el)^((MmOHze5A~ zo$dINkcSr>Fv!Zf3oFeo*8|z$7SUK&0V}q*lljo+z0X52r1j=Y8)+;YlCHa%Ux;KH z{{L(x1DJu{+}sSRZD+pw;)pk!N{225{KTx)5DJ9MgmrhA4QLh>W*YfVdC#ZZDWFQN zPvDJ4&S7^19i8?>j_UBe7ylS)xvX!6Cj%aN^1jTYS0;@jMTBd1xY!Jds6B~4dcwe@ za;1P(>+mA!{f8&sd5uR^>E9o1*#TSdN=g>t_eW&EB0VAKIZDDirAm3DBJhsP_il9S zneP1fhQkCu9?R+1#y94wH?=z>ayIZ*HI37t&*o$F8WHHP%tj4DA(LJf)!vnN=XAd! zS*XeHlbt=6(TMWd%T2=)~-{VBzjzl#aB*jrTT{43&d zmeZ>=X93R@l%4idtG$yEVYTDG#9e5;B6DT$Ub{QsTAhy9Ehr;iDa9dmj5FEdK{Tj} z`h-SXV!g(G-?7MDB;gVNmc3@O!MFf)mb4Cx2G?hLBl&#!tCXe|{_7;&|+B2FFF0%LT@9juJp)gIO1vX|=_ovbe2R$|oqj||o`9zvp$#Tzy4iRR~&+#NDB zB(E}OalJpIqpN!{`<@%diIdFi%!dhgG%q^n?1`aze(r@Gg_1!iOP&i z{##2If1R|pytzQx+`FznBLXRb_fm>&xXgC)DuTtW)N7G?cG2Ky7EbtU|NJZ?Y#HKC zQGK3HxwjxjuDwn~j2<&AKy#>zoBWQ<$8^GloZ5YAS)kx?)TbXPBftQ?5dWzwMIEM$ z$37hx9={mNI=lQ04jgL?G)4() z=fhR?f{cD6TpbckX+gC!<sIxLi+zNNS{gY34KUjI3ZXQ8jz`!%=8AvY^3tq2-^+x$>?T-zT#MQ!b!Y3D*kNMvCg{4IV{kwc~l;K52U{4lR9<@;U=H7i|= z83My3s#-Eg=*d&MktjAh*IRaCznm#-*--xK@dxZLde}BO7!L-G8EXz+w!SAsZ|YmY(Yw%5l7k1W~|=Y zUox{$yF&9gQgNTQh1*-0iWPzd^Mk!Uduo`4Ga27&m(QfMSNsafU=@eIGYZs%d$5#( zT33k2pGfZSZLU2=Dp>B!h=f~GByVH(i%~ytMzrUhtngsYdMq``Jb`;m^4NObq*lsy zc4jPdzc8Dd+V@5o)uWurtc+n;lNu{H@b|Y~C?q`3(e*)vvsN3RMUVldksUj6BN~fV zCplPVyc^mPASNcz&x2ZA>pz1_*&oF6cI9Xh$;x+hm=}LPJlK(>%4pG>LXsqWkd%wE zywS(6pXaxr>U~^)zxl2C^{9}k=v-7cq;(y2M<>8}V-$p_b zgiXYcKZJI;#&L3T>U)mSPDj4ZJpf z2_EuKaCK=_bNv$*`>$E|&;+jl4T7LpAx1z4g;;LAnZn!~J{>QI=lhHKKYwOc{lq7z z`L*9YGba5a*d1>xR@f`CA!{N;sI4CN8B=krV*434UPDotIspZU2m$nb{-T`3rQ0%+ zG%)|MlPIYwLVg+G#uK|mZ%#9D!2H4ePStKHyXJ24l-xj z674P||9fSCPHV7g@O)8~o-N$V|R&9$GYhW#<#d*)Q^-MfqT+fSy`=)8@*I3o)pZJ z4o9#eeuAcK0?z&5BD;|1jOx7KrbNNRwreG+FRE5UWC*HRqexYW67X^LD$JK>3{Tc1 zbk~6mU@WqiZTK-dRbT=pBi(@GWATv(ftE&%C2?Ra&Pc^{y&_U^rM2D(lu*scY$w(Sl1D?bKWMr3Bq4bP z?J6knAmNScB0-PAwyjSdKO4UmM+UIwrjQ1rIJMY!-~2?BtW(_w^^+7-Rz_R!lO@mrwVTJQ4Cz zEdY~MPdB`qma(bKv5Fvzzbu77gFvpa$!f&Pl?IWIFI7i34Oi|HnU(V=Ju@P;z<$&3 zsS;Ys>rY^A$syN^vo`2;(j2ZP!6v-j2hi4HU{BEIG|_ZMHDQrJEXw{QFHl7Clo<(;JYDQL0xv6SKPm)= z2lMMQ$Lo-&EUq*dW?!1~-73aWp@j_JW;u>SEo8*s|A~(;=dz)5gCqGp&5W=3 z49F@O5jIVT$5f#&8Hw#lY#%760hp1vjK8_qZ}Gm`bvSWs&YEg}(PDBuLL)ZuD(rl@ zU1@p$v#6NF9;+SXIt_gaIY3#TlOlN*PD-TZ#X1?$!IJA7Fc}~GdTYDX%yvfk4BcPJBlYVyIA6V%2vcYU508eEZ!YDSi5o3R z=kq+sXC)@9Zyo*TGTE3M58Pg!Nb*jWVDVS!mR(s+Un&Sx&f zwnJ1Q+ntk3XQESUPwU3V=YN)S)h%QhIx>NYQZX{?DF*#bXXRV^P|=y!XzIR znU2hnL#FQv{7@0zv-ZP}PCbbO{vg=Z#ULJBGJLbE{N2L8y=-$_qPns329I?#3jE^- zZb-~F9qNcMTxy~EzW23y*=Br%n_amcXHa;!WtZ0S`lUfr;Az|5=sK@i$6JSG-b}S} zp_9hBzcM&tjdSH`|H!&{eC<{_dlBmvtc*i5D73tkp#aiN>NWvy0dgEf5f>*qiTJzH zy8WzEW)(XXc$a3IawF6jS!Jf=?0mcyktb>nLp3_HEkSQgW9HPxCi6@rL(zmkZ5$>N)b3V2eg)ts$&r&)P-rPw{ZY<)**2f2 zxU%d%vF~kmSa1Exl-XqWhHVs%$FB1JZZ5FkGUT10`33yHiPU?6wV`gD0h=Pjp4TR- zmH47adqZq`GnyMOPB^n8RM{LTwZY246}g00?0B?X3Kr%2oBOFZFMkf64+~5$_BZ3- z-ayM-ptN`9S!*3xeWH>;ku&*EMsi51)zxbUDx#0grKKb<5t8n5NQz1hPmuM`B*?*O zlE_qnJ{RtQ(IkFmsw>9V*WCy|hs)RJ-I0gfW}%CH`uiL6DVIele6O7*xxdEoJTV!q zV116I4@obweRM|()^AHVlND-s63bNiiIW=VGCtr*#PB5RdUY%G#hj^fuc%C30JGHI zyR!EwZU|B}8-6CWW}R>kdN(Q9P=bGq)^XM?GM3K$1x5jE1(D-SDl(wn%uuF>u|KOa;9*jUw(2LfvM+LT#CmQ;F^?)xd0S))9cwYkt|T@pgt5{Nfbr#v zGQG4yMnM$>s@8}n+9!uuCihTcqa8`sPK_&yPOXiQ;PMi=%l!`ohyckbo1aA!7QZh`vZpbI0J{FtN zd;eX%Qq1)gN2ZR~@OS^42Uz`)zD?)7e_n$N@1RJ>uwE0ORB>a`4!RP%d*hhGyb(rK zNctIrybujGf!e&n1(>Y(1QlJOSo`cfv@-A(Eoz}!qPF**S$!CnRuCFU6^R{?)-cxm zHMFo$B+7wa3U|Txf+W(+x!l0C!@lp66KEh$bz&7Y|Sh3 zYlN9vsg~B!z-GiYjq_t~oq`{gUe>X1uXyW{=u$IQl}Q^sZrTUL0=p0+{)lW()GO=< zdm?Hj=rY+Q946blY1QvME791pv!7ooEmL&CpR@QMdSyt^E*~(fIZ5Bn?4n4WruYL& z(Wjf`l}9kRJA?jltG~~k5iwP>Reio5%62Mh;a1Sw-*+`8hVjQJqtYzvTy{p2E_OU`I;_kJTlg{QZlQTGSPu{-rfXUMn99<(|$Qhs1#}-fOHs z3~`0fvtp88wUy3s($Jr(2FKU9R~e znHS5LorPRd`Xn=4Jaok?jWK2;hnTyPE!FZb z6WN2}56mBNm?BF0 zcec&184-UY(8+2|DwAj43NFQu%IfNp3cInyZ4;2R9kma9u0!~M>Fuy`_f7QMw8^(y z!mDa)XZNu24M)GxdZyd=7jGba^!f@9btfy^=u9 zpW`o}-_CJZ0Sro8Y1vLp>);4W1F2+dV`d8M?KZAvN*!X-jHPsx#;29dhr9@g)7;O> z%B{zv8tU;yjQf^#A9jC#e^lBZRaFc`-``mL2Evx4XR6SRy{*%)3i?^e23yY%Kde+f zhm>99umU5j!q(!gBCzefus=HmKCOIv?fzCMa@OfO4OUJXC`}Itn<*y$ZN(Xi*p{Q< zsh$*@Eif~;6vzFzU0{p?xl3UDDjHvZY0Hb`2c|dQQMA0@tTi!+M)J~1kN{#CA4 zSW%I=(A>4^_QINy7GCj_GMrPjh?}v_rk{<1`#YN*!{bxY$2Q(8H3LQAKWas;LZD;@ zI~nf>)PT#MJ;Y(qSZxV8Jv;KYTYp)`Fc;M?k!ExlQloCDsmj*fGz{zvuB0jxG|V)o zt!_dFqHs3DeRsOH3Nf49A}xerfiJNTvzsiwzoCN(w1hf3dOVFFrXN>HO`5u~)*Rs_ z_b;@+(bG~3x%2)Xn$9|?jsEN66e#ZQ?(Xic#T|-Uad)@kR@~jaP~6=DrMMH^o#1bt z-^}~hW+s`*X7kToWO_eYy+rrHqMk8xMUCugf;{3b^?jlw_vlkoN^d7O7m(MMJ4-Z3 z<_JC^VE=*D;$&Sx6G87WdEn~ zH1NJYXSLXDc4gFGI$B7NuqnB7#yJ@9wMCTDX=-V^0Z~~Z-EmX&C%JirgmS` zerfyR^rv9e%8g&WqJaTpbu}g3`Z^%G~@RieCKoMw9e!A zboss<3_IWEK#G<)hAyG1r8j&1vinPubjYruZ+1<~Zl&D{(N7T5f|z#vO%wZvLdp4N zZ*0fd^zJ@qeW~S9s{K}Xo|LO|yfcjY-Qz`R3VpS|xDTIHycHW4Ryh}zxNCsWIz`R| znihAssR<(KR1}91n|f@Do4){ut!L?r+y^1hxW^H>*SV^$%5*wB8HtoT?$4HfG}YO0 zWE_RO`=iI6-*>V?%V-OVu&YD9i~9xeDgXPz(e$WI7_O>aUkXCd^PDOTfglSnGP>UG zD>4`99-PT~hfK$VnK)LPSt4Nze>WtND*B_AmvF26ON*31U@pOUKH|c3AqNPe= z92#psIq%~^%A844OQwBTa2qP;;I2iH6#F7MlKeA@35*zf3jd7k7=_FC3xiybe{dW_HMY%ba^-%pqfRf^ zk}rD!m67uDdid4VM!qO4i09!7@Z@rCV?#+t2e-2xcd%)e4~X=i!XX@Oym?yBI&TDAvOx4_S?5PH zO-YrgDJ_(C*VguRpYCwa8L~vJE)30yzJ;Kd%Y!ckzg|S>jb#5ga42SAq)@r9mp{$$ z&VN~Ko9Bv80Y{CWpnTd|3=r%w#haYE45=?|Vj} zCHBJd>sqj1Z%)1n@G#x&%;F5wKUp^NB6d5PWhOEPYm1Kxf&%A(tjx?KE&&wtc)hIi z3&a&AEvcQ8bVmgO_(HJC7B*{(lfA#g9K(-QB4uSvP6_msB~!3-4N;6p{rh!TGD<2c zz!zx5sR@7A>}7y6m|5Z`Y@vs+*JFeNw>y=31YjL-u>~JizzVokP|1xlUj3qsLhf{P>^zqSC;e|6DHn!mOl-g`C0R>m14raNimMXmbj4pDvY}*fejQx2AH%e6>9jMaa zag#GuK9?b9PV4YHnwqP1xT+z1cI%tTwJ^DB2NAh&Z2bfhDM^{9+^>|%xN=1}<3c+K z5ey6)21s0Te>qEeR{84=N?A1#S7=hlt^Onx5EbW$XwZo}jJ#I#u)@4jSQ7rojgaA( zcxpiLJl)Nx^1bHlu-+?`=;t6_;B%X@HgpY#d@7tY<-RZT+LH$n&RLQndEaycm_pIj zmGgXe1U4tKf+a-cOG_S`P-f0X%gp~qU5qlo-HDJEfJn|rEG}lel!!W5P@R0_li8*` zLi!;#^rtt%SUoglf-Ib@*PZ@AmRR~q@M`Y$Fy|K_TN<#|D))XQUv_NN8gpBcPz<(w z=#&49BUXIg=xE2r4jToeUc3H&va-EG_KmAwpZDl*^%>p%_YeBNS(hGo#X^+GCbGbV znT@f^BXDy|CTYbBGv}S#+Ln~GL;-2zE2w__T~8%XR$5rdDP>JAD(%KtcDo5c)j%jZ zL#PL)0PvY<&?oPN{_{xB6pF+;0DVY?WaIbB34=!cuIeO4hyE!mE$k~=2c=)c$4?91 zX>R%7898=7=)4}O{0xj__h$ZgCsbRzXl$!d-2EGiS##`2$6ywyKCEDhU0?0^E`~Hn&yv2&KtEbbI#bAwB2BC87|Om&JksU* z13x>I3LlPKORniIvt#%7X8)l9x=lh?z&Em27@w}7>zo<~AnNg_@7vYR<# z-w&@DkoH-2w{Cot6fUNw#qwG{($>{kDd@=8wk2Q77+8z1@J&g;nP@EN>3N%eJ{Jjxr z&NGS{7AS>aLxNg&LGauJ50UVH}W#G>D&;dNjXgIQH%rine_?bl-&1 z789t=G%>3YCQoGI3K377u28ab_wj@B!6#~$=SA_6-GzPTH4ARfi&kMf&0?f!k{p%V z16n#I$k~gr&cVT=mZ_nyH6J$LP=Y44gm+bz#txIigNixgr~{OrxF>M#;lMP8Y*s?t zRf!#Jil?ic)SGX;W&Act?S5ek1W!AP8dyWFVn4V7)f%BPJ}yOi?^gkCGnP7cck4lF z-YB;>J0m+sOo)1r6B=xiFe&OIoeo`S?{V8t0o@-*VkxC!)AH*5Nf!9{b2F}B$CI+k z>r(N}JNPQD#=b~|P9FLfB66b3O;o;&p(HZQzj3r^$*dCwm$BrV{Wi$}^#LMP)$wZ?}ELlp06E_n!_Iax_Nul=f*pJ!WeNMnYi9iQa zAbj?XW=1gK>ybaq43dUgFq&M>u04&CAy~vPNLH~Ki6Uz6++}Gr94ZAeR{(O z2#4hJ*-NalT{|5y$RAc^%U3vs(PnFNcng--rh*O1xI++@dZXR1 zj$j+j$7zj?7{Kp}JiO3Pa*m9E{CKPLq2B?#>E;LZxlqE110s?65+wiBm*n2g+m8RK9$GEa|9!q?DJOwp+UUYu2>u(VEQMGr7iq!2 zA=mIY>YNXyoZlNWj%n%_K4eKvSi&q)XU^b13rGJV{4rYzIWnPwpSw_Xzw(}#d-YFU zR#mpGWOdSwd(wBC%^By3QCkJ1H0h)h`#L3nf}*SP9`fPj$!JYUaa5r`LRT-wH!WBG zU*(t3B$8$=Y@ZzjWm$5SYK0V@{0usP^G_Z3ndosjg2|01*zv543<+oRn+vjh1T=R1 zObQ(vI`gAWjBXa3BthK|!qrm@dftc7(d9vY} zRFfr+0P=lJ)##mD6U~_m;jxiVL2%fIv5OJ~ZEYIxqE%NHG2ya3xb-=i2Avgb11ptt z_{0~ypN26*_LRgV;Qrdi#vLsDU6N5zLDgOwY_^X?#-E`rCze-S|E|BsuP_+uZpIqG zkE?fkErg35&!Ay#+z{o^HIB8M&SHEv?m`s!1|+@Pa0A?c9nH90PUO%R%=nkx2RiK% z!Awp2BS(B59~EEPpPI(9*gctajNRb-Iv=)*zk*wcj5*>d*rx=VN&X}OKj5*OIH<_m zL5LOXuj7>S(`?!0YNn$$>kA4hDujv!KG9wxHUp65aaljF1#dRo=RxH_4D20#78(&6 zjQTy(PJ(iVw%xK04zCl#gl#UX**@V z;zF-0=BpZ*K$|dw7TemT4X3ktk$@xdJthYet)kIFJbPYLH!`#T+>_m z?slm4_PBwGxQxUFg&#REo=j;=#E;>1Z^Q69BR`VRS67!RHCa~DlA$>|-~xS;tLQ{A z_3Okf)6<=su#IPa>vzi5mbQ}en5&^7fYx+XH$nMt^Nk@c!0YCHAcJZ)$3C6ac=qDY z_G}C`qxVj-sO!zMu@r77#us$0-QKJB;8`hF(e_ssocuNjcxUK1lI8wvFkNVcExjS= zqK2vSY)g^{>e(7ZKP8c7QLc<1;S3Ck9=mIQDiXxw_r*wVl>c1{x$9%mVk`44Kg3RO zI?IcuMw{s%O7sQUsjn~E-j_DL4mbYFfL~LqkO8COd~Nn`C%b>O1MT`Kz+`{)ojgGB zC~qWlxd7ILs8z5E1{*=#Q&K;H+AVmitXBy5mR%?t0T4L+CM^^1{3% zxodhvYEwVo+uP>?cE4CWYoDmqG#*){M5fnme!$~u9I;?}lQ|T!4|og(i)AypZQV!} zP8UvmsK|=?@1;gTJ(tY`mr#UgGNA{Xh_@?hLW6kCZ|%fyo6PdU*zqtzKG3fbyMgoud~>Pub;J83ik>;vH&4O+8s_yxC9*}!DCUG0zN1kEM} zUQ^D#zDcljgDAEHm56S4ubJ0n(y(U@`A~~~m7I{%#MP5y)$Lc791%Oei#4$X<9_!K z)%d12aW}OktuY4dY`|W`SA-LnN{=4rD0}Dq)Lj4eoq!|e#TiYZ+hgfwxJv+zFvQkj zsC`wgH>T)v`Tod*=VrDMo~~JwtM~dVP$to85Hv5BJspNB9GN$5I!;4^vDrnI?HJ~r z>GFqa)p^P{@UuOdYZI9K`Y|1mQ7~3Y50o!cAI~@B>UCIuZ+a64)G?t1$$=3*y*TN7 z%Oa{-`Ycl$dD;*WQ$zS%MUS#j^swDwVIx67=B%6vj3Y@7Tkj_pZ^@G56EN9Vf4!fG ze)P5{UvwFb>(P}@Tsq|FcFdId-`j8b_+mJ{JK}R5X_`Io|8BLu?jFe52}e859(&11 zEG*>;y%wedlzCnCimM4^ z=;G35lFk(eOs`STpl4;Z_Oo`wP({Z1kItPGgzc7?!qJ!v+mo8i$2jbkY6m;qX8EIF zN&S-)SvsKk8V{dL#@UdNhQtjU7TA?-1+%9Y>p3F9OiX~Jq)9|Lk2yiJVVVY2_FZEoh>)8+N0h_^nX~Lj3jJN z>1&RY|CJbN7S7F`&NP+O^WL-g9%N4Wsk<$)c8hQPJ@U$1iG=-E9&^Z{YPp!Q?aw+R z7mjqTpX;nJL4#nGno%>73Me=5<%B7dGY8R1>99!jEgHTb4!VRYIt~dRe(T16En?WV z00jM1t3QI;M@sb}{4vZqohMjPNe4H?=4^gx>~)FVLGnFSyOE^t``V7Yn1bhWta*LAUam(!>!+VRrF-3D7JX`2dxl1u+oU`+mY z_9JyRvs8wOmbfrOIH4dv8ne`m$XdzC<5PD=p5fp^H{M>P{%P0IK6$sDO7XiaVjWTqV`>*H{U5kVOmM1QYWO zmzM0X^Wy`V61+iOiTeO$<&T|09_08#>4mH=Iwhw4q-a{c(~Yw6${M0wq9#zBoj}5O5nBMw zLFJbkE}?&OcXb$=q+e7hhlU_6U)qvc9$r2v)K{K||MZ>=gKhBz(9@TZrPvnyJ)($i zCD24BUP^+F|r}FfimwKu882Z&^hak zKGJiqiV(?Ib1fvWmRZqxMhk_K79hqc5v*|1PC)RI-=C~Ff1_G5gePnct)p~qIzE*1 zJoR@MA_5^Y%;BdxQp<;^I2g{lxEYULBZH05Y36!5ly4MS?Q7^f$#hB!*l$}8RJ7)aIy$0kDlN_^bgI)87r=DqND0=usw+S0SycLE zlFh^}4#h}CNuFsj(Vj0`5{zA=ZHmEl3YJ9e<(fbdp8ksyfzm)^cR2J8^xjmCuq*wz z9ulHY2_W9BbZ7NYVbmCx;faZi9kyvfUAdr91=(`Uce%9=A&ovk+aaX!p z*&NA4f1EAjHspTq3_W$jPL;@8O*n`36#%vE0TH4aLl`7q8!k6K>_SXMYB6ziafz+e zE~HeeZn-Gz;O+?jrtm=fi(}Ui*{6MU=`pSL)r0oPUwGW7s=Bt&6O>eZB&zH23Tg&8 zwaiO;u61%?{M+jj^@D?LK-Q6Rz{0|kW+CXKJZX0A8d3g~V|#xPas0f+Vxk^#Sr(D7 z^ue$C9f7liKCbk>r9Ufb1+#1t}piVrj}$Sk^Uyy zjrr&d3S@~&Q7pDAql-+SeWv5kUFFKgu+ke+`&G9gmb%Lkw1y_4YVj*6L{)R}pv*f! zUQ=0?+brB8%$r>VLV01_q9r1w2Fi9Uff$wzRFUr+^A!rC7DWVggx6+?D<0hVm5C>a zKnq>FrP}_KA$`D<5fc}D5^MMFAo|`+%m8V{sxEk~!8~2STEft!*Jdv&NqYW-$9LGx zPpdLBGXqQXKW^^JGJ_grs`Em~`|`)DL#~ek6a;Oqv&1~m>Flz6ECoFrkEb--yn?&% z2ethVh3iL{2+9hTvfrLWMc1%gm)`-acQlx>BQ|)VCEM zQn4YruM8n4%@TR=S}`i6|Hh_Ibn}Oligs2>1fhS&7SaUnfC7y?$Q#u3K6c$xx17FL(5gD=S%$(pT|>O|S)yZine z{D_LsU(mYJ>V~(+)dIz_(dDhSylO&uVp9^sLyvs!edT@s7{ql`NO&ox$ddTR#rC~@ zEuK#aGXD_vmj~t=W@ez?ZECF!-R;6(%pDyaXnyAmaF?0~3HrJolVj?r+n!=gKVNB0 zXA1nXuCF_I^V4ErFx6Rr3CE{C8-KeT@$e7$P*P}dC}liqK28WqV$P9@UKl)AXt8-~ zL&;&M&%uxscl~NZlX4hJOKu-x2Sy46q#R~kmF)i1d%JzKem<0@RTUT;c&Nz=^x-~6 zk$Aiz?y&Kfy`AUA9wF2Hf=AHw7s0hHo(0};!h8$2BK20Y7_q@z;V@&Lqb}2^jxVkC zSRcO=f3(>Ui{BsIE<%7XT81Jt>Dx3)p!uLT--3MgSW51E{5v#IGY0oBc8Gu;0KU{cRWZ%KSuH=+#<9a}CyBDs<%K;z&kLAI?-Q%C^P6Zy=Bv-@yidWJ|(eL{iadVbe^a z(Ld04Xqx!&=lT_GC9gzCb)exvTUx;qnn)mHN6<-pT@8teZVJ-`En{fFlp>*dj zV_>4}82(=i0ACL9a1lZ^z=|rE()X?hD6;nTWA^Du zT)d$*nR6M6ew*b?BEsExb1Eg9z{qD(tqATW^epF9&p;#y$+2obzCncUn>^7ZbKzUu z_2CD_&$^)iHfB9`PAiSLKGtTj)-`arTge3;I}JG-(qXkd(GwCZFXzocV^ge67b>(j zd4i8@wY}+^R#1X}8g{1XVOTGJSU5Ed8H+5;W{{p1%0!#3mwgg=Lj*cCMA!+!Ez3}e zRTA`G6cfmot{iy-U%l8~_pyZArWX2q64w7v+Zz0i6MggeQeE(cKC)CdgmlCu2Hf3g zh;sfn!WM8X{Nn4Iysz1q;x3FNNzVHL`NIR>@?v{sd3Aua?P4e7PGlmh!DB~`p_39W zV#xaw`m@mog2MTe)cMU>V#nmAfbCQ0L+t3T#%Z+uw=bsaj9Q_r_q&QB-|d3i@#TZf z1}~O|lfv;8|URN27*W3bSH4kRpM*cfTh zTT&TW47nbPSpv7-sM|o3e;bzvhpYG3YDnZEt@JuM4DKAZR;GF9pS@BrQ^_m6mV~r< z&RjLxeNm-{#zt!Yp!gb>6t8VnA(VsBSV%DRwMTA={AEY5NP1!-lMD^z$)cf%TfhRH zt*wD&$z)4>Y7QiM#(~o{x!UG06HjuM+2Y#r-ogTXJbpmJ;s2q;Ak~IYJlO8tz<^`bZ?f@l{*VK@_YI*1omH!M#Z~q@e)! zd$lEe;f%G$Eit5byS`n&T^Y8-CLd*av(Uwa7gb5cqt%~LqQOavV_;yAa1{PPpfizf z?rsafH%2!e_T-RG463Ac>B|)tWqOSwZ;Lz}y0{&13nYu57V}C5b=I3?BGlF4V`-A; zF2*MUY(<@@R$qBox4H5*FW|Sfmg4@jW*s-8bWU-ndyf9}Iybek{mCk{BD2)&10Dv> zGNEiw!PfJI#wT8y9M46ESKIS2ttt=2W$+!o;pe(8GD?T6G; zbaKc&a143{56~7J-eBvI2_X{Yb*>c+yykh#4a$(K)L3oMJ`8`b%X+p?#PVK z9EwV-v!y1bQ!Kb7N17I*Mnp>?z=|iMWl{BIY8BY^XIK)^OqfG7q;#gK|E7GZbZ|z7 zJ#KiGQyl(>hB?cmn-hE3oOt}L$PG@oF|N=~y;hii1XjAepn10!rZ%EUZ`V38PZY0E z2e_2o=87_*D6LS+EvxpP1G$CKQBUjD!pmE%;cH&aPnlv1W<+BU+|7KO?m?fLSn8-(km$jRtik_S6pn9wY z*Q4L7iA_n%XQPQCC9q@ zzb~e_@R*bI4NT_7eyD<8f>Kz~a&o)%w2#h9>}7@?GQ!nJqQ0Jj+W~Djb;US~#}?q$ z)%YacB`EsbcH^5*CEr_2rP4~0cp7~{i8`megasuLuQ^5_OYFLXi&?AE-)Qwi+l}AV zdB))-?Fupby^azcblFZ}w2cmbKu4@NdncqM$`N^D^Mi$%U|U=<3ZY`B!9m3n^Uzi| zhUGXK6@54>5!Qmmb9TTlt;Hm)omZ5Ei(-YSL!fhJBwL#UY_b?Ew>C-TJL&W}>?LWp z0^Jg<$vO`hfB02HX;#gGB!}^UYy%GU2RY z_Y6IXQIdb_hrQWIy>>57+q3?P)nCD>O79P~NEV+^enK7Ry{NOSmK){rp4L*Ew?^{2 ziIOPJT881wH8!y71Y93{lg^sJ)*%h!sLoB3Pd$v2a3a-KO~aKRvOn_}bJBvi~N z!)HXsj5bvNV^_k~TdXYL##j3xCJ)1F2Q1gPKW~<^rtZ|>cOSBL%#!Ks%Gj)VN@^zF z$mdG2-0iY89AhNtqq4v_J(19u=|3UjXiN!MsnNl#iE&;>1&GzL4qR@8>7jq^r7lm9zau1JR@# z2d?S`1O-=n{JeHKpY``flFmBAC5oUjwPlTeMP;<&`aYsB>9VpJh8ZA z7}H9mrq~n-`!9=rn?W{BCXWY34)L~X!0m-Ys~XaDo^}4pp|LDt%fHy6yr#-r`3)b8 zPN;1rIPfmxgostpoxicdmUH6QhQ^635gEzq&lNKT4F-#ri1>gd+RDGQ@s%c&qrQ9< zK07^yKoIuRsQO3F-7WjQI||kFe5Y2WK#wcX!3epiF@y?n%b+#VVV#H5a{~|D8I)M6 z+w9L?w7V7}9h+@>54)g?2{k3CjEO9+qQaCn1OR_hChY8|9%08f$h!0NZO@#2+8kwB ziVEw#2TH`657SFhID;F93YM{)z*Q{_B1!AjE|46HR?)#e0+qOMa6;; zn}_UoAsXCu2D9r7+G;BSq)N~29|J5yFdS0@GG7i(##6uTt@u3M#1{A(zSIs7>);y4 zZnzLp6+P;FZM_ykWQ0w?tf*NYStF?kl*5-$z~mvr;J$$#e%+IjU})(5pwTE-G2PTg z-k$ur>o1+TOEgwQyESD?J8iytyA0tR5&%s+=LY>IhmDbqb`NoZ;f`o?Aa-;WfonW$ zo+vUo7ijQoawAUmM#O2QWO9+cINlsn8riss6(FD3*=b5<7@lf*UdhgN>4>6a)EiaG z05`S^0I=*T8n@#C7-x}A_)rEtnv%!mF(effUMLeFNyQ|AzD%^b)Q)zU1aL6S-r8f_ zb!E0|^O{nMwinSQ3<%{`SncO4aq~Nz{DFjT zPeGr&k)}kAllgu+*fk9o#k{NH-G88@Gh#;*rHaEP)YPj)tN>X9xeNDfS$>nW0lBU!!5R1x) zNnQ@tsb2Qt@aD(bPhhN8EY4sG9+yylpTb+LwaqUR(^~2=@dYrcFmHY9qzzG1)58i} zxmL4GvWI77CacZuC{J&w3bB)Hk+1CVwvOo+Iu`D z^Dwa~Djs9464*ApXG#3d7pgl%*L^R7B|E5Mkz__AXIg5HBDx8?VzEwaKXvd&v=0Xm zL5;d0;YBedtn!{#ZluOT4D(-IuMkABQbb4k_zYGXG=tTq5VOKh8-q=s^atyBlg&zQ zZk%B43hM!3;@HUvf8&6xbWqk&b8|CTe1Cfz3M0tI=mQ=w5GY~I5jr&-fJ&eWewyOF z?Nxk1d>c^_{udachx9d#McCQFpFDMfrb#0Jv?4Wx{x|Ep{u8w-cGT}Q3Ah6CMXg_H z87az7$#QGspvvl{t8vy@=%ZH=P$;S=Z_9D|di%@k_7}3R=MZbbMUY7HWKxX+aujmt za4|wX*ME-GJmSYle13bs1+F#jz6XcEh2&jG%5hl9QRiGDvW$zCq(JwIr9kKB4S5N( z2t6tFdIySRSMvF5X``jYF)9wX;2cDX--WM&J2}KatKBIKgRyUt*f4^l->CF?f6bU% z7s8PmY0qOvd|xk@;=OT!Wc5V{rR=#)=&&9Df&wESH!p0sac+hK4PM0#>`hi&FMi=| zIcBL!Rq&=+eT25qQ9!l^2hH*qKpnH*FmVQqYGO%Sxl4)+aEy11b3WZ*jy*9FJo_3A z+#UH`_NBpc^%jvV%&qjgp#sMiQ>PwW=Lc1;yJWQ~?a0N<-~D=ipP!iQH~OB(jqR&P z)Gqaxm!qy;Z+$<^=SY9))F#MDl?LW8&_TkzlP5oDPnL0 z3pjQnjn@#YTakw4B~t!aWx2VOa}NXSpLd|5q-YBGT5m}CjFsnm?Id$9FiA

edb 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
-#*h)-FAQ61o!zFQK{E87DR#}&YbVt+rZ3k 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 a9{&ZYNHz*ZyY5N=0000 Date: Fri, 29 May 2020 03:06:43 -0400 Subject: [PATCH 28/38] Fixed typo, capitalization --- code/game/objects/effects/decals/posters/voreposters_vr.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/effects/decals/posters/voreposters_vr.dm b/code/game/objects/effects/decals/posters/voreposters_vr.dm index 9826989850..61441fd3e1 100644 --- a/code/game/objects/effects/decals/posters/voreposters_vr.dm +++ b/code/game/objects/effects/decals/posters/voreposters_vr.dm @@ -89,8 +89,8 @@ /datum/poster/vore_23 icon_state = "dwposter10" name = "Visit Luna" - desc = "Part of a tourism campaign from Solcom encouraging people to visit Earth's moon, Luna." + desc = "Part of a tourism campaign from SolCom encouraging people to visit Earth's moon, Luna." /datum/poster/vore_24 icon_state = "dwposter11" name = "Secgun" - desc = "A striking, wordless advertisement for NanoTrasnen's security department. It wasn't very effective and just seems to be used as a warning sign." \ No newline at end of file + desc = "A striking, wordless advertisement for NanoTrasen's security department. It wasn't very effective and just seems to be used as a warning sign." \ No newline at end of file From af10438e2f804cbb2e71f821f563c8660f9947fe Mon Sep 17 00:00:00 2001 From: dwinters99 <65516417+dwinters99@users.noreply.github.com> Date: Fri, 29 May 2020 10:57:40 -0400 Subject: [PATCH 29/38] Update code/game/objects/effects/decals/posters/voreposters_vr.dm Co-authored-by: Aronai Sieyes --- code/game/objects/effects/decals/posters/voreposters_vr.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/effects/decals/posters/voreposters_vr.dm b/code/game/objects/effects/decals/posters/voreposters_vr.dm index 61441fd3e1..afcf0ab108 100644 --- a/code/game/objects/effects/decals/posters/voreposters_vr.dm +++ b/code/game/objects/effects/decals/posters/voreposters_vr.dm @@ -50,7 +50,7 @@ icon_state = "sbsposter13" name = "Ammer" desc = "You see a blue panda on the poster. She's awfully smug about her size." - /datum/poster/vore_14 +/datum/poster/vore_14 icon_state = "dwposter1" name = "WANTED: WAR CRIMINAL" desc = "A poster bringing awareness to the distinguishing costume of a known war criminal operating in Virgo-Erigonne space." @@ -93,4 +93,4 @@ /datum/poster/vore_24 icon_state = "dwposter11" name = "Secgun" - desc = "A striking, wordless advertisement for NanoTrasen's security department. It wasn't very effective and just seems to be used as a warning sign." \ No newline at end of file + desc = "A striking, wordless advertisement for NanoTrasen's security department. It wasn't very effective and just seems to be used as a warning sign." From 504696fcb16f00401c9b881716c2e4caddef9d50 Mon Sep 17 00:00:00 2001 From: Amaya Date: Fri, 29 May 2020 17:51:06 +0200 Subject: [PATCH 30/38] Adds more areas to fun.dm --- maps/tether/submaps/admin_use/fun.dm | 36 ++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/maps/tether/submaps/admin_use/fun.dm b/maps/tether/submaps/admin_use/fun.dm index 190d982d31..f618e7c370 100644 --- a/maps/tether/submaps/admin_use/fun.dm +++ b/maps/tether/submaps/admin_use/fun.dm @@ -120,6 +120,42 @@ power_environ = FALSE power_light = FALSE +/area/submap/admin_upload/AU13 + name = "\improper Unknown Area L" + requires_power = 1 + dynamic_lighting = 1 + power_equip = FALSE + power_environ = FALSE + power_light = FALSE + +/area/submap/admin_upload/AU14 + name = "\improper Unknown Area M" + requires_power = 1 + dynamic_lighting = 1 + power_equip = FALSE + power_environ = FALSE + power_light = FALSE + +/area/submap/admin_upload/AU15 + name = "\improper Unknown Area N" + requires_power = 1 + dynamic_lighting = 1 + power_equip = FALSE + power_environ = FALSE + power_light = FALSE + +/area/submap/admin_upload/AU16 + name = "\improper Unknown Area O" + requires_power = 1 + dynamic_lighting = 1 + power_equip = FALSE + power_environ = FALSE + power_light = FALSE + + + + + // Adminbuse things for overmap sectors // This is a stationary overmap sector, you can spawn it in any zlevel and it will pop onto the overmap to represent those zlevels. It always moves to 2,2 on the overmap and you can move it elsewhere. From 6809133d755e6ec59097d251b778954b4f916026 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Fri, 29 May 2020 14:00:43 -0400 Subject: [PATCH 31/38] Port Eris' extensive floor blending system --- code/__defines/turfs.dm | 7 + code/_helpers/turfs.dm | 8 + code/game/objects/items/stacks/stack.dm | 5 +- code/game/objects/structures/window.dm | 5 + code/game/turfs/flooring/flooring.dm | 69 ++++++++ code/game/turfs/simulated/floor.dm | 12 +- code/game/turfs/simulated/floor_attackby.dm | 5 +- code/game/turfs/simulated/floor_icon.dm | 166 +++++++++++++++++- code/game/turfs/simulated/floor_types_eris.dm | 52 ++++-- 9 files changed, 300 insertions(+), 29 deletions(-) diff --git a/code/__defines/turfs.dm b/code/__defines/turfs.dm index bf4c3de6fe..64593f6e11 100644 --- a/code/__defines/turfs.dm +++ b/code/__defines/turfs.dm @@ -9,5 +9,12 @@ #define TURF_IS_FRAGILE 256 #define TURF_ACID_IMMUNE 512 +//Used for floor/wall smoothing +#define SMOOTH_NONE 0 //Smooth only with itself +#define SMOOTH_ALL 1 //Smooth with all of type +#define SMOOTH_WHITELIST 2 //Smooth with a whitelist of subtypes +#define SMOOTH_BLACKLIST 3 //Smooth with all but a blacklist of subtypes +#define SMOOTH_GREYLIST 4 // Use a whitelist and a blacklist at the same time. atom smoothing only + #define isCardinal(x) (x == NORTH || x == SOUTH || x == EAST || x == WEST) #define isDiagonal(x) (x == NORTHEAST || x == SOUTHEAST || x == NORTHWEST || x == SOUTHWEST) \ No newline at end of file diff --git a/code/_helpers/turfs.dm b/code/_helpers/turfs.dm index a9cede52de..5a0a519743 100644 --- a/code/_helpers/turfs.dm +++ b/code/_helpers/turfs.dm @@ -169,3 +169,11 @@ T.ChangeTurf(get_base_turf_by_area(T)) return TRUE + +//Used for border objects. This returns true if this atom is on the border between the two specified turfs +//This assumes that the atom is located inside the target turf +/atom/proc/is_between_turfs(var/turf/origin, var/turf/target) + if (flags & ON_BORDER) + var/testdir = get_dir(target, origin) + return (dir & testdir) + return TRUE diff --git a/code/game/objects/items/stacks/stack.dm b/code/game/objects/items/stacks/stack.dm index d8237b30a5..ad187265c2 100644 --- a/code/game/objects/items/stacks/stack.dm +++ b/code/game/objects/items/stacks/stack.dm @@ -364,10 +364,7 @@ return ..() /obj/item/stack/proc/combine_in_loc() - for(var/obj/item/stack/S in loc) - if(S == src) - continue - S.transfer_to(src) // them to us, so if we're being pulled, we can keep being pulled + return //STUBBED for now, as it seems to randomly delete stacks /obj/item/stack/dropped(atom/old_loc) . = ..() diff --git a/code/game/objects/structures/window.dm b/code/game/objects/structures/window.dm index 4a5db1e7a9..be79fe7b23 100644 --- a/code/game/objects/structures/window.dm +++ b/code/game/objects/structures/window.dm @@ -424,6 +424,11 @@ /obj/structure/window/proc/is_fulltile() return fulltile +/obj/structure/window/is_between_turfs(var/turf/origin, var/turf/target) + if(fulltile) + return TRUE + return ..() + //This proc is used to update the icons of nearby windows. It should not be confused with update_nearby_tiles(), which is an atmos proc! /obj/structure/window/proc/update_nearby_icons() update_icon() diff --git a/code/game/turfs/flooring/flooring.dm b/code/game/turfs/flooring/flooring.dm index d785a8f2d4..f26e4a3a2b 100644 --- a/code/game/turfs/flooring/flooring.dm +++ b/code/game/turfs/flooring/flooring.dm @@ -48,6 +48,75 @@ var/list/flooring_types var/is_plating = FALSE var/list/flooring_cache = list() // Cached overlays for our edges and corners and junk + //Plating types, can be overridden + var/plating_type = null + + //Resistance is subtracted from all incoming damage + //var/resistance = RESISTANCE_FRAGILE + + //Damage the floor can take before being destroyed + //var/health = 50 + + //var/removal_time = WORKTIME_FAST * 0.75 + + //Flooring Icon vars + var/smooth_nothing = FALSE //True/false only, optimisation + //If true, all smoothing logic is entirely skipped + + //The rest of these x_smooth vars use one of the following options + //SMOOTH_NONE: Ignore all of type + //SMOOTH_ALL: Smooth with all of type + //SMOOTH_WHITELIST: Ignore all except types on this list + //SMOOTH_BLACKLIST: Smooth with all except types on this list + //SMOOTH_GREYLIST: Objects only: Use both lists + + //How we smooth with other flooring + var/floor_smooth = SMOOTH_NONE + var/list/flooring_whitelist = list() //Smooth with nothing except the contents of this list + var/list/flooring_blacklist = list() //Smooth with everything except the contents of this list + + //How we smooth with walls + var/wall_smooth = SMOOTH_NONE + //There are no lists for walls at this time + + //How we smooth with space and openspace tiles + var/space_smooth = SMOOTH_NONE + //There are no lists for spaces + + /* + How we smooth with movable atoms + These are checked after the above turf based smoothing has been handled + SMOOTH_ALL or SMOOTH_NONE are treated the same here. Both of those will just ignore atoms + Using the white/blacklists will override what the turfs concluded, to force or deny smoothing + + Movable atom lists are much more complex, to account for many possibilities + Each entry in a list, is itself a list consisting of three items: + Type: The typepath to allow/deny. This will be checked against istype, so all subtypes are included + Priority: Used when items in two opposite lists conflict. The one with the highest priority wins out. + Vars: An associative list of variables (varnames in text) and desired values + Code will look for the desired vars on the target item and only call it a match if all desired values match + This can be used, for example, to check that objects are dense and anchored + there are no safety checks on this, it will probably throw runtimes if you make typos + + Common example: + Don't smooth with dense anchored objects except airlocks + + smooth_movable_atom = SMOOTH_GREYLIST + movable_atom_blacklist = list( + list(/obj, list("density" = TRUE, "anchored" = TRUE), 1) + ) + movable_atom_whitelist = list( + list(/obj/machinery/door/airlock, list(), 2) + ) + + */ + var/smooth_movable_atom = SMOOTH_NONE + var/list/movable_atom_whitelist = list() + var/list/movable_atom_blacklist = list() + +/decl/flooring/proc/get_plating_type(var/turf/T) + return plating_type + /decl/flooring/proc/get_flooring_overlay(var/cache_key, var/icon_base, var/icon_dir = 0, var/layer = ABOVE_TURF_LAYER) if(!flooring_cache[cache_key]) var/image/I = image(icon = icon, icon_state = icon_base, dir = icon_dir) diff --git a/code/game/turfs/simulated/floor.dm b/code/game/turfs/simulated/floor.dm index 238bbf085a..b5d9cf751b 100644 --- a/code/game/turfs/simulated/floor.dm +++ b/code/game/turfs/simulated/floor.dm @@ -61,8 +61,8 @@ old_decals = current_decals /turf/simulated/floor/proc/set_flooring(var/decl/flooring/newflooring, var/initializing) - make_plating(defer_icon_update = 1) - if(!flooring && !initializing) // Plating -> Flooring + //make_plating(defer_icon_update = 1) + if(is_plating() && !initializing) // Plating -> Flooring swap_decals() flooring = newflooring footstep_sounds = newflooring.footstep_sounds @@ -81,11 +81,15 @@ icon_state = base_icon_state footstep_sounds = base_footstep_sounds - if(flooring) // Flooring -> Plating + if(!is_plating()) // Flooring -> Plating swap_decals() if(flooring.build_type && place_product) new flooring.build_type(src) - flooring = null + var/newtype = flooring.get_plating_type() + if(newtype) // Has a custom plating type to become + set_flooring(get_flooring_data(newtype)) + else + flooring = null set_light(0) broken = null diff --git a/code/game/turfs/simulated/floor_attackby.dm b/code/game/turfs/simulated/floor_attackby.dm index 624cad36cd..df13c2162c 100644 --- a/code/game/turfs/simulated/floor_attackby.dm +++ b/code/game/turfs/simulated/floor_attackby.dm @@ -53,7 +53,7 @@ break return - if(flooring && !flooring.is_plating) + if(!is_plating()) if(istype(C, /obj/item/weapon)) try_deconstruct_tile(C, user) return @@ -64,7 +64,6 @@ try_replace_tile(C, user) return else - if(istype(C, /obj/item/stack/cable_coil)) if(broken || burnt) to_chat(user, "This section is too damaged to support anything. Use a welder to fix the damage.") @@ -94,7 +93,7 @@ // Stay still and focus... if(use_flooring.build_time && !do_after(user, use_flooring.build_time)) return - if(flooring || !S || !user || !use_flooring) + if(!is_plating() || !S || !user || !use_flooring) return if(S.use(use_flooring.build_cost)) set_flooring(use_flooring) diff --git a/code/game/turfs/simulated/floor_icon.dm b/code/game/turfs/simulated/floor_icon.dm index 67ba62e104..e82edc294d 100644 --- a/code/game/turfs/simulated/floor_icon.dm +++ b/code/game/turfs/simulated/floor_icon.dm @@ -36,7 +36,7 @@ var/image/no_ceiling_image = null if(flooring.flags & TURF_HAS_EDGES) for(var/step_dir in cardinal) var/turf/simulated/floor/T = get_step(src, step_dir) - if(!test_link(T)) + if(!flooring.test_link(src, T)) has_border |= step_dir add_overlay(flooring.get_flooring_overlay("[flooring.icon_base]-edge-[step_dir]", "[flooring.icon_base]_edges", step_dir)) @@ -55,19 +55,19 @@ var/image/no_ceiling_image = null //Like above but checking for NO similar bits rather than both similar bits. if((has_border & NORTHEAST) == 0) //Are connected NORTH and EAST var/turf/simulated/floor/T = get_step(src, NORTHEAST) - if(!test_link(T)) //But not NORTHEAST + if(!flooring.test_link(src, T)) //But not NORTHEAST add_overlay(flooring.get_flooring_overlay("[flooring.icon_base]-corner-[NORTHEAST]", "[flooring.icon_base]_corners", NORTHEAST)) if((has_border & NORTHWEST) == 0) var/turf/simulated/floor/T = get_step(src, NORTHWEST) - if(!test_link(T)) + if(!flooring.test_link(src, T)) add_overlay(flooring.get_flooring_overlay("[flooring.icon_base]-corner-[NORTHWEST]", "[flooring.icon_base]_corners", NORTHWEST)) if((has_border & SOUTHEAST) == 0) var/turf/simulated/floor/T = get_step(src, SOUTHEAST) - if(!test_link(T)) + if(!flooring.test_link(src, T)) add_overlay(flooring.get_flooring_overlay("[flooring.icon_base]-corner-[SOUTHEAST]", "[flooring.icon_base]_corners", SOUTHEAST)) if((has_border & SOUTHWEST) == 0) var/turf/simulated/floor/T = get_step(src, SOUTHWEST) - if(!test_link(T)) + if(!flooring.test_link(src, T)) add_overlay(flooring.get_flooring_overlay("[flooring.icon_base]-corner-[SOUTHWEST]", "[flooring.icon_base]_corners", SOUTHWEST)) // Re-apply floor decals @@ -129,6 +129,158 @@ var/image/no_ceiling_image = null return S return null +//Tests whether this flooring will smooth with the specified turf +//You can override this if you want a flooring to have super special snowflake smoothing behaviour +/decl/flooring/proc/test_link(var/turf/origin, var/turf/T, var/countercheck = FALSE) + + var/is_linked = FALSE + if (countercheck) + //If this is a countercheck, we skip all of the above, start off with true, and go straight to the atom lists + is_linked = TRUE + else if(T) + + //If it's a wall, use the wall_smooth setting + if(istype(T, /turf/simulated/wall)) + if(wall_smooth == SMOOTH_ALL) + is_linked = TRUE + + //If it's space or openspace, use the space_smooth setting + else if(isspace(T) || isopenspace(T)) + if(space_smooth == SMOOTH_ALL) + is_linked = TRUE + + //If we get here then its a normal floor + else if (istype(T, /turf/simulated/floor)) + var/turf/simulated/floor/t = T + //If the floor is the same as us,then we're linked, + if (t.flooring?.type == type) + is_linked = TRUE + /* + But there's a caveat. To make atom black/whitelists work correctly, we also need to check that + they smooth with us. Ill call this counterchecking for simplicity. + This is needed to make both turfs have the correct borders + + To prevent infinite loops we have a countercheck var, which we'll set true + */ + + if (smooth_movable_atom != SMOOTH_NONE) + //We do the countercheck, passing countercheck as true + is_linked = test_link(T, origin, countercheck = TRUE) + + else if (floor_smooth == SMOOTH_ALL) + is_linked = TRUE + + else if (floor_smooth != SMOOTH_NONE) + //If we get here it must be using a whitelist or blacklist + if (floor_smooth == SMOOTH_WHITELIST) + for (var/v in flooring_whitelist) + if (istype(t.flooring, v)) + //Found a match on the list + is_linked = TRUE + break + else if(floor_smooth == SMOOTH_BLACKLIST) + is_linked = TRUE //Default to true for the blacklist, then make it false if a match comes up + for (var/v in flooring_whitelist) + if (istype(t.flooring, v)) + //Found a match on the list + is_linked = FALSE + break + + //Alright now we have a preliminary answer about smoothing, however that answer may change with the following + //Atom lists! + var/best_priority = -1 + //A white or blacklist entry will only override smoothing if its priority is higher than this + //And then this value becomes its priority + if (smooth_movable_atom != SMOOTH_NONE) + if (smooth_movable_atom == SMOOTH_WHITELIST || smooth_movable_atom == SMOOTH_GREYLIST) + for (var/list/v in movable_atom_whitelist) + var/d_type = v[1] + var/list/d_vars = v[2] + var/d_priority = v[3] + //Priority is the quickest thing to check first + if (d_priority <= best_priority) + continue + + //Ok, now we start testing all the atoms in the target turf + for (var/a in T) //No implicit typecasting here, faster + + if (istype(a, d_type)) + //It's the right type, so we're sure it will have the vars we want. + + var/atom/movable/AM = a + //Typecast it to a movable atom + //Lets make sure its in the way before we consider it + if (!AM.is_between_turfs(origin, T)) + continue + + //From here on out, we do dangerous stuff that may runtime if the coder screwed up + + + var/match = TRUE + for (var/d_var in d_vars) + //For each variable we want to check + if (AM.vars[d_var] != d_vars[d_var]) + //We get a var of the same name from the atom's vars list. + //And check if it equals our desired value + match = FALSE + break //If any var doesn't match the desired value, then this atom is not a match, move on + + + if (match) + //If we've successfully found an atom which matches a list entry + best_priority = d_priority //This one is king until a higher priority overrides it + + //And this is a whitelist, so this match forces is_linked to true + is_linked = TRUE + + + if (smooth_movable_atom == SMOOTH_BLACKLIST || smooth_movable_atom == SMOOTH_GREYLIST) + //All of this blacklist code is copypasted from above, with only minor name changes + for (var/list/v in movable_atom_blacklist) + var/d_type = v[1] + var/list/d_vars = v[2] + var/d_priority = v[3] + //Priority is the quickest thing to check first + if (d_priority <= best_priority) + continue + + //Ok, now we start testing all the atoms in the target turf + for (var/a in T) //No implicit typecasting here, faster + + if (istype(a, d_type)) + //It's the right type, so we're sure it will have the vars we want. + + var/atom/movable/AM = a + //Typecast it to a movable atom + //Lets make sure its in the way before we consider it + if (!AM.is_between_turfs(origin, T)) + continue + + //From here on out, we do dangerous stuff that may runtime if the coder screwed up + + var/match = TRUE + for (var/d_var in d_vars) + //For each variable we want to check + if (AM.vars[d_var] != d_vars[d_var]) + //We get a var of the same name from the atom's vars list. + //And check if it equals our desired value + match = FALSE + break //If any var doesn't match the desired value, then this atom is not a match, move on + + + if (match) + //If we've successfully found an atom which matches a list entry + best_priority = d_priority //This one is king until a higher priority overrides it + + //And this is a blacklist, so this match forces is_linked to false + is_linked = FALSE + + return is_linked + +/turf/simulated/floor/proc/get_flooring_overlay(var/cache_key, var/icon_base, var/icon_dir = 0) + if(!flooring_cache[cache_key]) + var/image/I = image(icon = flooring.icon, icon_state = icon_base, dir = icon_dir) + I.layer = layer + flooring_cache[cache_key] = I + return flooring_cache[cache_key] -/turf/simulated/floor/proc/test_link(var/turf/simulated/floor/them) - return (istype(them) && them.flooring?.name == src.flooring.name) diff --git a/code/game/turfs/simulated/floor_types_eris.dm b/code/game/turfs/simulated/floor_types_eris.dm index 5c1d3cba3e..3a4fdfaf76 100644 --- a/code/game/turfs/simulated/floor_types_eris.dm +++ b/code/game/turfs/simulated/floor_types_eris.dm @@ -14,13 +14,28 @@ build_type = /obj/item/stack/tile/floor/eris can_paint = 1 + plating_type = /decl/flooring/reinforced/plating/under + + floor_smooth = SMOOTH_WHITELIST + flooring_whitelist = list( + /decl/flooring/reinforced/plating/under + ) + + smooth_movable_atom = SMOOTH_GREYLIST + movable_atom_whitelist = list( + list(/obj/machinery/door/airlock, list(), 1) // Smooth Eris floors with airlocks + ) + movable_atom_blacklist = list( + list(/obj/machinery/door/airlock/maintenance, list(), 2), // But not maintenance airlocks + list(/obj/structure/window, list("anchored" = TRUE, "fulltile" = TRUE), 2) // Don't blend under full windows + ) + /decl/flooring/tiling/eris/steel name = "steel floor" icon_base = "tiles" icon = 'icons/turf/flooring/eris/tiles_steel.dmi' build_type = /obj/item/stack/tile/floor/eris/steel - //footstep_sound = "floor" - + /decl/flooring/tiling/eris/steel/panels icon_base = "panels" build_type = /obj/item/stack/tile/floor/eris/steel/panels @@ -86,16 +101,22 @@ name = "flat bar floor" icon_base = "bar_flat" build_type = /obj/item/stack/tile/floor/eris/steel/bar_flat + floor_smooth = SMOOTH_NONE + smooth_movable_atom = SMOOTH_NONE /decl/flooring/tiling/eris/steel/bar_dance name = "dancefloor" icon_base = "bar_dance" build_type = /obj/item/stack/tile/floor/eris/steel/bar_dance + floor_smooth = SMOOTH_NONE + smooth_movable_atom = SMOOTH_NONE /decl/flooring/tiling/eris/steel/bar_light name = "lit bar floor" icon_base = "bar_light" build_type = /obj/item/stack/tile/floor/eris/steel/bar_light + floor_smooth = SMOOTH_NONE + smooth_movable_atom = SMOOTH_NONE /decl/flooring/tiling/eris/white name = "white floor" @@ -169,7 +190,6 @@ icon_base = "tiles" icon = 'icons/turf/flooring/eris/tiles_dark.dmi' build_type = /obj/item/stack/tile/floor/eris/dark - //footstep_sound = "floor" /decl/flooring/tiling/eris/dark/panels icon_base = "panels" @@ -237,36 +257,40 @@ icon_base = "cafe" icon = 'icons/turf/flooring/eris/tiles.dmi' build_type = /obj/item/stack/tile/floor/eris/cafe - //footstep_sound = "floor" + floor_smooth = SMOOTH_NONE + smooth_movable_atom = SMOOTH_NONE /decl/flooring/tiling/eris/techmaint name = "techmaint floor" icon_base = "techmaint" icon = 'icons/turf/flooring/eris/tiles_maint.dmi' build_type = /obj/item/stack/tile/floor/eris/techmaint - //footstep_sound = "floor" + floor_smooth = SMOOTH_NONE + smooth_movable_atom = SMOOTH_NONE /decl/flooring/tiling/eris/techmaint_perforated name = "techmaint floor" icon_base = "techmaint_perforated" icon = 'icons/turf/flooring/eris/tiles_maint.dmi' build_type = /obj/item/stack/tile/floor/eris/techmaint/perforated - //footstep_sound = "floor" + floor_smooth = SMOOTH_NONE + smooth_movable_atom = SMOOTH_NONE /decl/flooring/tiling/eris/techmaint_panels name = "techmaint floor" icon_base = "techmaint_panels" icon = 'icons/turf/flooring/eris/tiles_maint.dmi' build_type = /obj/item/stack/tile/floor/eris/techmaint/panels - //footstep_sound = "floor" + floor_smooth = SMOOTH_NONE + smooth_movable_atom = SMOOTH_NONE /decl/flooring/tiling/eris/techmaint_cargo name = "techmaint floor" icon_base = "techmaint_cargo" icon = 'icons/turf/flooring/eris/tiles_maint.dmi' build_type = /obj/item/stack/tile/floor/eris/techmaint/cargo - //footstep_sound = "floor" - + floor_smooth = SMOOTH_NONE + smooth_movable_atom = SMOOTH_NONE /////////////////////// /// TILE OBJS /////// @@ -875,8 +899,8 @@ is_plating = TRUE //build_type = /obj/item/stack/material/steel - /* Eris features we lack on flooring decls plating_type = /decl/flooring/reinforced/plating/under + /* footstep_sound = "plating" space_smooth = FALSE removal_time = 150 @@ -910,10 +934,16 @@ has_base_range = 0 is_plating = TRUE + floor_smooth = SMOOTH_WHITELIST + flooring_whitelist = list( + /decl/flooring/tiling/eris + ) + + plating_type = null + //build_type = /obj/item/stack/material/underplating /* Eris features we lack on flooring decls - plating_type = /decl/flooring/reinforced/plating/hull removal_time = 250 health = 200 resistance = RESISTANCE_ARMOURED From 12af6afc9b58040b086ed3e4f533fffe47bd48db Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Fri, 29 May 2020 14:54:11 -0400 Subject: [PATCH 32/38] Alter playsound paradigm --- .../technomancer/spells/audible_deception.dm | 2 +- .../structures/crates_lockers/closets.dm | 25 +++++++++---------- code/modules/mob/living/carbon/carbon.dm | 12 ++++----- 3 files changed, 18 insertions(+), 21 deletions(-) diff --git a/code/game/gamemodes/technomancer/spells/audible_deception.dm b/code/game/gamemodes/technomancer/spells/audible_deception.dm index 21236e940f..1914b72f14 100644 --- a/code/game/gamemodes/technomancer/spells/audible_deception.dm +++ b/code/game/gamemodes/technomancer/spells/audible_deception.dm @@ -75,7 +75,7 @@ /obj/item/weapon/spell/audible_deception/on_ranged_cast(atom/hit_atom, mob/living/user) var/turf/T = get_turf(hit_atom) if(selected_sound && pay_energy(200)) - playsound(hit_atom, selected_sound, 80, 1, -1) + playsound(src, selected_sound, 80, 1, -1) adjust_instability(1) // Air Horn time. if(selected_sound == 'sound/items/AirHorn.ogg' && pay_energy(3800)) diff --git a/code/game/objects/structures/crates_lockers/closets.dm b/code/game/objects/structures/crates_lockers/closets.dm index 83e77f1570..9938173a2b 100644 --- a/code/game/objects/structures/crates_lockers/closets.dm +++ b/code/game/objects/structures/crates_lockers/closets.dm @@ -414,19 +414,18 @@ visible_message("\The [src] begins to shake violently!") - spawn(0) - breakout = 1 //can't think of a better way to do this right now. - for(var/i in 1 to (6*breakout_time * 2)) //minutes * 6 * 5seconds * 2 - if(!do_after(escapee, 50)) //5 seconds - breakout = 0 - return - if(!escapee || escapee.incapacitated() || escapee.loc != src) - breakout = 0 - return //closet/user destroyed OR user dead/unconcious OR user no longer in closet OR closet opened - //Perform the same set of checks as above for weld and lock status to determine if there is even still a point in 'resisting'... - if(!req_breakout()) - breakout = 0 - return + breakout = 1 //can't think of a better way to do this right now. + for(var/i in 1 to (6*breakout_time * 2)) //minutes * 6 * 5seconds * 2 + if(!do_after(escapee, 50)) //5 seconds + breakout = 0 + return + if(!escapee || escapee.incapacitated() || escapee.loc != src) + breakout = 0 + return //closet/user destroyed OR user dead/unconcious OR user no longer in closet OR closet opened + //Perform the same set of checks as above for weld and lock status to determine if there is even still a point in 'resisting'... + if(!req_breakout()) + breakout = 0 + return playsound(src, breakout_sound, 100, 1) animate_shake() diff --git a/code/modules/mob/living/carbon/carbon.dm b/code/modules/mob/living/carbon/carbon.dm index af0c7ec14b..61553b3ce4 100644 --- a/code/modules/mob/living/carbon/carbon.dm +++ b/code/modules/mob/living/carbon/carbon.dm @@ -32,18 +32,16 @@ ingested.clear_reagents() touching.clear_reagents() ..() - /* VOREStation Edit - Duplicated in our code /mob/living/carbon/Moved(atom/old_loc, direction, forced = FALSE) . = ..() - if(.) - if(src.nutrition && src.stat != 2) + if(src.nutrition && src.stat != 2) + adjust_nutrition(-DEFAULT_HUNGER_FACTOR / 10) + if(src.m_intent == "run") adjust_nutrition(-DEFAULT_HUNGER_FACTOR / 10) - if(src.m_intent == "run") - adjust_nutrition(-DEFAULT_HUNGER_FACTOR / 10) - if((FAT in src.mutations) && src.m_intent == "run" && src.bodytemperature <= 360) - src.bodytemperature += 2 + if((FAT in src.mutations) && src.m_intent == "run" && src.bodytemperature <= 360) + src.bodytemperature += 2 // Moving around increases germ_level faster if(germ_level < GERM_LEVEL_MOVE_CAP && prob(8)) From a7ddb2c0ef4b60d6759fefd99de70fe4c0c3c47e Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Fri, 29 May 2020 14:59:16 -0400 Subject: [PATCH 33/38] Update talon for more floor merging --- maps/tether/submaps/offmap/talon1.dmm | 122 +++++++++++++------------- maps/tether/submaps/offmap/talon2.dmm | 26 +++--- 2 files changed, 75 insertions(+), 73 deletions(-) diff --git a/maps/tether/submaps/offmap/talon1.dmm b/maps/tether/submaps/offmap/talon1.dmm index b98faa2fa0..6d3d9c431c 100644 --- a/maps/tether/submaps/offmap/talon1.dmm +++ b/maps/tether/submaps/offmap/talon1.dmm @@ -213,7 +213,7 @@ /obj/machinery/door/firedoor/glass{ dir = 2 }, -/turf/simulated/floor/tiled/eris/dark/monofloor, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/deckone/central_hallway) "bT" = ( /obj/structure/grille, @@ -266,7 +266,7 @@ pixel_y = 32 }, /obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, +/turf/simulated/floor/tiled/eris/steel, /area/talon/deckone/bridge_hallway) "cl" = ( /turf/simulated/wall, @@ -297,7 +297,7 @@ /obj/machinery/door/airlock/glass, /obj/machinery/door/firedoor/glass/talon, /obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/deckone/bridge_hallway) "cC" = ( /obj/structure/disposalpipe/segment{ @@ -363,7 +363,7 @@ /obj/machinery/door/airlock/maintenance/engi{ req_one_access = list(301) }, -/turf/simulated/floor/tiled/steel_grid, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/deckone/port_solar) "cQ" = ( /obj/structure/table/rack/shelf/steel, @@ -398,7 +398,7 @@ /obj/machinery/door/airlock/maintenance/engi{ req_one_access = list(301) }, -/turf/simulated/floor/tiled/steel_grid, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/deckone/starboard_solar) "da" = ( /obj/structure/table/standard, @@ -453,7 +453,7 @@ /obj/machinery/door/airlock/glass_security{ req_one_access = list(301) }, -/turf/simulated/floor/tiled/steel_grid, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/deckone/brig) "dL" = ( /turf/simulated/wall, @@ -561,7 +561,7 @@ /obj/machinery/door/window/brigdoor/eastleft{ req_access = list(301) }, -/turf/simulated/floor/tiled/dark, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/deckone/brig) "eq" = ( /obj/structure/cable/green{ @@ -617,7 +617,7 @@ dir = 4; icon_state = "pipe-s" }, -/turf/simulated/floor/tiled/steel_grid, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/deckone/brig) "ey" = ( /obj/structure/grille, @@ -637,7 +637,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/emblem/talon_big/center, -/turf/simulated/floor/tiled/eris/steel, +/turf/simulated/floor/tiled/steel_grid, /area/talon/deckone/central_hallway) "eI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -648,14 +648,14 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, +/turf/simulated/floor/tiled/eris/steel, /area/talon/deckone/bridge_hallway) "eS" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/blast/regular{ id = "talon_brigblast1" }, -/turf/simulated/floor/tiled/dark, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/deckone/brig) "eV" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -776,7 +776,7 @@ /area/talon/maintenance/deckone_port) "gc" = ( /obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/tiled/steel_grid, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/deckone/workroom) "gg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ @@ -813,7 +813,7 @@ dir = 4; icon_state = "pipe-s" }, -/turf/simulated/floor/tiled/steel_grid, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/deckone/workroom) "gs" = ( /obj/machinery/door/airlock/maintenance/common, @@ -963,7 +963,7 @@ /obj/machinery/door/airlock/maintenance/engi{ req_one_access = list(301) }, -/turf/simulated/floor/plating/eris/under, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/deckone/port_solar) "in" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -978,7 +978,7 @@ pixel_x = 0 }, /obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, +/turf/simulated/floor/tiled/eris/steel, /area/talon/deckone/bridge_hallway) "iq" = ( /obj/machinery/light/small{ @@ -1149,7 +1149,7 @@ dir = 8; icon_state = "talon_big" }, -/turf/simulated/floor/tiled/eris/steel, +/turf/simulated/floor/tiled/steel_grid, /area/talon/deckone/central_hallway) "jE" = ( /obj/effect/floor_decal/industrial/outline/yellow, @@ -1567,7 +1567,7 @@ }, /obj/machinery/door/firedoor/glass/talon, /obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/deckone/starboard_eng) "mF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ @@ -1661,7 +1661,7 @@ dir = 5; icon_state = "talon_big" }, -/turf/simulated/floor/tiled/eris/steel, +/turf/simulated/floor/tiled/steel_grid, /area/talon/deckone/central_hallway) "nv" = ( /obj/machinery/door/blast/regular/open{ @@ -1790,7 +1790,7 @@ dir = 4; icon_state = "talon_big" }, -/turf/simulated/floor/tiled/eris/steel, +/turf/simulated/floor/tiled/steel_grid, /area/talon/deckone/central_hallway) "pc" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ @@ -2177,7 +2177,7 @@ /obj/machinery/door/firedoor/glass{ dir = 2 }, -/turf/simulated/floor/tiled/eris/dark/monofloor, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/deckone/central_hallway) "tg" = ( /obj/effect/floor_decal/industrial/warning/dust/corner, @@ -2362,7 +2362,7 @@ icon_state = "2-4" }, /obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel, +/turf/simulated/floor/tiled/eris/steel, /area/talon/deckone/bridge_hallway) "uL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -2411,7 +2411,7 @@ req_access = list(301) }, /obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/tiled/steel_grid, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/deckone/medical) "vb" = ( /obj/structure/bed/chair/bay/chair{ @@ -2453,7 +2453,7 @@ pixel_y = -24 }, /obj/effect/floor_decal/emblem/talon_big, -/turf/simulated/floor/tiled/eris/steel, +/turf/simulated/floor/tiled/steel_grid, /area/talon/deckone/central_hallway) "vw" = ( /turf/simulated/floor/tiled/eris/steel, @@ -2976,7 +2976,7 @@ /obj/machinery/door/airlock/maintenance/engi{ req_one_access = list(301) }, -/turf/simulated/floor/plating/eris/under, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/deckone/starboard_solar) "AI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux, @@ -3045,7 +3045,7 @@ /obj/machinery/door/airlock/glass_medical{ req_one_access = list(301) }, -/turf/simulated/floor/tiled/steel_grid, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/deckone/medical) "Bq" = ( /obj/structure/cable/green{ @@ -3319,7 +3319,7 @@ req_one_access = list(301) }, /obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/tiled/steel_grid, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/deckone/port_eng) "Ea" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -3335,7 +3335,7 @@ req_one_access = list(301) }, /obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/eris/white/gray_platform, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/deckone/bridge_hallway) "Ec" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ @@ -3424,6 +3424,7 @@ /obj/structure/sign/department/bridge{ pixel_y = 31 }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/eris/white/gray_platform, /area/talon/deckone/bridge_hallway) "ES" = ( @@ -3483,7 +3484,7 @@ dir = 4; icon_state = "pipe-s" }, -/turf/simulated/floor/tiled/steel_grid, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/deckone/medical) "FA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3622,7 +3623,7 @@ /area/talon/deckone/starboard_eng) "GJ" = ( /obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/tiled/steel_grid, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/deckone/medical) "GK" = ( /obj/structure/table/standard, @@ -3706,15 +3707,13 @@ /area/talon/deckone/brig) "HQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/eris/white/gray_platform, /area/talon/deckone/bridge_hallway) "HW" = ( @@ -3766,7 +3765,7 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, -/obj/effect/catwalk_plated/dark, +/obj/effect/catwalk_plated, /turf/simulated/floor/plating/eris/under, /area/talon/deckone/bridge_hallway) "Ij" = ( @@ -3810,7 +3809,7 @@ dir = 1; icon_state = "talon_big" }, -/turf/simulated/floor/tiled/eris/steel, +/turf/simulated/floor/tiled/steel_grid, /area/talon/deckone/central_hallway) "II" = ( /obj/structure/cable/green{ @@ -4011,7 +4010,7 @@ /obj/machinery/door/firedoor/glass{ dir = 2 }, -/turf/simulated/floor/tiled/eris/dark/monofloor, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/deckone/central_hallway) "JY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux, @@ -4111,7 +4110,7 @@ /obj/machinery/door/firedoor/glass{ dir = 2 }, -/turf/simulated/floor/tiled/eris/dark/monofloor, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/deckone/central_hallway) "KI" = ( /obj/structure/cable/green{ @@ -4153,6 +4152,7 @@ /area/space) "KP" = ( /obj/structure/closet/emcloset, +/obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/eris/white/gray_platform, /area/talon/deckone/bridge_hallway) "La" = ( @@ -4216,7 +4216,7 @@ /obj/machinery/door/window/brigdoor/eastleft{ req_access = list(301) }, -/turf/simulated/floor/tiled/dark, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/deckone/brig) "Lz" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -4490,12 +4490,6 @@ }, /turf/simulated/floor/plating/eris/under, /area/shuttle/talonboat) -"Np" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/talon/deckone/bridge_hallway) "Ns" = ( /obj/structure/cable/green, /obj/machinery/power/apc/talon{ @@ -4580,7 +4574,7 @@ req_one_access = list(301) }, /obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/tiled/steel_grid, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/deckone/port_eng_store) "Of" = ( /obj/structure/barricade, @@ -4624,7 +4618,6 @@ /turf/simulated/floor/tiled/eris/dark/brown_perforated, /area/talon/deckone/port_eng) "OQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -4634,6 +4627,9 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/tiled/eris/white/gray_platform, /area/talon/deckone/bridge_hallway) "OS" = ( @@ -4682,7 +4678,7 @@ /obj/machinery/door/firedoor/glass{ dir = 2 }, -/turf/simulated/floor/tiled/eris/dark/monofloor, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/deckone/central_hallway) "PF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ @@ -4767,7 +4763,7 @@ /obj/machinery/door/firedoor/glass{ dir = 2 }, -/turf/simulated/floor/tiled/eris/dark/monofloor, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/deckone/central_hallway) "QC" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -4920,7 +4916,7 @@ dir = 9; icon_state = "talon_big" }, -/turf/simulated/floor/tiled/eris/steel, +/turf/simulated/floor/tiled/steel_grid, /area/talon/deckone/central_hallway) "SE" = ( /obj/machinery/recharger/wallcharger{ @@ -4954,7 +4950,7 @@ /obj/machinery/door/firedoor/glass{ dir = 2 }, -/turf/simulated/floor/tiled/eris/dark/monofloor, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/deckone/central_hallway) "SO" = ( /obj/machinery/light/small, @@ -5026,7 +5022,7 @@ req_one_access = list(301) }, /obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/eris/white/gray_platform, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/deckone/bridge) "Ts" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -5208,7 +5204,7 @@ dir = 6; icon_state = "talon_big" }, -/turf/simulated/floor/tiled/eris/steel, +/turf/simulated/floor/tiled/steel_grid, /area/talon/deckone/central_hallway) "UG" = ( /obj/machinery/door/airlock/maintenance/medical{ @@ -5265,7 +5261,7 @@ /obj/machinery/door/blast/regular{ id = "talon_brigblast2" }, -/turf/simulated/floor/tiled/dark, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/deckone/brig) "UU" = ( /obj/machinery/power/pointdefense{ @@ -5323,7 +5319,7 @@ dir = 10; icon_state = "talon_big" }, -/turf/simulated/floor/tiled/eris/steel, +/turf/simulated/floor/tiled/steel_grid, /area/talon/deckone/central_hallway) "Vf" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ @@ -5333,8 +5329,8 @@ /turf/simulated/floor/hull/airless, /area/talon/maintenance/deckone_port_fore_wing) "Vj" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, /turf/simulated/floor/tiled/eris/white/gray_platform, /area/talon/deckone/bridge_hallway) @@ -5648,7 +5644,7 @@ req_one_access = list(301) }, /obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/tiled/steel_grid, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/deckone/starboard_eng_store) "Ym" = ( /obj/machinery/light/small{ @@ -5746,6 +5742,12 @@ }, /turf/simulated/floor/tiled/eris/dark/cyancorner, /area/talon/deckone/starboard_solar) +"Zi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/talon/deckone/bridge_hallway) "Zj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal, /turf/simulated/floor/tiled/eris/dark/brown_perforated, @@ -15839,9 +15841,9 @@ cC zy ac ER -iP +Zi UV -Np +iP JP bQ bV @@ -18416,7 +18418,7 @@ rm Ru Ru Ru -we +Ru Ru Ru Ru @@ -18558,7 +18560,7 @@ Ru Ru Ru Ru -Ru +we Ru Ru Ru diff --git a/maps/tether/submaps/offmap/talon2.dmm b/maps/tether/submaps/offmap/talon2.dmm index b4331dabbc..76bddbccbb 100644 --- a/maps/tether/submaps/offmap/talon2.dmm +++ b/maps/tether/submaps/offmap/talon2.dmm @@ -587,7 +587,7 @@ /obj/machinery/door/firedoor/glass{ dir = 2 }, -/turf/simulated/floor/tiled/eris/dark/monofloor, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/decktwo/central_hallway) "cE" = ( /obj/structure/railing, @@ -1295,7 +1295,7 @@ name = "Talon Secure Airlock"; req_one_access = list(301) }, -/turf/simulated/floor/tiled/steel_grid, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/decktwo/cap_room) "fZ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -1848,7 +1848,7 @@ /obj/machinery/door/firedoor/glass{ dir = 2 }, -/turf/simulated/floor/tiled/eris/dark/monofloor, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/decktwo/central_hallway) "mh" = ( /obj/structure/disposalpipe/segment, @@ -2092,7 +2092,7 @@ dir = 2 }, /obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/tiled/steel_grid, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/decktwo/bar) "oX" = ( /obj/structure/cable/heavyduty{ @@ -2177,7 +2177,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/eris/dark/monofloor, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/decktwo/central_hallway) "qb" = ( /obj/machinery/atmospherics/pipe/simple/visible/supply{ @@ -2521,13 +2521,13 @@ "uA" = ( /obj/machinery/door/firedoor/glass/talon, /obj/machinery/door/airlock, -/turf/simulated/floor/tiled/eris/steel, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/decktwo/central_hallway) "uJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/eris/dark/monofloor, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/decktwo/central_hallway) "uL" = ( /obj/structure/cable/green{ @@ -3652,7 +3652,7 @@ name = "Talon Secure Airlock"; req_one_access = list(301) }, -/turf/simulated/floor/tiled/steel_grid, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/decktwo/cap_room) "Lo" = ( /obj/structure/catwalk, @@ -3760,7 +3760,7 @@ dir = 4; icon_state = "pipe-s" }, -/turf/simulated/floor/tiled/steel_grid, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/decktwo/bar) "Np" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -4109,7 +4109,7 @@ /obj/machinery/door/firedoor/glass{ dir = 2 }, -/turf/simulated/floor/tiled/eris/dark/monofloor, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/decktwo/central_hallway) "Sb" = ( /obj/machinery/power/pointdefense{ @@ -4356,7 +4356,7 @@ icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/eris/dark/monofloor, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/decktwo/central_hallway) "Vu" = ( /obj/structure/grille, @@ -4392,7 +4392,7 @@ /obj/machinery/door/airlock/glass, /obj/machinery/door/firedoor/glass/talon, /obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/eris/steel, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/decktwo/central_hallway) "VV" = ( /obj/structure/disposalpipe/segment{ @@ -4516,7 +4516,7 @@ "XU" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/eris/dark/monofloor, +/turf/simulated/floor/tiled/eris/techmaint_panels, /area/talon/decktwo/central_hallway) "XY" = ( /obj/structure/cable/green{ From 75028a6e92ea67e7ee6c94661119ad458db3bbab Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Fri, 29 May 2020 15:43:26 -0400 Subject: [PATCH 34/38] Fix pet peeve firelock placement --- maps/tether/tether-02-surface2.dmm | 229 +++++++++++++++++++++-------- maps/tether/tether-04-transit.dmm | 20 +-- 2 files changed, 181 insertions(+), 68 deletions(-) diff --git a/maps/tether/tether-02-surface2.dmm b/maps/tether/tether-02-surface2.dmm index 25ddefa9eb..8bfc856d9b 100644 --- a/maps/tether/tether-02-surface2.dmm +++ b/maps/tether/tether-02-surface2.dmm @@ -2687,17 +2687,6 @@ "age" = ( /turf/simulated/wall, /area/tether/surfacebase/north_staires_two) -"agf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/computer/guestpass{ - dir = 4; - pixel_x = -28; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/surface_two_hall) "agg" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, @@ -6702,18 +6691,6 @@ "aox" = ( /turf/simulated/floor/holofloor/tiled/dark, /area/tether/elevator) -"aoy" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/station_map{ - pixel_y = 32 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/surface_two_hall) "aoz" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 @@ -6922,10 +6899,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"aoV" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/surface_two_hall) "aoW" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -7629,12 +7602,6 @@ hard_corner = 1 }, /area/tether/elevator) -"aqo" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/surface_two_hall) "aqp" = ( /obj/effect/floor_decal/borderfloor/corner, /turf/simulated/floor/tiled/techmaint, @@ -7792,15 +7759,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/surface_two_hall) -"aqG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/camera/network/tether{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/surface_two_hall) "aqH" = ( /obj/machinery/shieldwallgen, /obj/effect/floor_decal/industrial/outline/yellow, @@ -28378,6 +28336,10 @@ /obj/random/cutout, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) +"bvS" = ( +/obj/machinery/door/firedoor/glass/hidden, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "ceC" = ( /obj/structure/catwalk, /obj/machinery/light/small{ @@ -28475,6 +28437,26 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/mining) +"emJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass/hidden, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "exx" = ( /obj/structure/cable/green{ d1 = 4; @@ -28489,6 +28471,12 @@ }, /turf/simulated/floor, /area/maintenance/lower/security) +"eXR" = ( +/obj/machinery/door/firedoor/glass/hidden{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "fGk" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -28553,6 +28541,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/mining) +"gjq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass/hidden{ + dir = 2 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "gDW" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -28581,6 +28577,13 @@ /obj/structure/disposalpipe/segment, /turf/simulated/open, /area/maintenance/lower/bar) +"isi" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass/hidden{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "iwn" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -28650,6 +28653,15 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/drone_fabrication) +"jfi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "jfF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -28684,6 +28696,39 @@ /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/plating, /area/tether/surfacebase/north_staires_two) +"ksZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) +"ktW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -28; + pixel_y = 0 + }, +/obj/machinery/door/firedoor/glass/hidden, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "kuw" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ @@ -28758,6 +28803,18 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/bar) +"maZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, +/obj/machinery/door/firedoor/glass/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "msI" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, @@ -28792,6 +28849,19 @@ /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /turf/simulated/floor/plating, /area/maintenance/lower/north) +"mLQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass/hidden, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "nGX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -29036,6 +29106,21 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_staires_two) +"pwQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "pGt" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable{ @@ -29080,6 +29165,16 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/north) +"qrg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/camera/network/tether{ + dir = 5 + }, +/obj/machinery/door/firedoor/glass/hidden, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "qNo" = ( /obj/structure/cable{ icon_state = "16-0" @@ -29175,6 +29270,18 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) +"tIb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/station_map{ + pixel_y = 32 + }, +/obj/machinery/door/firedoor/glass/hidden{ + dir = 2 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "tKq" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -29330,6 +29437,12 @@ /obj/structure/catwalk, /turf/simulated/floor/tiled/techfloor/grid, /area/tether/surfacebase/surface_two_hall) +"wQg" = ( +/obj/machinery/door/firedoor/glass/hidden{ + dir = 2 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "wRZ" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -39296,10 +39409,10 @@ ajy ajy aii adY -aoy -aoV -aoV -aqo +tIb +bvS +bvS +eXR aqZ arG asA @@ -40412,7 +40525,7 @@ adY afa iIV afV -agf +ktW aRV agG afV @@ -40432,7 +40545,7 @@ afV ans agG afV -aRV +qrg apd apJ afG @@ -40554,7 +40667,7 @@ iJj kDh cZo afW -agg +isi agg agg agg @@ -40574,7 +40687,7 @@ ajB ajB ajB ajB -ajB +gjq ajB hCD nVB @@ -40696,7 +40809,7 @@ pGt pUx xUz afX -agh +ksZ agh agh agh @@ -40716,7 +40829,7 @@ aia aia aia aia -aia +pwQ ape apM aqw @@ -43252,7 +43365,7 @@ aOQ ldx nQX cIm -uin +mLQ iwn pbf pbf @@ -43272,7 +43385,7 @@ svN bcC nUt nUt -nUt +emJ iGv nGX aqE @@ -43394,7 +43507,7 @@ adY aft afL afG -afG +eXR gDW afG afG @@ -43414,7 +43527,7 @@ afL afG afG afG -afG +wQg afG jfF aqD @@ -43536,7 +43649,7 @@ adY afu afM uoL -aqG +maZ agz agH agR @@ -43556,7 +43669,7 @@ asB afG anu jnL -afM +jfi aiE apP aSL diff --git a/maps/tether/tether-04-transit.dmm b/maps/tether/tether-04-transit.dmm index 484985d747..c9d69a263b 100644 --- a/maps/tether/tether-04-transit.dmm +++ b/maps/tether/tether-04-transit.dmm @@ -125,7 +125,7 @@ /area/tether/midpoint) "l" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass/hidden/steel{ +/obj/machinery/door/firedoor/glass/hidden{ dir = 2 }, /turf/simulated/floor/tiled/dark, @@ -150,6 +150,13 @@ /obj/structure/table/woodentable, /turf/simulated/floor/wood, /area/tether/midpoint) +"o" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass/hidden{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/midpoint) "p" = ( /obj/machinery/light{ dir = 8; @@ -169,7 +176,7 @@ /area/tether/midpoint) "r" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/machinery/door/firedoor/glass/hidden, /turf/simulated/floor/tiled/dark, /area/tether/midpoint) "s" = ( @@ -444,13 +451,6 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/midpoint) -"W" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/midpoint) "X" = ( /obj/machinery/vending/coffee{ dir = 1 @@ -10358,7 +10358,7 @@ V l r r -W +o S X y From ac2b2f5f61d062de8e8fa791bfd48156a96a4cb5 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Fri, 29 May 2020 15:34:28 -0400 Subject: [PATCH 35/38] Remove bloodspray when pulling standing people --- code/modules/mob/living/carbon/human/human.dm | 3 ++- code/modules/mob/living/living.dm | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 356dc87c94..2f091e3806 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -1665,7 +1665,8 @@ // Drag damage is handled in a parent /mob/living/carbon/human/dragged(var/mob/living/dragger, var/oldloc) - if(prob(getBruteLoss() * 200 / maxHealth)) + var/area/A = get_area(src) + if(lying && !buckled && A.has_gravity() && prob(getBruteLoss() * 200 / maxHealth)) var/bloodtrail = 1 if(species?.flags & NO_BLOOD) bloodtrail = 0 diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index be20cfc4d8..08d7a7ae8c 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -817,7 +817,7 @@ default behaviour is: /mob/living/proc/dragged(var/mob/living/dragger, var/oldloc) var/area/A = get_area(src) - if(lying && !buckled && pull_damage() && A.has_gravity && (prob(getBruteLoss() * 200 / maxHealth))) + if(lying && !buckled && pull_damage() && A.has_gravity() && (prob(getBruteLoss() * 200 / maxHealth))) adjustBruteLoss(2) visible_message("\The [src]'s [isSynthetic() ? "state" : "wounds"] worsen terribly from being dragged!") From 554ba9db25a2d7ae9c8d70867cf588464b20a62e Mon Sep 17 00:00:00 2001 From: Unknown Date: Fri, 29 May 2020 19:55:35 -0400 Subject: [PATCH 36/38] Fixes accessory slots for uniforms --- code/modules/clothing/suits/solgov.dm | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/code/modules/clothing/suits/solgov.dm b/code/modules/clothing/suits/solgov.dm index 500a62c126..a0bb547f3e 100644 --- a/code/modules/clothing/suits/solgov.dm +++ b/code/modules/clothing/suits/solgov.dm @@ -17,8 +17,8 @@ siemens_coefficient = 0.9 flags_inv = HIDEHOLSTER //VOREStation Add - These obviously do. allowed = list(/obj/item/weapon/tank/emergency/oxygen,/obj/item/device/flashlight,/obj/item/weapon/pen,/obj/item/clothing/head/soft,/obj/item/clothing/head/beret,/obj/item/weapon/storage/fancy/cigarettes,/obj/item/weapon/flame/lighter,/obj/item/device/taperecorder,/obj/item/device/analyzer,/obj/item/device/radio,/obj/item/taperoll) - valid_accessory_slots = list(ACCESSORY_SLOT_ARMBAND,ACCESSORY_SLOT_MEDAL,ACCESSORY_SLOT_INSIGNIA,ACCESSORY_SLOT_RANK,ACCESSORY_SLOT_DEPT) - restricted_accessory_slots = list(ACCESSORY_SLOT_ARMBAND) + valid_accessory_slots = (ACCESSORY_SLOT_ARMBAND|ACCESSORY_SLOT_MEDAL|ACCESSORY_SLOT_INSIGNIA|ACCESSORY_SLOT_RANK|ACCESSORY_SLOT_DEPT) + restricted_accessory_slots = (ACCESSORY_SLOT_ARMBAND) /obj/item/clothing/suit/storage/solgov/service/sifguard name = "\improper SifGuard jacket" @@ -187,8 +187,8 @@ armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0) siemens_coefficient = 0.9 allowed = list(/obj/item/weapon/tank/emergency/oxygen,/obj/item/device/flashlight,/obj/item/clothing/head/soft,/obj/item/clothing/head/beret,/obj/item/device/radio,/obj/item/weapon/pen) - valid_accessory_slots = list(ACCESSORY_SLOT_MEDAL,ACCESSORY_SLOT_RANK) - restricted_accessory_slots = list(ACCESSORY_SLOT_ARMBAND) + valid_accessory_slots = (ACCESSORY_SLOT_MEDAL|ACCESSORY_SLOT_RANK) + restricted_accessory_slots = (ACCESSORY_SLOT_ARMBAND) /obj/item/clothing/suit/storage/solgov/dress/sifguard name = "\improper SifGuard dress jacket" @@ -268,7 +268,7 @@ armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0) siemens_coefficient = 0.9 allowed = list(/obj/item/weapon/tank/emergency,/obj/item/device/flashlight,/obj/item/clothing/head/soft,/obj/item/clothing/head/beret,/obj/item/device/radio,/obj/item/weapon/pen) - valid_accessory_slots = list(ACCESSORY_SLOT_MEDAL,ACCESSORY_SLOT_RANK) + valid_accessory_slots = (ACCESSORY_SLOT_MEDAL|ACCESSORY_SLOT_RANK) /obj/item/clothing/suit/dress/solgov/fleet/sailor name = "fleet dress overwear" @@ -296,19 +296,19 @@ icon = 'icons/obj/clothing/suits_solgov.dmi' icon_override = 'icons/mob/suit_solgov.dmi' armor = list(melee = 25, bullet = 10, laser = 5, energy = 10, bomb = 20, bio = 0, rad = 10) - valid_accessory_slots = list(ACCESSORY_SLOT_INSIGNIA,ACCESSORY_SLOT_RANK) + valid_accessory_slots = (ACCESSORY_SLOT_INSIGNIA|ACCESSORY_SLOT_RANK) /obj/item/clothing/suit/storage/hooded/wintercoat/solgov/army name = "marine winter coat" icon_state = "coatar" armor = list(melee = 30, bullet = 10, laser = 10, energy = 15, bomb = 20, bio = 0, rad = 0) - valid_accessory_slots = list(ACCESSORY_SLOT_INSIGNIA,ACCESSORY_SLOT_RANK) + valid_accessory_slots = (ACCESSORY_SLOT_INSIGNIA|ACCESSORY_SLOT_RANK) /obj/item/clothing/suit/storage/hooded/wintercoat/solgov/fleet name = "fleet winter coat" icon_state = "coatfl" armor = list(melee = 20, bullet = 10, laser = 10, energy = 20, bomb = 20, bio = 0, rad = 10) - valid_accessory_slots = list(ACCESSORY_SLOT_INSIGNIA) + valid_accessory_slots = (ACCESSORY_SLOT_INSIGNIA) /obj/item/clothing/suit/storage/toggle/dress name = "clasped dress jacket" @@ -366,7 +366,7 @@ armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0) siemens_coefficient = 0.9 allowed = list(/obj/item/weapon/tank/emergency,/obj/item/device/flashlight,/obj/item/clothing/head/soft,/obj/item/clothing/head/beret,/obj/item/device/radio,/obj/item/weapon/pen) - valid_accessory_slots = list(ACCESSORY_SLOT_MEDAL,ACCESSORY_SLOT_RANK) + valid_accessory_slots = (ACCESSORY_SLOT_MEDAL|ACCESSORY_SLOT_RANK) /obj/item/clothing/suit/dress/terran/navy name = "ICCGN dress cloak" From 5a56f0627fd015362982979f3ef2fcdda845ff7e Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Fri, 29 May 2020 20:52:11 -0400 Subject: [PATCH 37/38] Make mapped in decals above auto-floor decals --- code/__defines/_planes+layers.dm | 1 + code/game/turfs/flooring/flooring_decals.dm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/code/__defines/_planes+layers.dm b/code/__defines/_planes+layers.dm index a8e3951a3e..c2d33e0726 100644 --- a/code/__defines/_planes+layers.dm +++ b/code/__defines/_planes+layers.dm @@ -67,6 +67,7 @@ What is the naming convention for planes or layers? #define UNDERWATER_LAYER 2.5 // Anything on this layer will render under the water layer. #define WATER_LAYER 3.0 // Layer for water overlays. #define ABOVE_TURF_LAYER 3.1 // Snow and wallmounted/floormounted equipment + #define TURF_DECAL_LAYER 3.2 // Mapped in floor decals, not automatic edges/corners #define DECAL_PLANE -44 // Permanent decals #define DIRTY_PLANE -43 // Nonpermanent decals #define BLOOD_PLANE -42 // Blood is really dirty, but we can do special stuff if we separate it diff --git a/code/game/turfs/flooring/flooring_decals.dm b/code/game/turfs/flooring/flooring_decals.dm index d6e36b30e2..c696303e00 100644 --- a/code/game/turfs/flooring/flooring_decals.dm +++ b/code/game/turfs/flooring/flooring_decals.dm @@ -29,7 +29,7 @@ var/list/floor_decals = list() var/image/I = floor_decals[cache_key] if(!I) I = image(icon = icon, icon_state = icon_state, dir = dir) - I.layer = T.layer + I.layer = TURF_DECAL_LAYER I.color = color I.alpha = alpha floor_decals[cache_key] = I From 41d82e3519fa49c79cabb107f540fe28849257e0 Mon Sep 17 00:00:00 2001 From: Verkister Date: Sat, 30 May 2020 12:10:18 +0300 Subject: [PATCH 38/38] Fixes R&D machines missing sprites Removes a vorestation edit made redundant by upstream updates. The _vr file had incorrect iconstates, causing at least protolathe to turn invisible when in use. --- code/modules/research/rdmachines.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/research/rdmachines.dm b/code/modules/research/rdmachines.dm index 5c33122815..5f58c50f3d 100644 --- a/code/modules/research/rdmachines.dm +++ b/code/modules/research/rdmachines.dm @@ -4,7 +4,7 @@ /obj/machinery/r_n_d name = "R&D Device" - icon = 'icons/obj/machines/research_vr.dmi' //VOREStation Edit - Replaced with Eris sprites + icon = 'icons/obj/machines/research.dmi' density = 1 anchored = 1 use_power = USE_POWER_IDLE @@ -40,4 +40,4 @@ return var/obj/item/stack/material/S = new sheetType(loc) S.amount = eject - materials[material] -= eject * perUnit \ No newline at end of file + materials[material] -= eject * perUnit