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/__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/datums/outfits/outfit_vr.dm b/code/datums/outfits/outfit_vr.dm
index 6ee68cf900..e262fba3b7 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/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/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/effects/decals/posters/voreposters_vr.dm b/code/game/objects/effects/decals/posters/voreposters_vr.dm
index 6f4935718d..afcf0ab108 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 NanoTrasen's security department. It wasn't very effective and just seems to be used as a warning sign."
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
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]." )
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/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/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/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 8608cb8ce1..f26e4a3a2b 100644
--- a/code/game/turfs/flooring/flooring.dm
+++ b/code/game/turfs/flooring/flooring.dm
@@ -45,6 +45,84 @@ 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
+ 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)
+ I.layer = layer
+ flooring_cache[cache_key] = I
+ return flooring_cache[cache_key]
/decl/flooring/grass
name = "grass"
diff --git a/code/game/turfs/flooring/flooring_decals.dm b/code/game/turfs/flooring/flooring_decals.dm
index 59c326c3d9..1cf193bb47 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
diff --git a/code/game/turfs/simulated/floor.dm b/code/game/turfs/simulated/floor.dm
index 89962bb15a..b5d9cf751b 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)
. = ..()
@@ -59,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
@@ -79,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
@@ -95,8 +101,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_attackby.dm b/code/game/turfs/simulated/floor_attackby.dm
index 70bc2646a2..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)
+ 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 5e332ca760..e82edc294d 100644
--- a/code/game/turfs/simulated/floor_icon.dm
+++ b/code/game/turfs/simulated/floor_icon.dm
@@ -36,39 +36,39 @@ 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(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))
+ 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))
- add_overlay(get_flooring_overlay("[flooring.icon_base]-corner-[NORTHWEST]", "[flooring.icon_base]_corners", NORTHWEST))
+ 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))
- add_overlay(get_flooring_overlay("[flooring.icon_base]-corner-[SOUTHEAST]", "[flooring.icon_base]_corners", SOUTHEAST))
+ 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))
- add_overlay(get_flooring_overlay("[flooring.icon_base]-corner-[SOUTHWEST]", "[flooring.icon_base]_corners", SOUTHWEST))
+ 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
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))
@@ -129,9 +129,153 @@ 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)
-/turf/simulated/floor/proc/test_link(var/turf/simulated/floor/them)
- return (istype(them) && them.flooring?.name == src.flooring.name)
+ 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])
diff --git a/code/game/turfs/simulated/floor_types_eris.dm b/code/game/turfs/simulated/floor_types_eris.dm
index f7ccae4511..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 ///////
@@ -872,11 +896,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
@@ -889,18 +913,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,14 +931,19 @@
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
+ 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
- is_plating = TRUE
removal_time = 250
health = 200
resistance = RESISTANCE_ARMOURED
@@ -928,8 +956,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
@@ -940,11 +971,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
@@ -972,6 +1003,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")
diff --git a/code/modules/client/client procs.dm b/code/modules/client/client procs.dm
index d72f6506af..95c6e829e4 100644
--- a/code/modules/client/client procs.dm
+++ b/code/modules/client/client procs.dm
@@ -333,8 +333,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
@@ -352,12 +351,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]")
@@ -529,3 +526,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)
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
diff --git a/code/modules/clothing/head/solgov_vr.dm b/code/modules/clothing/head/solgov_vr.dm
index a9b2ade781..925782f9dc 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 SolGov cap" //YW EDIT: SolGov
desc = "It's a blue ballcap in Solar Central Government colors." //YW EDIT: SolGov
-/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 USDF Fleet crest." //YW EDIT: TCG to USDF
-/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 USDF Fleet." //YW EDIT: TCG to USDF
-/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 USDF Marine Corps." //YW EDIT: TCG to USDF
+ desc = "A green utility cover bearing the crest of the USDF Marines." //YW EDIT: TCG to USDF
-/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 USDF Marine Corps." //YW EDIT: TCG to USDF
+ desc = "A tan utility cover bearing the crest of the USDF Marines." //YW EDIT: TCG to USDF
-/obj/item/clothing/head/utility/marine/green
- name = "green utility cover"
- desc = "A green utility cover bearing the crest of the USDF Marine Corps." //YW EDIT: TCG to USDF
-
-/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 USDF Marine Corps. This one has an officer's emblem." //YW EDIT: TCG to USDF
- 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 USDF Marines." //YW EDIT: TCG to USDF
//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 USDF Marine Corps crest." //YW EDIT: TCG to USDF
+ desc = "A green service uniform cover with an USDF Marine crest." //YW EDIT: TCG to USDF
-/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 USDF Marine Corps crest and gold stripe." //YW EDIT: TCG to USDF
+ desc = "A green service uniform cover with an USDF Marine crest and gold stripe." //YW EDIT: TCG to USDF
-/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 USDF Marine Corps." //YW EDIT: TCG to USDF
+ desc = "A green garrison cap belonging to the USDF Marine." //YW EDIT: TCG to USDF
-/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 USDF Marine Corps. This one has a gold pin." //YW EDIT: TCG to USDF
+ desc = "A green garrison cap belonging to the USDF Marine. This one has a gold pin." //YW EDIT: TCG to USDF
-/obj/item/clothing/head/service/marine/campaign
+/obj/item/clothing/head/service/army/campaign
name = "campaign cover"
- desc = "A green campaign cover with an USDF Marine Corps crest. Only found on the heads of Drill Instructors." //YW EDIT: TCG to USDF
- icon_state = "greendrill"
+ desc = "A green campaign cover with an USDF Marine crest. Only found on the heads of Drill Sergeants." //YW EDIT: TCG to USDF
//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 USDF Fleet crest." //YW EDIT: TCG to USDF
/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 USDF Fleet crest." //YW EDIT: TCG to USDF
-/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 USDF Marine Corps crest." //YW EDIT: TCG to USDF
+ desc = "A white dress uniform cover with an USDF Marine crest." //YW EDIT: TCG to USDF
-/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 USDF Marine Corps crest and gold stripe." //YW EDIT: TCG to USDF
-
-/obj/item/clothing/head/dress/marine/command/admiral
- name = "admiral's dress wheel cover"
- desc = "A white dress uniform cover with an USDF Navy crest and gold stripe." //YW EDIT: TCG to USDF
+ desc = "A white dress uniform cover with an USDF Marine crest and gold stripe." //YW EDIT: TCG to USDF
//Berets
-/obj/item/clothing/head/beret/sol
+/obj/item/clothing/head/beret/solgov
name = "peacekeeper beret"
- desc = "A beret in Solar Central Government colors. For peacekeepers that are more inclined towards style than safety." //YW EDIT: Terran Commonwealth to Solar Central Government
+ desc = "A beret in Solar Central Government colors. For peacekeepers that are more inclined towards style than safety." //YW EDIT: Terran Commonwealth to Solar Central Government
-/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 USDFDF Mars Central Command. For brass who are more inclined towards style than safety." //YW EDIT: TCGDF to USDFDF
+
+/obj/item/clothing/head/beret/solgov/stratcom
+ name = "\improper STRATCOM beret"
+ desc = "A grey beret with a silver insignia, denoting service in the USDFDF Strategic Command. For intelligence personnel who are more inclined towards style than safety." //YW EDIT: TCGDF to USDFDF
+
+/obj/item/clothing/head/beret/solgov/diplomatic
+ name = "diplomatic security beret"
+ desc = "A tan beret denoting service in the USDF Marines Diplomatic Security Group. For security personnel who are more inclined towards style than safety." //YW EDIT: TCG to USDF
+
+/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 USDF Fleet. For personnel that are more inclined towards style than safety." //YW EDIT: TCG to USDF
-/obj/item/clothing/head/beret/sol/fleet/security
+/obj/item/clothing/head/beret/solgov/fleet/security
name = "fleet security beret"
desc = "An USDF Fleet beret with a security crest. For personnel that are more inclined towards style than safety." //YW EDIT: TCG to USDF
-/obj/item/clothing/head/beret/sol/fleet/medical
+/obj/item/clothing/head/beret/solgov/fleet/medical
name = "fleet medical beret"
desc = "An USDF Fleet beret with a medical crest. For personnel that are more inclined towards style than safety." //YW EDIT: TCG to USDF
-/obj/item/clothing/head/beret/sol/fleet/engineering
+/obj/item/clothing/head/beret/solgov/fleet/engineering
name = "fleet engineering beret"
desc = "An USDF Fleet with an engineering crest. For personnel that are more inclined towards style than safety." //YW EDIT: TCG to USDF
-/obj/item/clothing/head/beret/sol/fleet/supply
+/obj/item/clothing/head/beret/solgov/fleet/supply
name = "fleet supply beret"
desc = "An USDF Fleet beret with a supply crest. For personnel that are more inclined towards style than safety." //YW EDIT: TCG to USDF
-/obj/item/clothing/head/beret/sol/fleet/command
+/obj/item/clothing/head/beret/solgov/fleet/service
+ name = "fleet service beret"
+ desc = "An USDF Fleet beret with a service crest. For personnel that are more inclined towards style than safety." //YW EDIT: TCG to USDF
+
+/obj/item/clothing/head/beret/solgov/fleet/exploration
+ name = "fleet exploration beret"
+ desc = "An USDF Fleet beret with an exploration crest. For personnel that are more inclined towards style than safety." //YW EDIT: TCG to USDF
+
+/obj/item/clothing/head/beret/solgov/fleet/command
name = "fleet command beret"
- desc = "An USDF Fleet beret with a command crest. For personnel that are more inclined towards style than safety." //YW EDIT: TCG to USDF
\ No newline at end of file
+ desc = "An USDF Fleet beret with a command crest. For personnel that are more inclined towards style than safety." //YW EDIT: TCG to USDF
+
+/obj/item/clothing/head/beret/solgov/fleet/dress
+ name = "fleet dress beret"
+ desc = "A white USDF Fleet beret. For personnel that are more inclined towards style than safety." //YW EDIT: TCG to USDF
+
+/obj/item/clothing/head/beret/solgov/fleet/dress/command
+ name = "fleet officer's dress beret"
+ desc = "A white USDF Fleet beret with a golden crest. For personnel that are more inclined towards style than safety." //YW EDIT: TCG to USDF
+
+/obj/item/clothing/head/beret/solgov/fleet/branch
+ name = "first fleet beret"
+ desc = "An USDF Fleet beret carrying insignia of First Fleet, the Sol Guard, stationed in Sol. For personnel that are more inclined towards style than safety." //YW EDIT: TCG to USDF
+ icon_state = "beret_navy_first"
+
+/obj/item/clothing/head/beret/solgov/fleet/branch/second
+ name = "second fleet beret"
+ desc = "An USDF 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." //YW EDIT: TCG to USDF
+
+/obj/item/clothing/head/beret/solgov/fleet/branch/third
+ name = "third fleet beret"
+ desc = "An USDF 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." //YW EDIT: TCG to USDF
+
+/obj/item/clothing/head/beret/solgov/fleet/branch/fourth
+ name = "fourth fleet beret"
+ desc = "An USDF Fleet beret carrying insignia of Fourth Fleet, stationed on Skrell border. For personnel that are more inclined towards style than safety." //YW EDIT: TCG to USDF
+
+/obj/item/clothing/head/beret/solgov/fleet/branch/fifth
+ name = "fifth fleet beret"
+ desc = "An USDF 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." //YW EDIT: TCG to USDF
+
+//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 USDF Fleet synthfur-lined hat for operating in cold environments." //YW EDIT: TCG to USDF
+
+/obj/item/clothing/head/ushanka/solgov/army
+ name = "marine fur hat"
+ desc = "An USDF Marine synthfur-lined hat for operating in cold environments." //YW EDIT: TCG to USDF
+
+/obj/item/clothing/head/ushanka/solgov/army/green
+ name = "green marine fur hat"
+ desc = "An USDF Marine synthfur-lined hat for operating in cold environments." //YW EDIT: TCG to USDF
+
+//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.dm b/code/modules/clothing/suits/solgov.dm
index 7b3b16f74f..a0bb547f3e 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
@@ -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"
@@ -263,12 +263,12 @@
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
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"
@@ -294,21 +294,21 @@
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)
+ 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"
@@ -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,12 +361,12 @@
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
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"
diff --git a/code/modules/clothing/suits/solgov_vr.dm b/code/modules/clothing/suits/solgov_vr.dm
index e1e0e2217d..06d9e9fa6f 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 USDF Fleet service jacket." //YW EDIT: TCG to USDF
-/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 USDF Fleet service jacket with silver cuffs." //YW EDIT: TCG to USDF
-/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 USDF Fleet dress jacket with silver accents." //YW EDIT: TCG to USDF
-/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 USDF Fleet dress jacket with gold accents." //YW EDIT: TCG to USDF
-/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 USDF Fleet dress jacket with red accents." //YW EDIT: TCG to USDF
-/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 USDF Marine Corps service coat. Green and undecorated." //YW EDIT: TCG to USDF
+ desc = "An USDF Marine service coat. Green and undecorated." //YW EDIT: TCG to USDF
-/obj/item/clothing/suit/storage/service/marine/medical
+/obj/item/clothing/suit/storage/solgov/service/army/medical
name = "marine medical jacket"
- desc = "An USDF Marine Corps service coat. This one has blue markings." //YW EDIT: TCG to USDF
+ desc = "An USDF Marine service coat. This one has blue markings." //YW EDIT: TCG to USDF
-/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 USDF Marine Corps service coat. This one has blue and gold markings." //YW EDIT: TCG to USDF
+ desc = "An USDF Marine service coat. This one has blue and gold markings." //YW EDIT: TCG to USDF
-/obj/item/clothing/suit/storage/service/marine/engineering
+/obj/item/clothing/suit/storage/solgov/service/army/engineering
name = "marine engineering jacket"
- desc = "An USDF Marine Corps service coat. This one has orange markings." //YW EDIT: TCG to USDF
+ desc = "An USDF Marine service coat. This one has orange markings." //YW EDIT: TCG to USDF
-/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 USDF Marine Corps service coat. This one has orange and gold markings." //YW EDIT: TCG to USDF
+ desc = "An USDF Marine service coat. This one has orange and gold markings." //YW EDIT: TCG to USDF
-/obj/item/clothing/suit/storage/service/marine/supply
+/obj/item/clothing/suit/storage/solgov/service/army/supply
name = "marine supply jacket"
- desc = "An USDF Marine Corps service coat. This one has brown markings." //YW EDIT: TCG to USDF
+ desc = "An USDF Marine service coat. This one has brown markings." //YW EDIT: TCG to USDF
-/obj/item/clothing/suit/storage/service/marine/security
+/obj/item/clothing/suit/storage/solgov/service/army/security
name = "marine security jacket"
- desc = "An USDF Marine Corps service coat. This one has red markings." //YW EDIT: TCG to USDF
+ desc = "An USDF Marine service coat. This one has red markings." //YW EDIT: TCG to USDF
-/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 USDF Marine Corps service coat. This one has red and gold markings." //YW EDIT: TCG to USDF
+ desc = "An USDF Marine service coat. This one has red and gold markings." //YW EDIT: TCG to USDF
-/obj/item/clothing/suit/storage/service/marine/command
+/obj/item/clothing/suit/storage/solgov/service/army/service
+ name = "marine service jacket"
+ desc = "An USDF Marine service coat. This one has green markings." //YW EDIT: TCG to USDF
+
+/obj/item/clothing/suit/storage/solgov/service/army/service/command
+ name = "marine service command jacket"
+ desc = "An USDF Marine service coat. This one has green and gold markings." //YW EDIT: TCG to USDF
+
+/obj/item/clothing/suit/storage/solgov/service/army/exploration
+ name = "marine exploration jacket"
+ desc = "An USDF Marine service coat. This one has purple markings." //YW EDIT: TCG to USDF
+
+/obj/item/clothing/suit/storage/solgov/service/army/exploration/command
+ name = "marine exploration command jacket"
+ desc = "An USDF Marine service coat. This one has purple and gold markings." //YW EDIT: TCG to USDF
+
+/obj/item/clothing/suit/storage/solgov/service/army/command
name = "marine command jacket"
desc = "An USDF Marine Corps service coat. This one has gold markings." //YW EDIT: TCG to USDF
-//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 USDF Fleet dress jacket. Don't get near pasta sauce or vox." //YW EDIT: TCG to USDF
+
+/obj/item/clothing/suit/storage/solgov/dress/fleet/snco
+ name = "fleet dress SNCO jacket"
+ desc = "A navy blue USDF Fleet dress jacket with silver cuffs. Don't get near pasta sauce or vox." //YW EDIT: TCG to USDF
+
+/obj/item/clothing/suit/storage/solgov/dress/fleet/officer
+ name = "fleet officer's dress jacket"
+ desc = "A navy blue USDF Fleet dress jacket with silver accents. Don't get near pasta sauce or vox." //YW EDIT: TCG to USDF
+
+/obj/item/clothing/suit/storage/solgov/dress/fleet/command
+ name = "fleet senior officer's dress jacket"
+ desc = "A navy blue USDF Fleet dress jacket with gold accents. Don't get near pasta sauce or vox." //YW EDIT: TCG to USDF
+
+/obj/item/clothing/suit/storage/solgov/dress/fleet/flag
+ name = "fleet flag officer's dress jacket"
+ desc = "A navy blue USDF Fleet dress jacket with red accents. Don't get near pasta sauce or vox." //YW EDIT: TCG to USDF
+
+/obj/item/clothing/suit/dress/solgov/fleet/sailor
+ name = "fleet dress overwear"
+ desc = "A navy blue USDF Fleet dress suit. Almost looks like a school-girl outfit." //YW EDIT: TCG to USDF
+
+/obj/item/clothing/suit/dress/solgov/army
+ name = "marine dress jacket"
+ desc = "A tailored black USDF Marines dress jacket with red trim. So sexy it hurts." //YW EDIT: TCG to USDF
+
+/obj/item/clothing/suit/dress/solgov/army/command
+ name = "marine officer's dress jacket"
+ desc = "A tailored black USDF Marines dress jacket with gold trim. Smells like ceremony." //YW EDIT: TCG to USDF
+
+//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 USDF Fleet dress jacket dripping with gold accents. So bright it's blinding." //YW EDIT: TCG to USDF
-/obj/item/clothing/suit/dress/marine
- name = "marine dress jacket"
- desc = "A tailored black USDF Marine Corps dress jacket with red trim. So sexy it hurts." //YW EDIT: TCG to USDF
+/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 USDF Marine Corps dress jacket with gold trim. Smells like ceremony." //YW EDIT: TCG to USDF
\ 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 daba40aad8..dc2190f991 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,43 +8,53 @@
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 USDF Fleet, made from an insulated material." //YW EDIT: TCG to USDF
-/obj/item/clothing/under/solgov/utility/marine
+/obj/item/clothing/under/solgov/utility/fleet/combat
+ name = "fleet fatigues"
+ desc = "Alternative utility uniform of the USDF Fleet, for when coveralls are impractical." //YW EDIT: TCG to USDF
+
+/obj/item/clothing/under/solgov/utility/fleet/officer
+ name = "fleet officer's coveralls"
+ desc = "Alternative utility uniform of the USDF Fleet, for officers." //YW EDIT: TCG to USDF
+
+/obj/item/clothing/under/solgov/utility/army
name = "marine fatigues"
- desc = "The utility uniform of the USDF Marine Corps, made from durable material." //YW EDIT: TCG to USDF
+ desc = "The utility uniform of the USDF Marines, made from durable material." //YW EDIT: TCG to USDF
-/obj/item/clothing/under/solgov/utility/marine/green
- name = "green fatigues"
- desc = "A green version of the USDF marine utility uniform, made from durable material." //YW EDIT: TCG to USDF
+/obj/item/clothing/under/solgov/utility/army/urban
+ name = "urban fatigues"
+ desc = "An urban version of the USDF Marines utility uniform, made from durable material." //YW EDIT: TCG to USDF
-/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 USDF marine utility uniform, made from durable material." //YW EDIT: TCG to USDF
+ desc = "A tan version of the USDF Marines utility uniform, made from durable material." //YW EDIT: TCG to USDF
-/obj/item/clothing/under/solgov/utility/marine/olive
+/obj/item/clothing/under/solgov/utility/army/olive
name = "olive fatigues"
desc = "An olive version of the USDF marine utility uniform, made from durable material." //YW EDIT: TCG to USDF
icon = 'icons/obj/clothing/uniforms_vr.dmi'
@@ -53,7 +62,7 @@
icon_state = "bdu_olive"
item_state = "bdu_olive"
-/obj/item/clothing/under/solgov/utility/marine/desert
+/obj/item/clothing/under/solgov/utility/army/desert
name = "desert fatigues"
desc = "A desert version of the USDF marine utility uniform, made from durable material." //YW EDIT: TCG to USDF
icon = 'icons/obj/clothing/uniforms_vr.dmi'
@@ -62,32 +71,72 @@
item_state = "bdu_olive"
//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 USDF Fleet, made from immaculate white fabric." //YW EDIT: TCG to USDF
-/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 USDF Fleet, made from immaculate white fabric." //YW EDIT: TCG to USDF
+
+/obj/item/clothing/under/solgov/service/army
name = "marine service uniform"
- desc = "The service uniform of the USDF Marine Corps. Slimming." //YW EDIT: TCG to USDF
- worn_state = "greenservice"
+ desc = "The service uniform of the USDF Marines. Slimming." //YW EDIT: TCG to USDF
-/obj/item/clothing/under/solgov/service/marine/command
- name = "marine command service uniform"
- desc = "The service uniform of the USDF Marine Corps. Slimming and stylish." //YW EDIT: TCG to USDF
+/obj/item/clothing/under/solgov/service/army/skirt
+ name = "marine service skirt"
+ desc = "The service uniform skirt of the USDF Marines. Slimming." //YW EDIT: TCG to USDF
-/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 USDF Marines. Slimming and stylish." //YW EDIT: TCG to USDF
-/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 USDF Marines. Slimming and stylish." //YW EDIT: TCG to USDF
-/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 USDF Marine Corps, class given form." //YW EDIT: TCG to USDF
+ desc = "The dress uniform of the TCG Marines, class given form." //YW EDIT: TCG to USDF
-/obj/item/clothing/under/solgov/mildress/marine/command
- name = "marine command dress uniform"
- desc = "The dress uniform of the USDF Marine Corps, even classier in gold." //YW EDIT: TCG to USDF
\ 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." //YW EDIT: TCG to USDF
+
+/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." //YW EDIT: TCG to USDF
+
+/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." //YW EDIT: TCG to USDF
+
+//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."
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))
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/carbon/human/update_icons.dm b/code/modules/mob/living/carbon/human/update_icons.dm
index 501fc9cedf..0de27e6e14 100644
--- a/code/modules/mob/living/carbon/human/update_icons.dm
+++ b/code/modules/mob/living/carbon/human/update_icons.dm
@@ -1061,7 +1061,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)
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!")
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.")
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 b5246ef38d..39ae3d815c 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
@@ -256,6 +256,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
@@ -274,12 +283,6 @@
B.water = water
src.modules += B
-// - YW Edit
-
- var/datum/matter_synth/medicine = new /datum/matter_synth/medicine(15000)
- medicine.name = "Medical supply reserves"
- synths += medicine
-
var/obj/item/stack/medical/advanced/ointment/O = new /obj/item/stack/medical/advanced/ointment(src)
var/obj/item/stack/medical/advanced/bruise_pack/P = new /obj/item/stack/medical/advanced/bruise_pack(src)
var/obj/item/stack/medical/splint/S = new /obj/item/stack/medical/splint(src)
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/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/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
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/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
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
diff --git a/icons/mob/items/lefthand_guns.dmi b/icons/mob/items/lefthand_guns.dmi
index 1330c280b4..e6f7078032 100644
Binary files a/icons/mob/items/lefthand_guns.dmi and b/icons/mob/items/lefthand_guns.dmi differ
diff --git a/icons/mob/items/righthand_guns.dmi b/icons/mob/items/righthand_guns.dmi
index bb75b51054..54dba4f49e 100644
Binary files a/icons/mob/items/righthand_guns.dmi and b/icons/mob/items/righthand_guns.dmi differ
diff --git a/icons/obj/ammo.dmi b/icons/obj/ammo.dmi
index b34cc9d91b..1a78788c3c 100644
Binary files a/icons/obj/ammo.dmi and b/icons/obj/ammo.dmi differ
diff --git a/icons/obj/contraband_vr.dmi b/icons/obj/contraband_vr.dmi
index 5a6988bb08..0e0406e824 100644
Binary files a/icons/obj/contraband_vr.dmi and b/icons/obj/contraband_vr.dmi differ
diff --git a/icons/obj/projectiles.dmi b/icons/obj/projectiles.dmi
index 1a56a0be84..c5912ad299 100644
Binary files a/icons/obj/projectiles.dmi and b/icons/obj/projectiles.dmi differ
diff --git a/icons/obj/railgun.dmi b/icons/obj/railgun.dmi
index b47d8671a3..2ad3a2a56d 100644
Binary files a/icons/obj/railgun.dmi and b/icons/obj/railgun.dmi differ
diff --git a/icons/obj/stacks_vr.dmi b/icons/obj/stacks_vr.dmi
index 54fe25d911..34d49af81b 100644
Binary files a/icons/obj/stacks_vr.dmi and b/icons/obj/stacks_vr.dmi differ
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.
diff --git a/maps/tether/submaps/offmap/talon1.dmm b/maps/tether/submaps/offmap/talon1.dmm
index 4ec9125235..6d3d9c431c 100644
--- a/maps/tether/submaps/offmap/talon1.dmm
+++ b/maps/tether/submaps/offmap/talon1.dmm
@@ -8,281 +8,41 @@
"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{
- icon_state = "techfloororange_edges";
- dir = 8
- },
-/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{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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{
- icon_state = "techfloororange_edges";
- dir = 4
- },
-/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{
- icon_state = "computer";
- dir = 4
- },
-/obj/effect/floor_decal/techfloor{
- icon_state = "techfloororange_edges";
- dir = 8
- },
-/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
- },
-/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{
- icon_state = "techfloororange_edges";
- dir = 4
- },
-/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{
- icon_state = "techfloororange_edges";
- dir = 8
- },
-/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{
- icon_state = "techfloororange_edges";
- dir = 4
- },
-/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{
- icon_state = "techfloororange_edges";
- dir = 8
- },
-/obj/item/modular_computer/console/preset/talon{
- icon_state = "console";
- dir = 4
- },
-/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{
- icon_state = "bay_comfychair_preview";
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/talon/deckone/bridge)
-"ax" = (
-/obj/effect/floor_decal/techfloor{
- icon_state = "techfloororange_edges";
- dir = 4
- },
-/obj/item/modular_computer/console/preset/talon{
- icon_state = "console";
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/talon/deckone/bridge)
-"ay" = (
-/obj/effect/floor_decal/techfloor{
- icon_state = "techfloororange_edges";
- dir = 8
- },
-/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{
- icon_state = "techfloororange_edges";
- dir = 4
- },
+/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{
- icon_state = "camera";
- dir = 9
+ dir = 9;
+ icon_state = "camera"
},
/obj/machinery/disposal,
/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{
- icon_state = "techfloororange_edges";
- dir = 8
- },
+"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{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/talon/deckone/bridge)
-"aJ" = (
-/obj/effect/floor_decal/techfloor{
- icon_state = "techfloororange_edges";
- dir = 4
- },
-/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{
- icon_state = "steel_decals_central4";
- dir = 1
- },
-/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{
- icon_state = "1-2";
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/deckone/secure_storage)
"bg" = (
-/obj/structure/cable/green{
- 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,34 +142,10 @@
},
/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{
- icon_state = "intact-scrubbers";
- dir = 4
+ dir = 4;
+ icon_state = "intact-scrubbers"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -639,65 +160,17 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/talon/deckone/secure_storage)
-"bv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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{
- icon_state = "intact-scrubbers";
- dir = 4
+ 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{
- icon_state = "steel_decals_central4";
- dir = 4
- },
-/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{
- icon_state = "intact-scrubbers";
- dir = 4
+ dir = 4;
+ icon_state = "intact-scrubbers"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -713,249 +186,70 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/talon/deckone/armory)
-"bz" = (
-/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{
- icon_state = "warning";
- dir = 1
- },
-/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{
- icon_state = "pipe-t";
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/deckone/bridge_hallway)
-"bO" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/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)
+/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,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/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 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/door/firedoor/glass/talon,
-/obj/machinery/door/airlock/command{
- name = "Talon Secure Airlock";
- req_one_access = list(301)
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-s"
},
-/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)
+/obj/machinery/door/firedoor/glass{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/eris/techmaint_panels,
+/area/talon/deckone/central_hallway)
"bT" = (
-/obj/machinery/light/small{
- icon_state = "bulb1";
- dir = 1
- },
-/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{
- icon_state = "steel_decals_central4";
- dir = 1
- },
/obj/structure/sign/securearea{
pixel_x = -32;
pixel_y = 32
@@ -982,271 +266,18 @@
pixel_y = 32
},
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/steel,
+/turf/simulated/floor/tiled/eris/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)
-"cc" = (
-/turf/simulated/floor/reinforced/airless,
-/area/talon/maintenance/deckone_port_fore_wing)
-"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,
@@ -1255,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,
@@ -1291,25 +297,15 @@
/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)
-"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,
@@ -1318,101 +314,256 @@
/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{
- icon_state = "term";
- dir = 8
- },
-/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{
- icon_state = "solar";
- dir = 4
- },
-/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,
+/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"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-s"
+ },
+/turf/simulated/floor/tiled/eris/steel,
+/area/talon/deckone/brig)
+"cO" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass/talon,
+/obj/machinery/door/airlock/maintenance/engi{
+ req_one_access = list(301)
+ },
+/turf/simulated/floor/tiled/eris/techmaint_panels,
/area/talon/deckone/port_solar)
-"cM" = (
+"cQ" = (
+/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/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/eris/steel/cargo,
+/area/talon/deckone/workroom)
+"cV" = (
+/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/eris/dark/cyancorner,
+/area/talon/deckone/starboard_solar)
+"cW" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass/talon,
+/obj/machinery/door/airlock/maintenance/engi{
+ req_one_access = list(301)
+ },
+/turf/simulated/floor/tiled/eris/techmaint_panels,
+/area/talon/deckone/starboard_solar)
+"da" = (
+/obj/structure/table/standard,
+/obj/fiftyspawner/phoron,
+/turf/simulated/floor/tiled/eris/dark/cyancorner,
+/area/talon/deckone/port_solar)
+"dj" = (
+/obj/structure/table/standard,
+/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/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/eris/dark/brown_perforated,
+/area/talon/deckone/starboard_eng)
+"dz" = (
+/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/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{
+ dir = 1;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/dark/orangecorner,
+/area/talon/deckone/secure_storage)
+"dH" = (
+/turf/simulated/wall,
+/area/talon/deckone/brig)
+"dI" = (
+/obj/machinery/door/firedoor/glass/talon,
+/obj/machinery/door/airlock/glass_security{
+ req_one_access = list(301)
+ },
+/turf/simulated/floor/tiled/eris/techmaint_panels,
+/area/talon/deckone/brig)
+"dL" = (
+/turf/simulated/wall,
+/area/talon/deckone/central_hallway)
+"dO" = (
+/turf/simulated/wall,
+/area/talon/deckone/medical)
+"dP" = (
+/obj/structure/catwalk,
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/turf/simulated/floor/plating/eris/under,
+/area/talon/maintenance/deckone_port)
+"dQ" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/eris/dark/danger,
+/area/talon/deckone/secure_storage)
+"dR" = (
+/obj/machinery/vending/tool{
+ req_log_access = 301
+ },
+/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/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);
+ req_log_access = 301
+ },
+/turf/simulated/floor/tiled/steel_ridged,
+/area/talon/deckone/brig)
+"ej" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/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"
},
-/turf/simulated/floor/tiled/techfloor,
-/area/talon/deckone/port_solar)
-"cN" = (
+/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{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/door/window/brigdoor/eastleft{
+ dir = 8;
+ req_access = list(301)
+ },
+/obj/machinery/door/window/brigdoor/eastleft{
+ req_access = list(301)
+ },
+/turf/simulated/floor/tiled/eris/techmaint_panels,
+/area/talon/deckone/brig)
+"eq" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
@@ -1427,917 +578,31 @@
icon_state = "4-8"
},
/obj/effect/catwalk_plated/dark,
-/turf/simulated/floor/plating,
+/turf/simulated/floor/plating/eris/under,
/area/talon/deckone/port_solar)
-"cO" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/glass/talon,
-/obj/machinery/door/airlock/maintenance/engi{
- req_one_access = list(301)
- },
-/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)
-"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{
- icon_state = "steel_decals_central4";
- dir = 1
- },
-/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)
-"cV" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals_central4{
- icon_state = "steel_decals_central4";
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/deckone/central_hallway)
-"cW" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/glass/talon,
-/obj/machinery/door/airlock/maintenance/engi{
- req_one_access = list(301)
- },
-/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{
- icon_state = "solar";
- dir = 8
- },
-/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,
-/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
+"er" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/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)
-"dt" = (
-/turf/simulated/floor/reinforced/airless,
-/area/talon/maintenance/deckone_starboard_fore_wing)
-"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/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{
- icon_state = "intact-scrubbers";
- dir = 5
- },
-/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
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/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)
-"dz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/obj/effect/floor_decal/emblem/talon_big{
- icon_state = "talon_big";
- dir = 10
- },
-/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{
- icon_state = "pipe-s";
- dir = 4
- },
-/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{
- icon_state = "pipe-s";
- dir = 4
- },
-/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{
- icon_state = "pipe-s";
- dir = 4
- },
-/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)
-"dH" = (
-/turf/simulated/wall,
-/area/talon/deckone/brig)
-"dI" = (
-/obj/machinery/door/firedoor/glass/talon,
-/obj/machinery/door/airlock/glass_security{
- req_one_access = list(301)
- },
-/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,
-/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
- },
-/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;
+ name = "light switch ";
+ pixel_x = 0;
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";
- pixel_y = 0
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = 5;
- pixel_y = 24
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/deckone/brig)
-"dY" = (
-/turf/simulated/floor/tiled/steel,
-/area/talon/deckone/brig)
-"dZ" = (
-/obj/machinery/vending/security{
- req_access = list(301);
- req_log_access = 301
- },
-/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{
- 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{
+/obj/machinery/atmospherics/pipe/cap/hidden{
dir = 8;
- pixel_x = 0
+ icon_state = "cap"
},
-/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{
- icon_state = "intact-scrubbers";
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/talon/deckone/brig)
-"eo" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/obj/machinery/door/window/brigdoor/eastleft{
- dir = 8;
- req_access = list(301)
- },
-/obj/machinery/door/window/brigdoor/eastleft{
- req_access = list(301)
- },
-/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{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- icon_state = "pipe-s";
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/deckone/brig)
-"er" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- icon_state = "pipe-s";
- dir = 4
- },
-/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
- },
-/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
},
/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,766 +614,87 @@
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,
+/turf/simulated/floor/tiled/eris/techmaint_panels,
/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{
- icon_state = "steel_decals_central4";
- dir = 4
- },
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j2";
- dir = 2
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/deckone/central_hallway)
-"ez" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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{
- icon_state = "pipe-s";
- dir = 4
- },
-/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{
- icon_state = "pipe-t";
- dir = 1
- },
-/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/steel_grid,
+/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/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,
-/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,
+/turf/simulated/floor/tiled/eris/techmaint_panels,
/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{
- icon_state = "talon_big";
- dir = 1
- },
-/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{
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
- },
-/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{
- icon_state = "bay_chair_preview";
- dir = 8
- },
-/obj/machinery/camera/network/talon{
- icon_state = "camera";
- dir = 9
- },
-/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{
- icon_state = "spline_plain";
- dir = 1
- },
-/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{
- icon_state = "spline_plain";
- dir = 1
- },
-/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{
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)
@@ -3123,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{
- icon_state = "map_vent_aux";
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/talon/maintenance/deckone_port)
-"fC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/aux{
- icon_state = "intact-aux";
- dir = 4
- },
-/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{
- icon_state = "intact-aux";
- dir = 4
- },
-/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{
- icon_state = "intact-aux";
- dir = 10
- },
-/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{
- icon_state = "intact-aux";
- dir = 6
- },
-/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
- },
-/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{
- icon_state = "intact-aux";
- dir = 4
- },
-/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{
- icon_state = "map_vent_aux";
- dir = 8
- },
-/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;
@@ -3383,138 +742,63 @@
/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{
- icon_state = "steel_decals_central4";
- dir = 4
+/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,
+/turf/simulated/floor/tiled/eris/techmaint_panels,
/area/talon/deckone/workroom)
-"gd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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{
- icon_state = "steel_decals_central4";
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- icon_state = "pipe-s";
- dir = 4
- },
-/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{
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,324 +810,17 @@
},
/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,
+/turf/simulated/floor/tiled/eris/techmaint_panels,
/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{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- icon_state = "pipe-s";
- dir = 4
- },
-/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{
- icon_state = "pipe-s";
- dir = 4
- },
-/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{
- icon_state = "pipe-s";
- dir = 4
- },
-/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{
- icon_state = "pipe-s";
- dir = 4
- },
-/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{
- icon_state = "console";
- dir = 1
- },
-/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{
- icon_state = "pipe-t";
- dir = 1
- },
-/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" = (
-/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 = 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,
-/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,
-/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{
- icon_state = "bulb1";
- dir = 1
- },
-/turf/simulated/floor/plating,
+/turf/simulated/floor/plating/eris/under,
/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)
-"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" = (
+"gz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
@@ -3851,1108 +828,144 @@
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
+/obj/structure/sign/department/medbay{
+ pixel_x = 29
},
-/turf/simulated/floor/tiled/steel,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/eris/steel,
/area/talon/deckone/central_hallway)
+"gJ" = (
+/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)
"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{
- icon_state = "techfloororange_edges";
- dir = 4
- },
-/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{
+/obj/machinery/atmospherics/pipe/simple/hidden/aux{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
+ icon_state = "intact-aux"
},
-/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)
+/turf/simulated/floor/tiled/eris/steel,
+/area/talon/deckone/central_hallway)
"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"
+ icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/steel,
-/area/talon/deckone/central_hallway)
-"hz" = (
-/obj/structure/window/reinforced{
- dir = 1
+/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
},
-/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{
- icon_state = "techfloororange_edges";
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/talon/deckone/starboard_eng_store)
-"hD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/aux,
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/shuttle/talonboat)
+"hv" = (
/obj/structure/catwalk,
/obj/machinery/light/small{
dir = 8;
pixel_x = 0
},
-/turf/simulated/floor/plating,
+/turf/simulated/floor/plating/eris/under,
/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{
- icon_state = "spline_plain";
- dir = 1
- },
-/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{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/structure/disposalpipe/segment{
- icon_state = "pipe-s";
- dir = 4
- },
-/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{
- icon_state = "pipe-s";
- dir = 4
- },
-/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{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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{
- icon_state = "pipe-s";
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/deckone/central_hallway)
+"hD" = (
+/obj/machinery/autolathe,
+/turf/simulated/floor/tiled/eris/steel/gray_perforated,
+/area/talon/deckone/workroom)
"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{
- icon_state = "pipe-j2";
- dir = 4
- },
-/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{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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{
- icon_state = "pipe-s";
- dir = 4
- },
-/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{
- icon_state = "spline_plain";
- dir = 1
- },
-/obj/machinery/door/airlock/maintenance/engi{
- req_one_access = list(301)
- },
-/obj/machinery/door/firedoor/glass/talon,
-/turf/simulated/floor/tiled/steel_grid,
+/obj/structure/closet/crate/solar,
+/turf/simulated/floor/tiled/eris/dark/brown_platform,
/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/machinery/oxygen_pump{
+ pixel_y = 30
},
-/obj/structure/catwalk,
-/turf/simulated/floor/plating,
-/area/talon/maintenance/deckone_starboard)
+/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/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{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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{
- icon_state = "steel_decals_central4";
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/deckone/central_hallway)
-"hU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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{
- icon_state = "steel_decals5";
- dir = 4
- },
-/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{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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{
- icon_state = "pipe-s";
- dir = 4
- },
-/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{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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{
- icon_state = "pipe-s";
- dir = 4
- },
-/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{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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{
- icon_state = "steel_decals5";
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- icon_state = "pipe-s";
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/deckone/central_hallway)
+/obj/structure/table/steel,
+/turf/simulated/floor/tiled/eris/dark/cyancorner,
+/area/talon/deckone/bridge)
"id" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4;
+ icon_state = "pipe-t"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- 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,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- icon_state = "pipe-s";
- dir = 4
- },
-/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{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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{
- icon_state = "steel_decals_central4";
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- icon_state = "pipe-s";
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
+/turf/simulated/floor/tiled/eris/steel,
/area/talon/deckone/central_hallway)
"if" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- 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,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- icon_state = "pipe-s";
- dir = 4
- },
-/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{
- icon_state = "intact-aux";
- dir = 5
- },
-/obj/structure/catwalk,
-/turf/simulated/floor/plating,
-/area/talon/maintenance/deckone_port)
+/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{
- icon_state = "intact-aux";
- dir = 4
+ dir = 4;
+ icon_state = "intact-aux"
},
/obj/machinery/door/airlock/maintenance/common,
/obj/machinery/door/firedoor/glass/talon,
/turf/simulated/floor/plating,
/area/talon/deckone/central_hallway)
-"ik" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/aux{
- icon_state = "intact-aux";
- dir = 4
- },
-/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{
- icon_state = "intact-aux";
- dir = 10
- },
-/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/tiled/eris/techmaint_panels,
+/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{
- icon_state = "steel_decals5";
- dir = 4
- },
-/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{
- icon_state = "warning";
- dir = 5
- },
-/turf/simulated/floor/tiled/monotile,
-/area/talon/deckone/central_hallway)
-"ir" = (
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 8
- },
-/turf/simulated/floor/tiled/monotile,
-/area/talon/deckone/central_hallway)
-"is" = (
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 4
- },
-/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{
- icon_state = "steel_decals5";
- dir = 8
- },
-/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{
- icon_state = "intact-aux";
- dir = 6
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
@@ -4960,699 +973,250 @@
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{
- icon_state = "intact-aux";
- dir = 4
- },
-/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{
- icon_state = "intact-aux";
- dir = 9
- },
-/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{
- icon_state = "map_connector-aux";
- dir = 4
- },
-/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
- },
-/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{
- icon_state = "cap";
- dir = 4
- },
-/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{
- icon_state = "cap";
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/talon/deckone/starboard_eng)
-"iT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/aux{
- icon_state = "intact-aux";
- dir = 5
- },
-/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{
- icon_state = "map_connector-aux";
- dir = 8
- },
-/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{
- icon_state = "up-scrubbers";
- dir = 8
- },
-/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{
- icon_state = "map_vent_aux";
- dir = 4
- },
-/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
- },
-/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/eris/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
+"ix" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/simulated/floor/tiled/techmaint,
+/obj/machinery/door/firedoor/glass/talon,
+/obj/machinery/door/blast/regular/open{
+ id = "talon_windows"
+ },
+/turf/simulated/floor/plating/eris/under,
+/area/talon/maintenance/deckone_starboard)
+"iA" = (
+/turf/simulated/wall,
/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{
- icon_state = "intact-scrubbers";
- dir = 5
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/talon/deckone/port_eng)
-"jC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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{
+"iB" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
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{
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
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{
+/turf/simulated/floor/plating/eris/under,
+/area/talon/deckone/brig)
+"iE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/aux{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
+ icon_state = "intact-aux"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
+/obj/machinery/airlock_sensor{
+ dir = 4;
+ pixel_x = -28;
+ pixel_y = 28;
+ req_one_access = list(301)
},
-/turf/simulated/floor/tiled/techmaint,
+/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)
-"jG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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{
- dir = 1
- },
-/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/steel,
+"iN" = (
+/obj/structure/ladder/up,
+/turf/simulated/floor/tiled/steel_grid,
/area/talon/deckone/central_hallway)
-"jL" = (
+"iP" = (
+/turf/simulated/floor/tiled/eris/white/gray_platform,
+/area/talon/deckone/bridge_hallway)
+"iR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
- icon_state = "intact-fuel";
- dir = 6
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/talon/deckone/port_eng)
-"jM" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
- icon_state = "map-fuel";
- dir = 1
- },
-/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;
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{
- icon_state = "intact-fuel";
- dir = 6
+"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,
+/obj/machinery/atmospherics/pipe/cap/hidden{
+ dir = 1;
+ icon_state = "cap"
+ },
+/turf/simulated/floor/tiled/eris/dark/brown_perforated,
/area/talon/deckone/starboard_eng)
-"jP" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
- icon_state = "map-fuel";
- dir = 1
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/talon/deckone/starboard_eng)
-"jQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
- icon_state = "intact-fuel";
- dir = 10
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/talon/deckone/starboard_eng)
-"jS" = (
-/obj/machinery/atmospherics/binary/pump/fuel,
-/obj/effect/floor_decal/industrial/outline/red,
-/obj/machinery/camera/network/talon{
- icon_state = "camera";
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
+"ji" = (
+/turf/simulated/wall/rshull,
/area/talon/deckone/port_eng)
-"jT" = (
-/obj/machinery/atmospherics/portables_connector/fuel{
- icon_state = "map_connector-fuel";
- dir = 1
+"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)
+"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
},
-/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
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -25
},
-/turf/simulated/floor/tiled/white,
+/obj/machinery/recharger,
+/turf/simulated/floor/tiled/eris/white/bluecorner,
/area/talon/deckone/medical)
-"jW" = (
-/obj/machinery/atmospherics/portables_connector/fuel{
- icon_state = "map_connector-fuel";
+"jD" = (
+/obj/effect/floor_decal/emblem/talon_big{
+ dir = 8;
+ icon_state = "talon_big"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/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
},
-/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{
- icon_state = "camera";
- dir = 9
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/talon/deckone/starboard_eng)
+/turf/simulated/floor/tiled/eris/steel,
+/area/talon/deckone/central_hallway)
"jY" = (
/turf/simulated/wall/rshull,
/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)
@@ -5676,14 +1240,6 @@
},
/turf/simulated/floor/reinforced/airless,
/area/talon/deckone/starboard_eng)
-"kk" = (
-/obj/structure/catwalk,
-/obj/machinery/light/small{
- icon_state = "bulb1";
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/talon/maintenance/deckone_starboard)
"kl" = (
/obj/machinery/light/small{
dir = 4;
@@ -5700,804 +1256,53 @@
/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{
- icon_state = "intact-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{
- icon_state = "pipe-s";
- dir = 4
- },
-/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{
- icon_state = "steel_decals_central4";
- dir = 1
+/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{
- icon_state = "steel_decals_central6";
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- icon_state = "pipe-s";
- dir = 4
- },
-/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{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/deckone/bridge_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)
-"kK" = (
-/turf/simulated/floor/tiled/steel,
-/area/talon/deckone/armory)
-"kL" = (
-/obj/machinery/light{
- dir = 4
- },
-/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)
-"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{
- icon_state = "1-8"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/steel,
-/area/talon/deckone/central_hallway)
-"kR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 5
- },
-/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/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
- },
-/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)
-"kV" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 5
- },
-/obj/machinery/chem_master,
-/turf/simulated/floor/tiled/white,
-/area/talon/deckone/medical)
-"kX" = (
-/obj/machinery/door/airlock/maintenance/sec{
- req_one_access = list(301)
- },
-/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{
- icon_state = "bay_chair_preview";
- dir = 1
- },
-/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{
- icon_state = "map_connector-aux";
- dir = 4
- },
-/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{
- icon_state = "intact-aux";
- dir = 10
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/talonboat)
-"ll" = (
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 5
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/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)
-"lo" = (
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 8
- },
-/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{
- icon_state = "map_vent_aux";
- dir = 8
- },
-/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
- },
-/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
- },
-/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{
- icon_state = "warning";
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "4-8";
- dir = 1
- },
-/turf/simulated/floor/tiled/monotile,
-/area/talon/deckone/central_hallway)
-"lw" = (
-/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/techfloor,
-/area/shuttle/talonboat)
-"lz" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8;
- icon_state = "borderfloor";
- pixel_x = 0
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 8
- },
-/obj/machinery/computer/shuttle_control/explore/talonboat{
- icon_state = "computer";
- dir = 4
- },
-/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)
-"lW" = (
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- icon_state = "pipe-s";
- dir = 4
- },
-/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{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/talon/maintenance/deckone_port)
-"mM" = (
-/obj/structure/catwalk,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/space,
-/area/talon/maintenance/deckone_port_fore_wing)
-"np" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/camera/network/talon{
- icon_state = "camera";
- dir = 9
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/talonboat)
-"ns" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/obj/effect/floor_decal/emblem/talon_big{
- icon_state = "talon_big";
- dir = 6
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/deckone/central_hallway)
-"nv" = (
-/obj/machinery/door/blast/regular/open{
- dir = 4;
- id = "talon_sensor"
- },
-/turf/space,
-/area/talon/maintenance/deckone_port)
-"nI" = (
-/obj/structure/catwalk,
-/obj/structure/sign/warning/moving_parts{
- pixel_x = 30
- },
-/turf/space,
-/area/talon/maintenance/deckone_port_fore_wing)
-"nL" = (
-/obj/structure/catwalk,
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/plating,
-/area/talon/maintenance/deckone_port)
-"nR" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
- icon_state = "intact";
- dir = 4
- },
-/turf/space,
-/area/talon/maintenance/deckone_starboard_fore_wing)
-"oh" = (
-/obj/effect/shuttle_landmark{
- landmark_tag = "talon_aft";
- name = "ITV Talon - Aft"
- },
-/turf/space,
-/area/space)
-"oi" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/deckone/armory)
-"oQ" = (
-/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,
-/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" = (
-/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/reinforced/airless,
-/area/talon/maintenance/deckone_starboard_fore_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
- },
-/obj/effect/floor_decal/industrial/warning/dust/corner,
-/turf/simulated/floor/reinforced/airless,
-/area/talon/maintenance/deckone_starboard_fore_wing)
-"qN" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- icon_state = "intact";
- dir = 4
- },
-/turf/simulated/floor/reinforced/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" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 1
- },
-/turf/simulated/floor/reinforced/airless,
-/area/talon/maintenance/deckone_starboard_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)
-"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{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plating,
-/area/talon/maintenance/deckone_port)
-"sD" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
@@ -6509,121 +1314,183 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/effect/floor_decal/steeldecal/steel_decals6{
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled/eris/steel,
+/area/talon/deckone/central_hallway)
+"kJ" = (
+/turf/simulated/floor/tiled/eris/dark/cyancorner,
+/area/talon/deckone/bridge)
+"kK" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals6,
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 8
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals10{
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/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
+ },
+/turf/simulated/floor/tiled/eris/steel,
+/area/talon/deckone/central_hallway)
+"kN" = (
+/turf/simulated/floor/tiled/eris/dark/danger,
+/area/talon/deckone/secure_storage)
+"kP" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j2";
- dir = 2
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/turf/simulated/floor/tiled/monotile,
-/area/talon/deckone/central_hallway)
-"sE" = (
-/obj/effect/map_helper/airlock/door/ext_door,
-/obj/machinery/door/airlock/glass_external{
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/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/machinery/airlock_sensor/airlock_exterior/shuttle{
- pixel_x = 28;
- pixel_y = -4
+/turf/simulated/floor/plating/eris/under,
+/area/talon/deckone/starboard_eng_store)
+"kV" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
},
-/obj/effect/map_helper/airlock/sensor/ext_sensor,
-/turf/simulated/floor/tiled/techmaint,
+/turf/simulated/floor/tiled/eris/white/orangecorner,
+/area/talon/deckone/armory)
+"kX" = (
+/obj/machinery/door/airlock/maintenance/sec{
+ req_one_access = list(301)
+ },
+/obj/machinery/door/firedoor/glass/talon,
+/turf/simulated/floor/plating,
+/area/talon/deckone/brig)
+"lb" = (
+/turf/simulated/wall/shull,
/area/shuttle/talonboat)
-"sK" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- icon_state = "intact";
- dir = 6
+"le" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/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/effect/floor_decal/industrial/outline/red,
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/eris/dark/brown_perforated,
+/area/talon/deckone/starboard_eng)
+"lo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/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,
/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "pipe-c"
+ icon_state = "pipe-s"
},
-/turf/simulated/floor/tiled/dark,
-/area/talon/deckone/bridge)
-"tL" = (
-/obj/effect/floor_decal/emblem/talon_big{
- icon_state = "talon_big";
- dir = 9
- },
-/turf/simulated/floor/tiled/monotile,
+/turf/simulated/floor/tiled/eris/steel,
/area/talon/deckone/central_hallway)
-"uL" = (
-/obj/effect/floor_decal/industrial/warning/dust/corner{
+"lt" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
-/turf/simulated/floor/reinforced/airless,
-/area/talon/maintenance/deckone_port_aft_wing)
-"vc" = (
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/obj/structure/disposalpipe/segment{
- icon_state = "pipe-s";
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/deckone/central_hallway)
-"vl" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8;
- icon_state = "borderfloor";
- pixel_x = 0
- },
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- icon_state = "pipe-t";
- dir = 4
- },
-/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{
- 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,
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ icon_state = "2-8"
},
-/turf/simulated/floor/plating,
-/area/talon/maintenance/deckone_starboard)
-"wk" = (
-/obj/structure/sign/warning/docking_area,
-/turf/simulated/wall,
+/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)
+"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)
-"xk" = (
+"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,
/obj/structure/window/reinforced{
@@ -6636,26 +1503,226 @@
id = "talon_windows"
},
/obj/structure/cable/green{
- icon_state = "4-8";
- dir = 1
+ dir = 1;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
+/turf/simulated/floor/plating/eris/under,
/area/talon/maintenance/deckone_starboard)
-"xo" = (
+"mj" = (
+/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
+ },
+/turf/simulated/floor/tiled/eris/white/orangecorner,
+/area/talon/deckone/armory)
+"ml" = (
/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/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)
+"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"
+ },
+/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/eris/techmaint_panels,
+/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{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/space,
+/area/talon/maintenance/deckone_port_fore_wing)
+"mN" = (
+/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_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)
+"na" = (
+/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_port)
+"nc" = (
+/turf/simulated/floor/tiled/eris/dark/danger,
+/area/talon/deckone/central_hallway)
+"nu" = (
+/obj/effect/floor_decal/emblem/talon_big{
+ dir = 5;
+ icon_state = "talon_big"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/talon/deckone/central_hallway)
+"nv" = (
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "talon_sensor"
+ },
+/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{
+ pixel_x = 30
+ },
+/turf/space,
+/area/talon/maintenance/deckone_port_fore_wing)
+"nN" = (
+/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_starboard)
+"nR" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
+ dir = 4;
+ icon_state = "intact"
+ },
+/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/dark,
+/turf/simulated/floor/tiled/eris/white/golden,
/area/talon/deckone/bridge)
-"xV" = (
+"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{
@@ -6664,273 +1731,589 @@
},
/obj/item/weapon/cell/device/weapon,
/obj/item/clothing/accessory/holster/waist,
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled/eris/white/danger,
/area/talon/deckone/armory)
-"yg" = (
+"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";
+ name = "ITV Talon - Aft"
+ },
/turf/space,
-/area/talon/deckone/starboard_eng)
-"ym" = (
+/area/space)
+"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/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/steel_grid,
+/area/talon/deckone/central_hallway)
+"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)
+"pf" = (
/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{
- dir = 4;
- id = "talon_windows"
- },
-/turf/simulated/floor/plating,
-/area/talon/maintenance/deckone_port)
-"yn" = (
-/obj/structure/catwalk,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/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{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/space,
-/area/talon/maintenance/deckone_starboard_aft_wing)
-"yN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/borderfloor{
dir = 8
},
-/obj/machinery/button/remote/blast_door{
- dir = 4;
- id = "talon_brigblast1";
- name = "blast door control";
- pixel_x = -28
+/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/steel,
+/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)
-"zC" = (
+"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/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"
+ },
+/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/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/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;
+ icon_state = "warningcorner_dust"
+ },
+/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,
+/area/talon/maintenance/deckone_port_fore_wing)
+"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/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;
d2 = 4;
icon_state = "1-4"
},
-/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";
+/obj/effect/floor_decal/industrial/warning/dust{
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
- },
-/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/reinforced/airless,
-/area/talon/maintenance/deckone_starboard_fore_wing)
-"Bz" = (
-/obj/machinery/camera/network/talon{
- icon_state = "camera";
- dir = 9
- },
-/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
- },
-/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/structure/sign/directions/bridge{
- icon_state = "direction_bridge";
- dir = 1;
- 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{
- icon_state = "pipe-s";
- dir = 4
- },
-/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,
+/turf/simulated/floor/hull/airless,
/area/talon/maintenance/deckone_port_aft_wing)
-"Dw" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- icon_state = "intact";
- dir = 5
- },
-/turf/simulated/floor/reinforced/airless,
-/area/talon/maintenance/deckone_starboard_fore_wing)
-"DF" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/sign/deck1{
- pixel_y = 27
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1;
- icon_state = "borderfloor";
- pixel_y = 0
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/deckone/central_hallway)
-"DQ" = (
-/obj/machinery/door/airlock/maintenance/common,
-/obj/machinery/door/firedoor/glass/talon,
+"sd" = (
+/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/plating,
-/area/talon/maintenance/deckone_starboard)
-"DT" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- icon_state = "intact";
- dir = 10
+/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
},
-/turf/simulated/floor/reinforced/airless,
-/area/talon/maintenance/deckone_starboard_fore_wing)
-"ET" = (
-/obj/effect/floor_decal/emblem/talon,
-/turf/simulated/floor/reinforced/airless,
-/area/talon/maintenance/deckone_starboard_aft_wing)
-"Fc" = (
+/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/deckone_port)
+"sz" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/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,
+/turf/simulated/floor/plating/eris/under,
/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{
+"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/machinery/disposal,
-/obj/structure/disposalpipe/trunk,
-/turf/simulated/floor/tiled/steel,
+/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)
-"FZ" = (
-/obj/effect/floor_decal/steeldecal/steel_decals3{
+"te" = (
+/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{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/eris/techmaint_panels,
+/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/effect/floor_decal/steeldecal/steel_decals3,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/steel,
+/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)
-"Gj" = (
+"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)
+"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;
+ icon_state = "intact"
+ },
+/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"
},
@@ -6943,118 +2326,1122 @@
/obj/structure/cable/green{
icon_state = "0-2"
},
-/turf/simulated/floor/reinforced/airless,
+/turf/simulated/floor/hull/airless,
/area/talon/maintenance/deckone_starboard_aft_wing)
-"Gu" = (
-/obj/structure/catwalk,
+"ur" = (
+/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/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"
},
-/turf/simulated/floor/plating,
-/area/talon/maintenance/deckone_starboard)
-"Gy" = (
-/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/eris/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/plating,
-/area/talon/maintenance/deckone_port)
-"GF" = (
+/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/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/eris/techmaint_panels,
+/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;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/hull/airless,
+/area/talon/maintenance/deckone_starboard_fore_wing)
+"vi" = (
+/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/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
},
-/turf/simulated/floor/tiled/steel,
-/area/talon/deckone/secure_storage)
-"GP" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 5
+/obj/effect/floor_decal/emblem/talon_big,
+/turf/simulated/floor/tiled/steel_grid,
+/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,
+/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)
+"vK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/reinforced/airless,
-/area/talon/deckone/starboard_eng)
-"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";
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/cap/hidden{
- icon_state = "cap";
+/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/techmaint,
+/turf/simulated/floor/tiled/eris/dark/brown_perforated,
/area/talon/deckone/port_eng)
-"Im" = (
-/obj/machinery/atmospherics/portables_connector/fuel{
- icon_state = "map_connector-fuel";
- dir = 1
+"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"
},
-/obj/effect/floor_decal/industrial/outline/red,
-/obj/machinery/portable_atmospherics/canister/phoron,
+/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)
+"wm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/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/techmaint,
-/area/talon/deckone/starboard_eng)
-"IF" = (
-/obj/effect/floor_decal/emblem/talon_big{
- icon_state = "talon_big";
- dir = 5
+/turf/simulated/floor/tiled/eris/dark/cyancorner,
+/area/talon/deckone/bridge)
+"wP" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
-/turf/simulated/floor/tiled/monotile,
+/turf/simulated/floor/tiled/eris/steel,
/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{
+"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{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/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;
+ 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/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{
+ 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/reinforced/airless,
-/area/talon/maintenance/deckone_starboard_aft_wing)
-"JI" = (
-/obj/effect/floor_decal/industrial/warning/dust{
+/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
},
-/turf/simulated/floor/reinforced/airless,
-/area/talon/deckone/port_eng)
-"JJ" = (
+/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/reinforced/airless,
+/turf/simulated/floor/hull/airless,
/area/talon/maintenance/deckone_starboard_aft_wing)
-"JL" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 4
+"yf" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4;
+ icon_state = "map"
},
-/turf/simulated/floor/reinforced/airless,
+/turf/simulated/floor/tiled/eris/dark/brown_perforated,
+/area/talon/deckone/starboard_eng)
+"yg" = (
+/turf/space,
+/area/talon/deckone/starboard_eng)
+"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/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{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/space,
/area/talon/maintenance/deckone_port_aft_wing)
-"JW" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- icon_state = "intact";
+"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{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/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)
+"yB" = (
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
+ dir = 8;
+ icon_state = "up-scrubbers"
+ },
+/obj/structure/disposalpipe/up{
dir = 8
},
-/turf/simulated/floor/reinforced/airless,
-/area/talon/maintenance/deckone_port_fore_wing)
-"JZ" = (
+/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/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;
+ icon_state = "warningcorner_dust"
+ },
+/turf/simulated/floor/hull/airless,
+/area/talon/maintenance/deckone_starboard_fore_wing)
+"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,
-/obj/machinery/camera/network/talon,
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled/eris/dark/danger,
/area/talon/deckone/secure_storage)
-"KM" = (
-/obj/effect/shuttle_landmark{
- landmark_tag = "talon_starboard";
- name = "ITV Talon - Starboard"
+"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"
+ },
+/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/tiled/eris/techmaint_panels,
+/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{
+ pixel_y = 29
},
/turf/space,
/area/space)
-"KN" = (
+"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)
+"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
+ },
+/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/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/eris/techmaint_panels,
+/area/talon/deckone/medical)
+"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)
+"Bu" = (
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ icon_state = "extinguisher_closed";
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/eris/steel,
+/area/talon/deckone/central_hallway)
+"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/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
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/heater{
+ anchored = 0
+ },
+/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;
+ icon_state = "intact"
+ },
+/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;
+ icon_state = "intact"
+ },
+/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)
+"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)
+"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;
+ icon_state = "intact"
+ },
+/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;
+ 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)
+"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/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)
+"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"
+ },
+/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/eris/techmaint_panels,
+/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/techmaint_panels,
+/area/talon/deckone/bridge_hallway)
+"Ec" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 9;
+ icon_state = "intact"
+ },
+/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;
+ 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)
+"ER" = (
+/obj/structure/closet/emcloset,
+/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" = (
+/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/brig)
+"Fg" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
@@ -7071,8 +3458,703 @@
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plating,
+/turf/simulated/floor/plating/eris/under,
/area/talon/maintenance/deckone_starboard)
+"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{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/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/eris/techmaint_panels,
+/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;
+ icon_state = "1-2"
+ },
+/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/eris/techmaint_panels,
+/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;
+ 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)
+"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/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/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/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" = (
+/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,
+/turf/simulated/floor/plating/eris/under,
+/area/talon/deckone/bridge_hallway)
+"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)
+"Ik" = (
+/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
+ },
+/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 = 1;
+ icon_state = "talon_big"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/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{
+ dir = 1;
+ icon_state = "intact"
+ },
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "4-8"
+ },
+/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)
+"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,
+/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/techmaint_panels,
+/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;
+ 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)
+"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/techmaint_panels,
+/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";
+ name = "ITV Talon - Starboard"
+ },
+/turf/space,
+/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" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -7099,27 +4181,29 @@
},
/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";
+"Lf" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
-/turf/simulated/floor/reinforced/airless,
-/area/talon/maintenance/deckone_port_aft_wing)
+/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{
- 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)
@@ -7132,26 +4216,116 @@
/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)
-"LJ" = (
-/obj/machinery/shower,
-/obj/item/weapon/soap/deluxe,
-/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" = (
+"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"
},
-/turf/simulated/floor/reinforced/airless,
-/area/talon/maintenance/deckone_port_fore_wing)
+/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
@@ -7164,15 +4338,30 @@
},
/turf/simulated/floor/greengrid/airless,
/area/talon/maintenance/deckone_port)
-"Mu" = (
-/obj/structure/catwalk,
+"Mr" = (
+/obj/effect/floor_decal/emblem/talon,
+/turf/simulated/floor/hull/airless,
+/area/talon/maintenance/deckone_port_aft_wing)
+"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";
@@ -7180,121 +4369,363 @@
},
/turf/space,
/area/space)
-"MJ" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- icon_state = "intact";
- dir = 6
+"MG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/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
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/talon/deckone/bridge)
-"NR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/machinery/button/remote/blast_door{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4;
- id = "talon_brigblast2";
- name = "blast door control";
- pixel_x = -28
+ icon_state = "intact-scrubbers"
},
-/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
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-s"
},
-/turf/simulated/floor/reinforced/airless,
-/area/talon/maintenance/deckone_starboard_aft_wing)
-"On" = (
-/obj/machinery/power/pointdefense{
- id_tag = "talon_pd"
+/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/effect/floor_decal/techfloor{
- dir = 4
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ dir = 1;
+ id_tag = "talon_port";
+ pixel_y = -30;
+ req_one_access = list(301)
},
-/obj/effect/floor_decal/techfloor{
- dir = 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{
+ 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{
- icon_state = "0-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/reinforced/airless,
-/area/talon/maintenance/deckone_port_fore_wing)
-"Ow" = (
-/obj/machinery/power/pointdefense{
- id_tag = "talon_pd"
+/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"
},
-/obj/effect/floor_decal/techfloor{
- dir = 8
+/turf/simulated/floor/plating/eris/under,
+/area/talon/maintenance/deckone_port)
+"MM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/obj/effect/floor_decal/techfloor{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/obj/structure/cable/green{
- icon_state = "0-2"
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/reinforced/airless,
-/area/talon/maintenance/deckone_port_aft_wing)
-"OF" = (
-/obj/structure/sign/periodic{
- pixel_y = 32
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
-/turf/simulated/floor/tiled/techmaint,
-/area/talon/deckone/workroom)
-"OR" = (
-/obj/effect/floor_decal/industrial/warning/dust/corner{
- icon_state = "warningcorner_dust";
+/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
},
-/turf/simulated/floor/reinforced/airless,
+/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)
+"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)
+"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/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/eris/techmaint_panels,
+/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;
+ icon_state = "bay_comfychair_preview"
+ },
+/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
+ },
+/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/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ 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" = (
/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/techmaint_panels,
+/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;
@@ -7302,59 +4733,406 @@
},
/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/techmaint_panels,
+/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)
-"Rc" = (
+"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/reinforced/airless,
+/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)
-"Rv" = (
+"RX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris/steel,
+/area/talon/deckone/central_hallway)
+"Sc" = (
/obj/effect/floor_decal/industrial/warning/dust{
dir = 8
},
-/turf/simulated/floor/reinforced/airless,
+/turf/simulated/floor/hull/airless,
/area/talon/maintenance/deckone_port_aft_wing)
-"RD" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- icon_state = "intact";
- dir = 5
+"Se" = (
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
},
-/turf/simulated/floor/reinforced/airless,
-/area/talon/maintenance/deckone_port_fore_wing)
-"Sa" = (
+/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{
- icon_state = "talon_big";
- dir = 4
+ dir = 9;
+ icon_state = "talon_big"
},
-/turf/simulated/floor/tiled/steel,
+/turf/simulated/floor/tiled/steel_grid,
/area/talon/deckone/central_hallway)
-"SJ" = (
-/obj/effect/floor_decal/industrial/warning/dust/corner{
- icon_state = "warningcorner_dust";
- dir = 1
+"SE" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 5;
+ pixel_y = 24
},
-/turf/simulated/floor/reinforced/airless,
-/area/talon/maintenance/deckone_starboard_aft_wing)
+/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/techmaint_panels,
+/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,
+/area/talon/maintenance/deckone_starboard_fore_wing)
"SX" = (
/turf/space,
/area/talon/deckone/port_eng)
-"TP" = (
+"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/techmaint_panels,
+/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;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/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"
},
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 1
+/turf/simulated/floor/plating/eris/under,
+/area/talon/maintenance/deckone_starboard)
+"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)
+"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{
@@ -7365,206 +5143,205 @@
"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)
+"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/steel_grid,
+/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;
+ 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)
+"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{
id = "talon_brigblast2"
},
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled/eris/techmaint_panels,
/area/talon/deckone/brig)
-"VS" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 1
+"UU" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "talon_pd"
},
-/turf/simulated/floor/reinforced/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{
+/obj/effect/floor_decal/techfloor{
dir = 8
},
-/obj/structure/vehiclecage/spacebike,
-/turf/simulated/floor/tiled/steel,
-/area/talon/deckone/central_hallway)
-"Ww" = (
-/obj/effect/floor_decal/emblem/talon_big{
- icon_state = "talon_big";
- dir = 8
- },
-/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{
- icon_state = "";
- dir = 1
- },
-/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{
+/obj/effect/floor_decal/techfloor{
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"
+ icon_state = "0-8"
},
-/turf/simulated/floor/plating,
-/area/talon/maintenance/deckone_port)
-"WS" = (
-/obj/machinery/door/airlock/medical{
- req_one_access = list(301)
+/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/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/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/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{
- icon_state = "map_connector-fuel";
- dir = 1
+/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/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)
-"Xq" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- icon_state = "intact";
- dir = 10
- },
-/turf/simulated/floor/reinforced/airless,
-/area/talon/maintenance/deckone_port_fore_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)
-"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{
- 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)
-"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";
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/atmospherics/pipe/cap/hidden{
- icon_state = "cap";
+/obj/structure/window/reinforced{
dir = 1
},
-/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/plating/eris/under,
+/area/talon/deckone/armory)
+"Ve" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/tiled/steel_ridged,
+/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_grid,
+/area/talon/deckone/central_hallway)
+"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)
+"Vj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/eris/white/gray_platform,
/area/talon/deckone/bridge_hallway)
-"ZU" = (
-/obj/machinery/suit_cycler/vintage/tmedic,
-/turf/simulated/floor/tiled/white,
-/area/talon/deckone/medical)
-"ZV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+"Vt" = (
+/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;
@@ -7573,8 +5350,501 @@
},
/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/eris/techmaint_panels,
+/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)
+"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,
+/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
@@ -10492,8 +8762,8 @@ aa
aa
aa
aa
-gI
-gI
+Dh
+Dh
aa
aa
aa
@@ -10634,8 +8904,8 @@ aa
aa
aa
aa
-gI
-gI
+Dh
+Dh
aa
aa
aa
@@ -10776,8 +9046,8 @@ aa
aa
aa
aa
-gI
-gI
+Dh
+Dh
aa
aa
aa
@@ -10918,8 +9188,8 @@ aa
aa
aa
aa
-gI
-gI
+Dh
+Dh
aa
aa
aa
@@ -11060,8 +9330,8 @@ aa
aa
aa
aa
-gI
-gI
+Dh
+Dh
aa
aa
aa
@@ -11201,10 +9471,10 @@ aa
aa
aa
aa
-gI
-gI
-gI
-gI
+Dh
+Dh
+Dh
+Dh
aa
aa
aa
@@ -11343,10 +9613,10 @@ aa
aa
aa
aa
-gI
-gI
-gI
-gI
+Dh
+Dh
+Dh
+Dh
aa
aa
aa
@@ -11485,10 +9755,10 @@ aa
aa
aa
aa
-gI
-gI
-gI
-gI
+Dh
+Dh
+Dh
+Dh
aa
aa
aa
@@ -11627,10 +9897,10 @@ aa
aa
aa
aa
-gI
-gI
-gI
-gI
+Dh
+Dh
+Dh
+Dh
aa
aa
aa
@@ -11769,10 +10039,10 @@ aa
aa
aa
aa
-gI
-gI
-gI
-gI
+Dh
+Dh
+Dh
+Dh
aa
aa
aa
@@ -11910,12 +10180,12 @@ aa
aa
aa
aa
-gI
-gI
-gI
-gI
-gI
-gI
+Dh
+Dh
+Dh
+Dh
+Dh
+Dh
aa
aa
aa
@@ -12052,12 +10322,12 @@ aa
aa
aa
aa
-gI
-gI
-gI
-gI
-gI
-gI
+Dh
+Dh
+Dh
+Dh
+Dh
+Dh
aa
aa
aa
@@ -12194,12 +10464,12 @@ aa
aa
aa
aa
-gI
-gI
-gI
-gI
-gI
-gI
+Dh
+Dh
+Dh
+Dh
+Dh
+Dh
aa
aa
aa
@@ -12336,12 +10606,12 @@ aa
aa
aa
aa
-gI
-gI
-gI
-gI
-gI
-gI
+Dh
+Dh
+Dh
+Dh
+Dh
+Dh
aa
aa
aa
@@ -12478,12 +10748,12 @@ aa
aa
aa
aa
-gI
-gI
-gI
-gI
-gI
-gI
+Dh
+Dh
+Dh
+Dh
+Dh
+Dh
aa
aa
aa
@@ -12619,14 +10889,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 +11031,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 +11173,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 +11315,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 +11457,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 +11598,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 +11740,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 +11882,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 +12024,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 +12166,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 +12307,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 +12449,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 +12576,7 @@ aa
aa
aa
aa
-cc
+rJ
aa
aa
aa
@@ -14321,18 +12591,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 +12718,7 @@ aa
aa
aa
aa
-cc
+rJ
aa
aa
aa
@@ -14463,18 +12733,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 +12860,7 @@ aa
aa
aa
aa
-cc
+rJ
aa
aa
aa
@@ -14605,18 +12875,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 +13002,7 @@ aa
aa
aa
aa
-cc
+rJ
aa
aa
aa
@@ -14746,20 +13016,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 +13143,9 @@ aa
aa
aa
aa
-cc
-cc
-cc
+rJ
+rJ
+rJ
aa
aa
aa
@@ -14888,20 +13158,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 +13285,9 @@ aa
aa
aa
aa
-cc
-Yv
-cc
+rJ
+RW
+rJ
aa
aa
aa
@@ -15030,20 +13300,20 @@ aa
aa
aa
aa
-mh
-Rv
-Lo
-gI
+lD
+Sc
+Km
+Dh
YS
aC
-fA
+TP
aC
YS
-gI
-gI
-gI
-gI
-gI
+Dh
+Dh
+Dh
+Dh
+Dh
aa
aa
aa
@@ -15157,9 +13427,9 @@ aa
aa
aa
aa
-oW
-Rc
-mm
+rH
+tJ
+AY
aa
aa
aa
@@ -15178,7 +13448,7 @@ yn
YS
YS
aC
-fB
+MH
aC
YS
YS
@@ -15299,9 +13569,9 @@ aa
aa
aa
aa
-zO
-On
-VS
+vA
+AN
+VB
aa
aa
aC
@@ -15320,12 +13590,12 @@ La
br
aC
aC
-fC
+mF
aC
aC
aC
-br
-br
+na
+na
aC
aC
aC
@@ -15440,44 +13710,44 @@ aa
aa
aa
aa
-sK
-BR
-sz
-MJ
-RD
+ZR
+TD
+pr
+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
@@ -15582,44 +13852,44 @@ aa
aa
aa
aa
-qN
-qN
-Ml
-JW
-qN
+Bh
+Bh
+Tz
+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
@@ -15724,21 +13994,21 @@ aa
aa
aa
aa
-qN
-Xq
-zT
-oR
-qN
+Bh
+Vf
+GL
+Ij
+Bh
aa
aC
-aL
-Mu
+am
+ML
cl
cl
cl
cl
cl
-bS
+gs
dH
dH
dH
@@ -15751,7 +14021,7 @@ dH
dH
dH
dH
-bS
+gs
gU
gU
gU
@@ -15760,11 +14030,11 @@ dL
ij
iA
iA
-iV
+BA
ji
ji
-gJ
-gJ
+ga
+ga
ji
ji
ji
@@ -15873,41 +14143,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 +14280,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 +14418,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 +14569,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 +14704,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 +14846,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 +14988,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 +15130,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 +15265,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 +15299,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 +15407,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 +15548,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 +15690,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
+xf
+YO
+YO
+ys
+XV
+fj
+yQ
+nc
ki
aa
aa
@@ -17562,57 +15832,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
+Zi
+UV
+iP
+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
+me
+ht
+xu
+Kk
lb
-lr
+VZ
lb
-iD
+nc
ki
aa
aa
@@ -17705,56 +15975,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 +16117,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 +16152,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 +16266,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 +16408,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 +16550,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 +16692,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 +16841,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 +16975,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 +17120,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 +17267,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
@@ -19132,34 +17402,34 @@ aa
aa
aa
aa
-vn
-MW
-yu
-Dw
-vn
+CP
+pc
+JB
+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 +17438,11 @@ dL
ij
iF
iF
-jf
+hf
jY
jY
-gT
-gT
+DD
+DD
jY
jY
jY
@@ -19274,44 +17544,44 @@ aa
aa
aa
aa
-vn
-vn
-qT
-vn
-vn
+CP
+CP
+Bq
+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
@@ -19416,44 +17686,44 @@ aa
aa
aa
aa
-DT
-qM
-CT
-AP
-XT
+Dl
+Ec
+Ha
+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
@@ -19559,9 +17829,9 @@ aa
aa
aa
aa
-FB
-pz
-XQ
+SV
+UU
+yA
aa
aa
aK
@@ -19576,16 +17846,16 @@ aK
aK
aK
aK
-KN
-bB
+Fg
+Wo
aK
aK
-fT
+PF
aK
aK
aK
-bB
-bB
+Wo
+Wo
aK
aK
aK
@@ -19701,9 +17971,9 @@ aa
aa
aa
aa
-Bs
-AE
-OR
+qF
+ED
+yO
aa
aa
aa
@@ -19722,7 +17992,7 @@ yy
Za
Za
aK
-fU
+xQ
aK
Za
Za
@@ -19843,9 +18113,9 @@ aa
aa
aa
aa
-dt
-LX
-dt
+EF
+Nx
+EF
aa
aa
aa
@@ -19858,20 +18128,20 @@ aa
aa
aa
aa
-Ji
-Jk
-NY
-dR
+Eo
+QX
+UI
+Ru
Za
aK
-fV
+oU
aK
Za
-dR
-dR
-dR
-dR
-dR
+Ru
+Ru
+Ru
+Ru
+Ru
aa
aa
aa
@@ -19985,9 +18255,9 @@ aa
aa
aa
aa
-dt
-dt
-dt
+EF
+EF
+EF
aa
aa
aa
@@ -20000,20 +18270,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 +18398,7 @@ aa
aa
aa
aa
-dt
+EF
aa
aa
aa
@@ -20142,20 +18412,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
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
aa
aa
aa
@@ -20270,7 +18540,7 @@ aa
aa
aa
aa
-dt
+EF
aa
aa
aa
@@ -20285,18 +18555,18 @@ aa
aa
aa
aa
-dR
-dR
-dR
-dR
-dR
-dR
-dR
-dR
-dR
-dR
-dR
-dR
+Ru
+Ru
+Ru
+Ru
+Ru
+we
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
aa
aa
aa
@@ -20412,7 +18682,7 @@ aa
aa
aa
aa
-dt
+EF
aa
aa
aa
@@ -20427,18 +18697,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 +18824,7 @@ aa
aa
aa
aa
-dt
+EF
aa
aa
aa
@@ -20569,18 +18839,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 +18981,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 +19123,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 +19266,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 +19408,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 +19550,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 +19692,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 +19834,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 +19977,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 +20119,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 +20261,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 +20403,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 +20545,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 +20688,12 @@ aa
aa
aa
aa
-dR
-dR
-dR
-dR
-dR
-dR
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
aa
aa
aa
@@ -22560,12 +20830,12 @@ aa
aa
aa
aa
-dR
-dR
-dR
-dR
-dR
-dR
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
aa
aa
aa
@@ -22702,12 +20972,12 @@ aa
aa
aa
aa
-dR
-dR
-dR
-dR
-dR
-dR
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
aa
aa
aa
@@ -22844,12 +21114,12 @@ aa
aa
aa
aa
-dR
-dR
-dR
-dR
-dR
-dR
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
aa
aa
aa
@@ -22986,12 +21256,12 @@ aa
aa
aa
aa
-dR
-dR
-dR
-dR
-dR
-dR
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
aa
aa
aa
@@ -23129,10 +21399,10 @@ aa
aa
aa
aa
-dR
-dR
-dR
-dR
+Ru
+Ru
+Ru
+Ru
aa
aa
aa
@@ -23271,10 +21541,10 @@ aa
aa
aa
aa
-dR
-dR
-dR
-dR
+Ru
+Ru
+Ru
+Ru
aa
aa
aa
@@ -23413,10 +21683,10 @@ aa
aa
aa
aa
-dR
-dR
-dR
-dR
+Ru
+Ru
+Ru
+Ru
aa
aa
aa
@@ -23555,10 +21825,10 @@ aa
aa
aa
aa
-dR
-dR
-dR
-dR
+Ru
+Ru
+Ru
+Ru
aa
aa
aa
@@ -23697,10 +21967,10 @@ aa
aa
aa
aa
-dR
-dR
-dR
-dR
+Ru
+Ru
+Ru
+Ru
aa
aa
aa
@@ -23840,8 +22110,8 @@ aa
aa
aa
aa
-dR
-dR
+Ru
+Ru
aa
aa
aa
@@ -23982,8 +22252,8 @@ aa
aa
aa
aa
-dR
-dR
+Ru
+Ru
aa
aa
aa
@@ -24124,8 +22394,8 @@ aa
aa
aa
aa
-dR
-dR
+Ru
+Ru
aa
aa
aa
@@ -24266,8 +22536,8 @@ aa
aa
aa
aa
-dR
-dR
+Ru
+Ru
aa
aa
aa
@@ -24408,8 +22678,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..76bddbccbb 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{
- icon_state = "bay_comfychair_preview";
- dir = 1;
- pixel_y = 5
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/talon/decktwo/bridge_upper)
"an" = (
/obj/machinery/light{
dir = 4
@@ -82,55 +52,28 @@
/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,
/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{
- icon_state = "camera";
- dir = 10
- },
-/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
@@ -169,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,
@@ -208,36 +141,18 @@
/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{
- icon_state = "camera";
- dir = 6
- },
-/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)
"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,
@@ -245,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;
@@ -283,103 +173,19 @@
"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{
- icon_state = "bay_chair_preview";
- dir = 1
+ dir = 1;
+ icon_state = "bay_chair_preview"
},
/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
@@ -394,8 +200,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,150 +218,18 @@
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"
},
/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{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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{
- icon_state = "4-8";
- dir = 1
- },
-/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{
- icon_state = "4-8";
- dir = 1
- },
-/turf/simulated/floor/lino,
-/area/talon/decktwo/bar)
"bj" = (
-/obj/machinery/chemical_dispenser/bar_alc/full{
- icon_state = "booze_dispenser";
- dir = 8
- },
-/obj/structure/table/marble,
-/obj/structure/cable/green{
- icon_state = "4-8";
- dir = 1
- },
-/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,
@@ -566,8 +240,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;
@@ -575,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;
@@ -643,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"
@@ -666,30 +280,11 @@
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)
-"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;
@@ -714,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{
@@ -797,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{
- icon_state = "pipe-s";
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/talon/decktwo/bar)
"bP" = (
/obj/structure/extinguisher_cabinet{
dir = 8;
@@ -843,71 +389,25 @@
},
/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{
- icon_state = "pipe-t";
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/decktwo/central_hallway)
"bT" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 10;
+ icon_state = "intact-scrubbers"
},
-/obj/structure/cable/green{
- icon_state = "2-4"
+/obj/structure/catwalk,
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
},
-/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{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/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"
},
/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,59 +420,19 @@
/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,
/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{
- icon_state = "spline_plain";
- dir = 1
- },
-/turf/simulated/floor/tiled/steel_ridged,
-/area/talon/decktwo/bar)
-"bZ" = (
-/obj/machinery/vending/dinnerware{
- icon_state = "dinnerware";
- dir = 1
- },
-/obj/effect/floor_decal/spline/plain{
- icon_state = "spline_plain";
- dir = 1
- },
-/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)
@@ -992,22 +452,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"
@@ -1060,33 +504,12 @@
/turf/simulated/open,
/area/talon/decktwo/central_hallway)
"cn" = (
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 8
+/obj/machinery/vending/dinnerware{
+ dir = 1;
+ icon_state = "dinnerware"
},
-/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{
- icon_state = "steel_decals_central4";
- dir = 1
- },
-/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{
@@ -1127,83 +550,19 @@
/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,
+/obj/effect/floor_decal/industrial/warning/dust/corner,
+/turf/simulated/floor/hull/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,
-/area/talon/maintenance/decktwo_solars)
-"cx" = (
-/obj/structure/railing{
- dir = 1
- },
/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,
@@ -1216,49 +575,19 @@
"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)
"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/techmaint_panels,
/area/talon/decktwo/central_hallway)
"cE" = (
/obj/structure/railing,
@@ -1270,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{
- icon_state = "steel_decals5";
- dir = 4
- },
-/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{
@@ -1449,257 +615,22 @@
},
/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{
- icon_state = "steel_decals5";
- dir = 8
- },
-/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{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
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{
- icon_state = "pipe-s";
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/decktwo/central_hallway)
-"db" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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{
- icon_state = "steel_decals5";
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- icon_state = "pipe-s";
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/decktwo/central_hallway)
-"dc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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{
- icon_state = "oxygen_tank";
- dir = 1;
- pixel_y = -30
- },
-/obj/structure/disposalpipe/segment{
- icon_state = "pipe-s";
- dir = 4
- },
-/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{
- icon_state = "pipe-s";
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/decktwo/central_hallway)
-"de" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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{
- icon_state = "pipe-s";
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/decktwo/central_hallway)
-"df" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 4
+ icon_state = "intact-scrubbers"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -1710,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{
- icon_state = "pipe-s";
- dir = 4
+ 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{
- icon_state = "intact-scrubbers";
- 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/structure/sign/directions/evac{
- pixel_y = -38
- },
-/obj/structure/disposalpipe/segment{
- icon_state = "pipe-s";
- dir = 4
- },
-/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{
- icon_state = "pipe-j2";
- dir = 4
- },
-/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{
- icon_state = "intact-scrubbers";
- 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/structure/sign/department/shield{
- pixel_y = -31
- },
-/obj/structure/disposalpipe/segment{
- icon_state = "pipe-s";
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/decktwo/central_hallway)
-"dj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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{
- icon_state = "pipe-s";
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/decktwo/central_hallway)
-"dk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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{
- icon_state = "oxygen_tank";
- dir = 1;
- pixel_y = -30
- },
-/obj/structure/disposalpipe/segment{
- icon_state = "pipe-s";
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/decktwo/central_hallway)
-"dl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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{
- icon_state = "steel_decals5";
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- icon_state = "pipe-s";
- dir = 4
- },
-/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)
@@ -1960,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,
@@ -2019,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{
- icon_state = "steel_decals_central4";
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/decktwo/tech)
-"dE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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,
@@ -2125,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"
@@ -2190,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{
- icon_state = "intact-scrubbers";
- dir = 5
- },
-/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;
@@ -2294,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{
- icon_state = "roomnum";
- dir = 4;
- 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;
@@ -2369,37 +835,15 @@
},
/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{
- icon_state = "camera";
- dir = 9
+ dir = 9;
+ icon_state = "camera"
},
/obj/machinery/pointdefense_control{
id_tag = "talon_pd"
@@ -2429,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{
- icon_state = "steel_decals_central4";
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/decktwo/central_hallway)
-"em" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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"
@@ -2538,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
@@ -2634,89 +931,6 @@
},
/turf/simulated/floor/wood,
/area/talon/decktwo/pilot_room)
-"ey" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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
@@ -2746,8 +960,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";
@@ -2780,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)
@@ -2809,77 +1001,21 @@
/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;
- 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)
@@ -2902,28 +1038,14 @@
/turf/simulated/floor/carpet,
/area/talon/decktwo/med_room)
"eX" = (
-/obj/machinery/computer/shuttle_control/explore/talon_lifeboat{
- icon_state = "computer";
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/firealarm{
+ dir = 4;
+ 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)
@@ -2945,120 +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)
-"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{
- 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"
@@ -3088,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{
@@ -3123,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;
@@ -3171,51 +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)
-"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/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;
@@ -3240,18 +1178,6 @@
/obj/machinery/suit_cycler/vintage/tmedic,
/turf/simulated/floor/wood,
/area/talon/decktwo/med_room)
-"fC" = (
-/obj/machinery/camera/network/talon{
- icon_state = "camera";
- dir = 4
- },
-/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{
@@ -3259,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;
@@ -3296,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{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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"
@@ -3377,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,
@@ -3396,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
@@ -3430,67 +1276,27 @@
},
/turf/simulated/floor/wood,
/area/talon/decktwo/sec_room)
-"fV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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/eris/techmaint_panels,
+/area/talon/decktwo/cap_room)
"fZ" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
@@ -3541,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,
@@ -3579,177 +1356,22 @@
},
/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{
- icon_state = "camera";
- dir = 9
- },
-/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
- },
-/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)
"go" = (
/obj/structure/railing{
- icon_state = "railing0";
- dir = 4
+ dir = 4;
+ icon_state = "railing0"
},
/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{
- icon_state = "steel_decals5";
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/decktwo/central_hallway)
-"gA" = (
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/obj/structure/catwalk,
-/turf/simulated/floor/plating,
-/area/talon/maintenance/decktwo_aft)
"gB" = (
/obj/structure/railing{
dir = 1
@@ -3767,33 +1389,552 @@
/area/talon/maintenance/decktwo_aft)
"gD" = (
/obj/structure/railing{
- icon_state = "railing0";
- dir = 4
+ dir = 4;
+ icon_state = "railing0"
},
/obj/structure/railing{
dir = 1
},
/turf/simulated/open,
/area/talon/maintenance/decktwo_aft)
-"gE" = (
+"gJ" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/talon/maintenance/decktwo_aft)
+"gK" = (
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/talon/maintenance/decktwo_aft)
+"gL" = (
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/talon/maintenance/decktwo_aft)
+"gS" = (
+/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,
+/area/talon/maintenance/decktwo_aft)
+"gU" = (
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/turf/simulated/open,
+/area/talon/maintenance/decktwo_aft)
+"gV" = (
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/talon/maintenance/decktwo_aft)
+"gZ" = (
+/turf/simulated/wall,
+/area/talon/maintenance/decktwo_port)
+"hn" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/talon/maintenance/decktwo_aft)
+"ho" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/turf/simulated/open,
+/area/talon/maintenance/decktwo_aft)
+"ht" = (
+/turf/simulated/wall/rshull,
+/area/talon/maintenance/decktwo_aft)
+"hu" = (
+/turf/simulated/wall,
+/area/talon/maintenance/decktwo_aft)
+"hx" = (
+/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/decktwo/central_hallway)
+"hy" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing,
+/turf/simulated/open,
+/area/talon/maintenance/decktwo_aft)
+"hz" = (
+/obj/structure/railing{
+ dir = 4;
+ icon_state = "railing0"
+ },
+/obj/structure/railing,
+/turf/simulated/open,
+/area/talon/maintenance/decktwo_aft)
+"hE" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/zpipe/down/supply{
+ dir = 4;
+ icon_state = "down-supply"
+ },
+/obj/machinery/door/firedoor/glass/talon,
+/turf/simulated/open,
+/area/talon/maintenance/decktwo_aft)
+"hF" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
+ dir = 8;
+ icon_state = "down-scrubbers"
+ },
+/obj/machinery/door/firedoor/glass/talon,
+/obj/structure/disposalpipe/down{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/talon/maintenance/decktwo_aft)
+"hL" = (
+/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_port)
+"hO" = (
+/obj/effect/overmap/visitable/ship/talon,
+/turf/space,
+/area/space)
+"hP" = (
+/obj/effect/landmark/map_data/talon,
+/turf/space,
+/area/space)
+"hQ" = (
+/obj/structure/table/bench/wooden,
+/turf/simulated/floor/wood,
+/area/talon/decktwo/cap_room)
+"hX" = (
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/talon/maintenance/decktwo_aft)
+"ic" = (
+/obj/structure/lattice,
+/obj/structure/railing,
+/turf/simulated/open,
+/area/talon/maintenance/decktwo_aft)
+"ik" = (
+/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_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/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/alarm/talon{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/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";
+ network = "Talon"
+ },
+/turf/simulated/floor/bluegrid,
+/area/talon/decktwo/tech)
+"is" = (
+/turf/simulated/open/vacuum,
+/area/space)
+"iv" = (
+/obj/machinery/power/tracker,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ dir = 1;
+ icon_state = "warningcorner_dust"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/talon/maintenance/decktwo_solars)
+"iw" = (
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 10
+ dir = 4;
+ icon_state = "intact-scrubbers"
},
/obj/structure/catwalk,
-/turf/simulated/floor/plating,
+/turf/simulated/floor/plating/eris/under,
/area/talon/maintenance/decktwo_aft)
-"gF" = (
-/obj/machinery/door/firedoor/glass/talon/hidden{
- dir = 8
+"ix" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
},
-/obj/effect/floor_decal/steeldecal/steel_decals5{
- icon_state = "steel_decals5";
- dir = 8
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1;
+ icon_state = "pipe-t"
},
-/turf/simulated/floor/tiled/steel,
+/turf/simulated/floor/tiled/eris/steel,
/area/talon/decktwo/central_hallway)
-"gG" = (
+"iz" = (
+/obj/machinery/power/tracker,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/talon/maintenance/decktwo_solars)
+"iA" = (
+/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"
+ },
+/turf/simulated/floor/tiled/eris/dark/violetcorener,
+/area/talon/decktwo/tech)
+"iL" = (
+/turf/simulated/open/vacuum,
+/area/talon/maintenance/decktwo_solars)
+"iM" = (
+/obj/machinery/ntnet_relay,
+/turf/simulated/floor/bluegrid,
+/area/talon/decktwo/tech)
+"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/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-s"
+ },
+/turf/simulated/floor/tiled/eris/steel,
+/area/talon/decktwo/central_hallway)
+"jV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-s"
+ },
+/turf/simulated/floor/tiled/eris/steel,
+/area/talon/decktwo/central_hallway)
+"kh" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/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/techmaint_panels,
+/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"
+ },
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/turf/simulated/floor/hull/airless,
+/area/talon/maintenance/decktwo_solars)
+"mD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/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;
@@ -3808,1792 +1949,12 @@
pixel_y = 0;
report_danger_level = 0
},
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
+/turf/simulated/floor/tiled/eris/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{
- icon_state = "pipe-t";
- dir = 1
- },
-/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
- },
-/obj/structure/lattice,
-/turf/simulated/open,
-/area/talon/maintenance/decktwo_aft)
-"gK" = (
-/obj/structure/lattice,
-/turf/simulated/open,
-/area/talon/maintenance/decktwo_aft)
-"gL" = (
-/obj/structure/railing{
- icon_state = "railing0";
- dir = 4
- },
-/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)
-"gT" = (
-/obj/structure/railing,
-/turf/simulated/open,
-/area/talon/maintenance/decktwo_aft)
-"gU" = (
-/obj/structure/railing,
-/obj/structure/railing{
- icon_state = "railing0";
- dir = 4
- },
-/turf/simulated/open,
-/area/talon/maintenance/decktwo_aft)
-"gV" = (
-/obj/structure/railing,
-/obj/structure/railing{
- dir = 8
- },
-/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" = (
+"mR" = (
/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
- },
-/obj/structure/lattice,
-/turf/simulated/open,
-/area/talon/maintenance/decktwo_aft)
-"ho" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/railing{
- icon_state = "railing0";
- dir = 4
- },
-/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/catwalk,
-/obj/machinery/atmospherics/pipe/simple/visible/aux{
- icon_state = "intact-aux";
- dir = 6
- },
-/turf/simulated/floor/plating,
-/area/talon/maintenance/decktwo_aft)
-"hy" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/structure/railing,
-/turf/simulated/open,
-/area/talon/maintenance/decktwo_aft)
-"hz" = (
-/obj/structure/railing{
- icon_state = "railing0";
- dir = 4
- },
-/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
- },
-/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{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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{
- icon_state = "pipe-j2";
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plating,
-/area/talon/maintenance/decktwo_aft)
-"hE" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/zpipe/down/supply{
- icon_state = "down-supply";
- dir = 4
- },
-/obj/machinery/door/firedoor/glass/talon,
-/turf/simulated/open,
-/area/talon/maintenance/decktwo_aft)
-"hF" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
- icon_state = "down-scrubbers";
- dir = 8
- },
-/obj/machinery/door/firedoor/glass/talon,
-/obj/structure/disposalpipe/down{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
- dir = 1
- },
-/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
- },
-/obj/structure/catwalk,
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
- },
-/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,
-/area/space)
-"hP" = (
-/obj/effect/landmark/map_data/talon,
-/turf/space,
-/area/space)
-"hQ" = (
-/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{
- icon_state = "pipe-j2";
- dir = 2
- },
-/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{
- dir = 4
- },
-/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{
- icon_state = "intact-aux";
- dir = 4
- },
-/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{
- 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)
-"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,
-/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{
- icon_state = "map_vent_aux";
- dir = 1
- },
-/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)
-"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{
- 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{
- icon_state = "intact-aux";
- dir = 10
- },
-/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
- },
-/turf/simulated/floor/plating,
-/area/talon/maintenance/decktwo_aft)
-"ij" = (
-/obj/machinery/atmospherics/portables_connector/aux{
- icon_state = "map_connector-aux";
- dir = 1
- },
-/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{
- icon_state = "intact-aux";
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/talon/maintenance/decktwo_aft)
-"il" = (
-/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{
- icon_state = "intact-aux";
- dir = 10
- },
-/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)
-"iq" = (
-/obj/machinery/telecomms/allinone/talon{
- id = "talon_aio";
- network = "Talon"
- },
-/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)
-"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{
- d2 = 4;
- icon_state = "0-4"
- },
-/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"
- },
-/turf/simulated/floor/reinforced/airless,
-/area/talon/maintenance/decktwo_solars)
-"iz" = (
-/obj/machinery/power/tracker,
-/obj/structure/cable/yellow{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/floor_decal/industrial/warning/dust/corner{
- dir = 4
- },
-/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
- },
-/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
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/turf/simulated/floor/plating,
-/area/talon/maintenance/decktwo_aft)
-"iL" = (
-/turf/simulated/open/vacuum,
-/area/talon/maintenance/decktwo_solars)
-"iM" = (
-/obj/machinery/ntnet_relay,
-/turf/simulated/floor/bluegrid,
-/area/talon/decktwo/tech)
-"jD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/obj/structure/disposalpipe/segment{
- icon_state = "pipe-s";
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/decktwo/central_hallway)
-"kh" = (
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/turf/simulated/floor/wood,
-/area/talon/decktwo/bar)
-"kv" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/wall/rshull,
-/area/talon/maintenance/decktwo_aft)
-"mN" = (
-/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
- },
-/obj/machinery/oxygen_pump{
- icon_state = "oxygen_tank";
- dir = 4;
- pixel_x = 30
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/decktwo/central_hallway)
-"nu" = (
-/obj/structure/table/bench/wooden,
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/wood,
-/area/talon/decktwo/cap_room)
-"nH" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 4
- },
-/turf/simulated/floor/reinforced/airless,
-/area/talon/maintenance/decktwo_solars)
-"nR" = (
-/obj/machinery/suit_cycler/vintage/tcaptain,
-/turf/simulated/floor/wood,
-/area/talon/decktwo/cap_room)
-"ol" = (
-/obj/structure/sign/poster{
- icon_state = "";
- dir = 1
- },
-/turf/simulated/wall,
-/area/talon/decktwo/bar)
-"om" = (
-/obj/effect/floor_decal/industrial/warning/dust/corner,
-/turf/simulated/floor/reinforced/airless,
-/area/talon/maintenance/decktwo_solars)
-"pY" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- icon_state = "pipe-s";
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/talon/decktwo/bar)
-"qG" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/wall/rshull,
-/area/talon/maintenance/decktwo_aft)
-"rb" = (
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal/deliveryChute{
- icon_state = "intake";
- dir = 4
- },
-/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
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/talon/maintenance/decktwo_aft)
-"rE" = (
-/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,
-/area/talon/maintenance/decktwo_aft)
-"rQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-2";
- dir = 1
- },
-/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)
-"sx" = (
-/obj/machinery/button/remote/airlock{
- dir = 4;
- id = "talon_capdoor";
- name = "Door Bolts";
- pixel_x = 28;
- specialfunctions = 4
- },
-/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,
-/turf/simulated/floor/tiled/steel,
-/area/talon/decktwo/central_hallway)
-"tC" = (
-/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,
-/area/talon/maintenance/decktwo_aft)
-"uP" = (
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/obj/structure/catwalk,
-/obj/structure/sign/securearea{
- pixel_x = 0;
- pixel_y = 30
- },
-/turf/simulated/floor/plating,
-/area/talon/maintenance/decktwo_aft)
-"vc" = (
-/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";
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/talon/decktwo/bar)
-"vj" = (
-/obj/machinery/conveyor{
- dir = 8;
- icon_state = "conveyor0";
- id = "talontrash"
- },
-/obj/machinery/door/blast/regular{
- dir = 4;
- id = "talontrashblast"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/talon/maintenance/decktwo_aft)
-"vB" = (
-/obj/structure/disposalpipe/segment{
- icon_state = "pipe-s";
- dir = 4
- },
-/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;
- d2 = 4;
- icon_state = "1-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;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 8
- },
-/turf/simulated/floor/reinforced/airless,
-/area/talon/maintenance/decktwo_solars)
-"wW" = (
-/obj/structure/disposalpipe/segment{
- icon_state = "pipe-s";
- dir = 4
- },
-/turf/simulated/wall/rshull,
-/area/talon/maintenance/decktwo_aft)
-"xm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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/sign/department/telecoms{
- pixel_y = -31
- },
-/obj/structure/disposalpipe/segment{
- icon_state = "pipe-s";
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/decktwo/central_hallway)
-"yb" = (
-/obj/structure/table/steel,
-/obj/machinery/button/remote/blast_door{
- dir = 8;
- id = "talon_windows";
- name = "window blast shields"
- },
-/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
- },
-/obj/structure/disposaloutlet{
- icon_state = "outlet";
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/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
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/talon/maintenance/decktwo_aft)
-"zm" = (
-/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{
- icon_state = "pipe-s";
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/talon/maintenance/decktwo_starboard)
-"AA" = (
-/obj/structure/sign/poster{
- icon_state = "";
- dir = 4
- },
-/turf/simulated/wall,
-/area/talon/maintenance/decktwo_starboard)
-"AC" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/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
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 8
- },
-/obj/machinery/camera/network/talon{
- icon_state = "camera";
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/steel,
-/area/talon/decktwo/central_hallway)
-"Dk" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/media/jukebox,
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/wood,
-/area/talon/decktwo/bar)
-"Dz" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 1
- },
-/turf/simulated/floor/reinforced/airless,
-/area/talon/maintenance/decktwo_solars)
-"Em" = (
-/obj/structure/disposalpipe/trunk{
- icon_state = "pipe-t";
- dir = 4
- },
-/obj/structure/disposaloutlet,
-/turf/simulated/floor/reinforced/airless,
-/area/talon/maintenance/decktwo_solars)
-"EA" = (
-/obj/machinery/conveyor{
- dir = 8;
- icon_state = "conveyor0";
- id = "talontrash"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/talon/maintenance/decktwo_aft)
-"FD" = (
-/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 = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 9
- },
-/obj/machinery/camera/network/talon{
- icon_state = "camera";
- dir = 9
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/decktwo/central_hallway)
-"Gk" = (
-/obj/effect/floor_decal/industrial/warning/dust/corner{
- dir = 8
- },
-/turf/simulated/floor/reinforced/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
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10;
- icon_state = "borderfloorcorner2";
- pixel_x = 0
- },
-/obj/structure/sign/directions/roomnum{
- icon_state = "roomnum";
- dir = 1;
- pixel_x = -31;
- pixel_y = -9
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/steel,
-/area/talon/decktwo/central_hallway)
-"Ib" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/glass_external,
-/obj/effect/map_helper/airlock/door/simple,
-/turf/simulated/floor/tiled/techfloor,
-/area/talon/decktwo/lifeboat)
-"Ie" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/reinforced/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
- },
-/obj/machinery/oxygen_pump{
- icon_state = "oxygen_tank";
- dir = 8;
- pixel_x = -30
- },
-/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" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 4;
- layer = 3.3;
- pixel_x = 26
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/decktwo/central_hallway)
-"MS" = (
-/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{
- icon_state = "roomnum";
- dir = 8;
- pixel_x = 32;
- pixel_y = -9
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/decktwo/central_hallway)
-"Nc" = (
-/obj/machinery/conveyor_switch/oneway{
- id = "talontrash"
- },
-/obj/structure/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 10
- },
-/turf/simulated/floor/plating,
-/area/talon/maintenance/decktwo_aft)
-"Nx" = (
-/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,
-/area/talon/maintenance/decktwo_solars)
-"Ou" = (
-/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/reinforced/airless,
-/area/talon/maintenance/decktwo_solars)
-"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/decktwo_solars)
-"Pk" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 8
- },
-/turf/simulated/floor/reinforced/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"
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plating,
-/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{
- icon_state = "intact-scrubbers";
- dir = 4
- },
-/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,
-/area/talon/maintenance/decktwo_aft)
-"RK" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 4
- },
-/turf/simulated/floor/reinforced/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)
-"Tw" = (
-/obj/effect/floor_decal/emblem/talon,
-/turf/simulated/floor/reinforced/airless,
-/area/talon/maintenance/decktwo_solars)
-"TC" = (
-/obj/structure/sign/poster{
- icon_state = "";
- dir = 8
- },
-/turf/simulated/wall,
-/area/talon/decktwo/central_hallway)
-"Uf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- icon_state = "pipe-s";
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/talon/decktwo/bar)
-"UI" = (
-/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/reinforced/airless,
-/area/talon/maintenance/decktwo_solars)
-"VV" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/wall/rshull,
-/area/talon/maintenance/decktwo_aft)
-"WZ" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/wood,
-/area/talon/decktwo/cap_room)
-"Xh" = (
-/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/decktwo_starboard)
-"Xp" = (
-/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
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 26
- },
-/turf/simulated/floor/tiled/steel,
-/area/talon/decktwo/central_hallway)
-"Yb" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 1
- },
-/turf/simulated/floor/reinforced/airless,
-/area/talon/maintenance/decktwo_solars)
-"YQ" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/reinforced/airless,
-/area/talon/maintenance/decktwo_solars)
-"Zc" = (
-/obj/structure/cable/heavyduty{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/reinforced/airless,
-/area/talon/maintenance/decktwo_solars)
-"Zd" = (
-/obj/structure/cable/green{
- icon_state = "4-8";
- dir = 1
- },
-/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
+ icon_state = "intact-scrubbers"
},
/obj/structure/cable/green{
d1 = 4;
@@ -5608,15 +1969,2704 @@
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/machinery/door/blast/regular/open{
+ id = "talon_windows"
+ },
+/turf/simulated/floor/plating/eris/under,
+/area/talon/decktwo/bar)
+"mV" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/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;
+ layer = 3.3;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/eris/steel,
+/area/talon/decktwo/central_hallway)
+"nu" = (
+/obj/structure/table/bench/wooden,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/talon/decktwo/cap_room)
+"nB" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ dir = 8
+ },
+/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,
+/area/talon/decktwo/cap_room)
+"ol" = (
+/obj/structure/sign/poster{
+ dir = 1;
+ icon_state = ""
+ },
+/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/eris/techmaint_panels,
+/area/talon/decktwo/bar)
+"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)
+"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;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-s"
+ },
+/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/techmaint_panels,
+/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;
+ icon_state = "pipe-c"
+ },
+/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;
+ 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{
+ dir = 4;
+ icon_state = "intake"
+ },
+/obj/effect/floor_decal/rust/steel_decals_rusted1{
+ dir = 8
+ },
+/obj/effect/floor_decal/rust/steel_decals_rusted1{
+ dir = 4;
+ icon_state = "steel_decals_rusted1"
+ },
+/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;
+ 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)
+"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/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)
+ },
+/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,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ 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)
+"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"
+ },
+/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)
+"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;
+ id = "talon_capdoor";
+ name = "Door Bolts";
+ pixel_x = 28;
+ specialfunctions = 4
+ },
+/turf/simulated/floor/wood,
+/area/talon/decktwo/cap_room)
+"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/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/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;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/solar,
+/turf/simulated/floor/plating/eris/under/airless,
+/area/talon/maintenance/decktwo_solars)
+"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/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_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/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/techmaint_panels,
+/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{
+ 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_port)
+"vj" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ icon_state = "conveyor0";
+ id = "talontrash"
+ },
+/obj/machinery/door/blast/regular{
+ dir = 4;
+ id = "talontrashblast"
+ },
+/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;
+ icon_state = "pipe-s"
+ },
+/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;
+ 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/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;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ dir = 4
+ },
+/turf/simulated/floor/hull/airless,
+/area/talon/maintenance/decktwo_solars)
+"wW" = (
+/obj/structure/disposalpipe/segment{
+ 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)
+"xi" = (
+/obj/machinery/computer/shuttle_control/explore/talon_lifeboat{
+ dir = 4;
+ icon_state = "computer"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/talon/decktwo/lifeboat)
+"xn" = (
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 5
+ },
+/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/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/disposalpipe/segment,
+/turf/simulated/floor/tiled/eris/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)
+"yd" = (
+/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/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{
+ dir = 1;
+ icon_state = "pipe-t"
+ },
+/obj/structure/disposaloutlet{
+ dir = 8;
+ icon_state = "outlet"
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust/steel_decals_rusted1{
+ dir = 8
+ },
+/obj/effect/floor_decal/rust/steel_decals_rusted1{
+ 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)
+"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/firedoor/glass/talon,
+/obj/machinery/door/blast/regular/open{
+ id = "talon_windows"
+ },
+/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"
+ },
+/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)
+"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;
+ icon_state = ""
+ },
+/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)
+"AD" = (
+/obj/machinery/alarm/talon{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/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"
+ },
+/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)
+"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;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/media/jukebox,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/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;
+ pixel_y = 28;
+ req_one_access = list(301)
+ },
+/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"
+ },
+/obj/machinery/camera/network/talon{
+ dir = 6;
+ icon_state = "camera"
+ },
+/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;
+ icon_state = "conveyor0";
+ id = "talontrash"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/talon/maintenance/decktwo_aft)
+"Fc" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/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;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/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)
+"Gi" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4;
+ icon_state = "pipe-t"
+ },
+/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/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/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/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{
+ icon_state = "1-8"
+ },
+/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;
+ icon_state = "0-4"
+ },
+/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,
+/obj/machinery/door/airlock/glass_external,
+/obj/effect/map_helper/airlock/door/simple,
+/turf/simulated/floor/tiled/techfloor,
+/area/talon/decktwo/lifeboat)
+"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)
+"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"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/hull/airless,
+/area/talon/maintenance/decktwo_solars)
+"IB" = (
+/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/eris/under,
+/area/talon/maintenance/decktwo_aft)
+"IO" = (
+/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)
+"IX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/sign/department/telecoms{
+ pixel_y = -31
+ },
+/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/eris/techmaint_panels,
+/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"
+ },
+/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)
+"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)
+"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/eris/techmaint_panels,
+/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/machinery/oxygen_pump{
+ dir = 4;
+ icon_state = "oxygen_tank";
+ pixel_x = 30
+ },
+/turf/simulated/floor/tiled/eris/steel,
+/area/talon/decktwo/central_hallway)
+"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"
+ },
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 10;
+ icon_state = "intact-scrubbers"
+ },
+/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;
+ 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/hull/airless,
+/area/talon/maintenance/decktwo_solars)
+"Ou" = (
+/obj/structure/cable/heavyduty{
+ dir = 2;
+ icon_state = "0-4"
+ },
+/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;
+ 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/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)
+"OY" = (
+/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_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"
+ },
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ dir = 1;
+ icon_state = "warningcorner_dust"
+ },
+/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)
-"ZP" = (
+"Qt" = (
+/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/decktwo_port)
+"QA" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/plating/eris/under,
+/area/talon/maintenance/decktwo_starboard)
+"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)
+"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
+ },
+/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
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/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/techmaint_panels,
+/area/talon/decktwo/central_hallway)
+"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)
+"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
+ },
+/obj/structure/cable/heavyduty{
+ icon_state = "2-8"
+ },
+/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;
+ icon_state = ""
+ },
+/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,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-s"
+ },
+/turf/simulated/floor/wood,
+/area/talon/decktwo/bar)
+"Uj" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/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;
+ 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/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)
+"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"
+ },
+/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)
+"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/techmaint_panels,
+/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/techmaint_panels,
+/area/talon/decktwo/central_hallway)
+"VV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/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;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/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;
+ 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)
+"Xi" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/washing_machine,
+/turf/simulated/floor/tiled/eris/steel,
+/area/talon/decktwo/central_hallway)
+"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)
+"Xs" = (
+/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/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/techmaint_panels,
+/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{
+ dir = 4
+ },
+/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,
+/turf/simulated/floor/plating/eris/under/airless,
+/area/talon/maintenance/decktwo_solars)
+"YW" = (
/obj/structure/cable/heavyduty{
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/reinforced/airless,
+/turf/simulated/floor/hull/airless,
/area/talon/maintenance/decktwo_solars)
+"Zm" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/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/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/cafe,
+/area/talon/decktwo/bar)
+"ZW" = (
+/obj/structure/sign/deck2{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled/eris/steel,
+/area/talon/decktwo/central_hallway)
(1,1,1) = {"
aa
@@ -13077,9 +12127,9 @@ is
is
is
is
-Zf
-Yb
-ao
+CB
+Rv
+pi
is
is
is
@@ -13219,9 +12269,9 @@ is
is
is
is
-vS
+Uj
iv
-ao
+pi
is
is
is
@@ -13346,38 +12396,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 +12538,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 +12680,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 +12822,9 @@ is
is
is
aa
-ce
-cu
-fw
+ao
+OO
+YH
cb
cg
cb
@@ -13787,8 +12837,8 @@ cb
cb
cb
cb
-Px
-bl
+vi
+hL
cb
cb
cb
@@ -13804,12 +12854,12 @@ ht
ht
ht
ht
-iB
-iA
-ao
-ao
-ao
-ao
+MO
+PX
+pi
+pi
+pi
+pi
aa
aa
aa
@@ -13914,43 +12964,43 @@ is
is
is
aa
-ce
-cv
-fw
+ao
+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
-ao
-hM
-ao
-iF
-ao
+pi
+FT
+pi
+Ou
+pi
iL
aa
aa
@@ -14046,19 +13096,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
@@ -14071,7 +13121,7 @@ cc
cc
cc
TC
-eR
+hx
cc
cc
cc
@@ -14082,17 +13132,17 @@ cc
cc
cc
cc
-gY
-hU
+Qi
+fP
hu
-gp
-hd
+zv
+HV
ht
-ce
-iE
-fw
-iG
-fw
+ao
+zs
+YH
+UW
+YH
iL
aa
aa
@@ -14188,54 +13238,54 @@ 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
-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
-ce
-iE
-fw
-iG
-fw
ao
+zs
+YH
+UW
+YH
+pi
aa
aa
aa
@@ -14330,15 +13380,15 @@ aa
aa
aa
aa
-ao
-ao
+pi
+pi
ap
ap
ap
ap
ap
-Jf
-ba
+Vu
+dw
ap
ap
ap
@@ -14346,37 +13396,37 @@ 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
-ce
-iE
-fw
-iG
-fw
+ao
+zs
+YH
+UW
+YH
iL
aa
aa
@@ -14488,37 +13538,37 @@ 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
-ce
-iE
-fw
-iG
-fw
+ao
+zs
+YH
+UW
+YH
iL
aa
aa
@@ -14630,8 +13680,8 @@ aM
aC
ck
cy
-cL
-dc
+NT
+Gm
dr
dy
dL
@@ -14647,21 +13697,21 @@ fZ
eT
cc
cc
-gI
+cB
cc
cc
cc
cc
hu
-hY
+sv
hu
ht
-ce
-iE
-fw
-iG
-fw
ao
+zs
+YH
+UW
+YH
+pi
aa
aa
aa
@@ -14772,8 +13822,8 @@ aK
aC
cl
cz
-cM
-dd
+kn
+jQ
dr
dz
dM
@@ -14792,18 +13842,18 @@ gn
gn
gn
gT
-hp
-hc
-hc
-ih
-iJ
+IB
+yW
+yW
+tZ
+zW
ht
-ce
-iE
-fw
-iG
-fw
ao
+zs
+YH
+UW
+YH
+pi
aa
aa
aa
@@ -14914,8 +13964,8 @@ bR
aC
cl
cz
-cN
-de
+NT
+qi
dr
dA
dN
@@ -14934,18 +13984,18 @@ gn
gn
gn
gT
-gq
+WG
gB
gu
hy
-ik
+Vz
ht
-ce
-iE
-fw
-iG
-fw
ao
+zs
+YH
+UW
+YH
+pi
aa
aa
aa
@@ -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,18 +14126,18 @@ go
go
go
gU
-gq
+WG
gC
gn
hX
-ik
+Vz
ht
-ce
-iE
-fw
-iG
-fw
ao
+zs
+YH
+UW
+YH
+pi
aa
aa
aa
@@ -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,23 +14263,23 @@ eN
eN
eN
hu
-rE
-hc
-hc
-hc
-hc
-hd
+Ul
+yW
+yW
+yW
+yW
+HV
hn
ic
-ii
-iK
+re
+Ju
ht
-ce
-iE
-fw
-iG
-fw
ao
+zs
+YH
+UW
+YH
+pi
aa
aa
aa
@@ -15320,58 +14370,58 @@ 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
-hZ
-iu
-iD
-ao
-ao
+Tz
+OS
+GQ
+pi
+pi
aa
aa
aa
@@ -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,23 +14547,23 @@ fD
fQ
Ib
gh
-gt
+qb
gC
gK
gn
gT
-he
+mm
gC
gT
-il
-in
-id
-ie
-if
-ao
-Tw
-ao
-Em
+gS
+nj
+rJ
+pt
+DT
+pi
+My
+pi
+wZ
aa
aa
aa
@@ -15604,58 +14654,58 @@ 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
-ib
-Zc
-ZP
-YQ
-vM
+En
+Mn
+YW
+mh
+MA
aa
aa
aa
@@ -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,23 +14831,23 @@ eN
eN
eN
hu
-gE
-hg
-hg
-hg
-hg
-hf
+eQ
+HK
+HK
+HK
+HK
+xn
hn
ic
-he
-he
+mm
+mm
wW
-ce
-eP
-fw
-iH
-fw
ao
+oX
+YH
+yH
+YH
+pi
aa
aa
aa
@@ -15908,8 +14958,8 @@ bW
aw
cm
cz
-cN
-de
+NT
+qi
du
du
du
@@ -15928,18 +14978,18 @@ gu
gu
gu
gV
-gA
+iw
gC
gn
gV
-he
+mm
wW
-ce
-eP
-fw
-iH
-fw
ao
+oX
+YH
+yH
+YH
+pi
aa
aa
aa
@@ -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,18 +15120,18 @@ gn
gn
gn
gT
-gA
+iw
ho
go
hz
-he
+mm
wW
-ce
-eP
-fw
-iH
-fw
ao
+oX
+YH
+yH
+YH
+pi
aa
aa
aa
@@ -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,18 +15262,18 @@ gn
gn
gn
gT
-hL
-ia
-ig
-ir
-hR
+bT
+WD
+Bv
+Ez
+yK
wW
-ce
-eP
-fw
-iH
-fw
ao
+oX
+YH
+yH
+YH
+pi
aa
aa
aa
@@ -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,21 +15401,21 @@ ge
eZ
cc
cc
-gI
+cB
cc
cc
cc
cc
hu
-hB
+Bb
hu
wW
-ce
-eP
-fw
-iH
-fw
ao
+oX
+YH
+yH
+YH
+pi
aa
aa
aa
@@ -16467,8 +15517,8 @@ aw
aw
aw
aw
-bj
-bs
+KR
+uQ
aw
aw
aw
@@ -16476,37 +15526,37 @@ 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
-ce
-eP
-fw
-iH
-fw
+ao
+oX
+YH
+yH
+YH
iL
aa
aa
@@ -16609,46 +15659,46 @@ 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
-ce
-eP
-fw
-iH
-fw
+ao
+oX
+YH
+yH
+YH
iL
aa
aa
@@ -16746,52 +15796,52 @@ 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
+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
-ce
-eP
-fw
-iH
-fw
ao
+oX
+YH
+yH
+YH
+pi
aa
aa
aa
@@ -16888,15 +15938,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
@@ -16911,7 +15961,7 @@ cF
cF
cF
AA
-fe
+kO
cF
cF
cF
@@ -16922,17 +15972,17 @@ cF
cF
cF
cF
-hj
-hr
-hw
-hD
+Ie
+mo
+Yh
+mL
yF
ht
-ce
-eP
-fw
-iH
-fw
+ao
+oX
+YH
+yH
+YH
iL
aa
aa
@@ -17038,43 +16088,43 @@ is
is
is
aa
-ce
-cw
-fw
+ao
+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
-ao
-hM
-ao
-iI
-ao
+pi
+FT
+pi
+Lj
+pi
iL
aa
aa
@@ -17180,9 +16230,9 @@ is
is
is
aa
-ce
-eP
-fw
+ao
+oX
+YH
bQ
cs
bQ
@@ -17195,8 +16245,8 @@ bQ
bQ
bQ
bQ
-Xh
-bt
+AE
+Zt
bQ
bQ
bQ
@@ -17212,12 +16262,12 @@ ht
ht
ht
ht
-iC
-iD
-ao
-ao
-ao
-ao
+BL
+GQ
+pi
+pi
+pi
+pi
aa
aa
aa
@@ -17322,39 +16372,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 +16514,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 +16656,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 +16813,9 @@ is
is
is
is
-nH
+qW
iz
-ao
+pi
is
is
is
@@ -17905,9 +16955,9 @@ is
is
is
is
-UI
-Yb
-ao
+Sb
+Rv
+pi
is
is
is
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..4c79d606c8 100644
--- a/maps/tether/submaps/om_ships/aro2.dmm
+++ b/maps/tether/submaps/om_ships/aro2.dmm
@@ -3,47 +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;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/wall/rpshull,
-/area/aro2/frontroom)
"af" = (
/obj/structure/cable/cyan{
d1 = 4;
@@ -71,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;
@@ -108,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)
@@ -127,19 +70,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 +90,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 +125,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 +147,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 +186,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{
@@ -379,26 +231,15 @@
/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/effect/floor_decal/industrial/warning/full,
+/obj/machinery/power/pointdefense{
+ id_tag = "aroship"
},
/obj/structure/cable/cyan{
- icon_state = "1-8"
+ d2 = 4;
+ icon_state = "0-4"
},
-/turf/simulated/floor/wood,
-/area/aro2/frontroom)
-"bh" = (
-/obj/structure/table/rack/shelf/steel,
-/obj/item/weapon/inducer/hybrid,
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/plating/eris/under,
/area/aro2/frontroom)
"bi" = (
/obj/structure/window/plastitanium/full,
@@ -408,83 +249,24 @@
/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
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/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
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/aro2/cockpit)
-"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{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
-/turf/simulated/floor/tiled/techfloor/grid,
+/turf/simulated/floor/tiled/eris/steel/cyancorner,
/area/aro2/boatdeck)
"by" = (
/turf/simulated/wall,
@@ -510,74 +292,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 +320,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,52 +330,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)
-"cb" = (
-/obj/structure/table/steel,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/aro2/cockpit)
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating/eris/under,
+/area/aro2/frontroom)
"cc" = (
/obj/structure/closet/secure_closet/personal,
/obj/machinery/light{
@@ -711,176 +378,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
- },
-/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)
-"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 +389,13 @@
},
/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,171 +444,12 @@
},
/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
- },
-/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 +478,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 +520,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 +539,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 +557,13 @@
},
/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)
+/turf/simulated/floor/tiled/eris/techmaint_perforated,
+/area/aro2/dining)
"dG" = (
/obj/structure/cable/cyan{
d1 = 4;
@@ -1497,31 +572,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,45 +605,52 @@
},
/turf/simulated/floor/wood,
/area/aro2/dining)
-"dM" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 4
- },
+"dQ" = (
/obj/structure/table/steel,
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
+/turf/simulated/floor/tiled/eris/techmaint_perforated,
+/area/aro2/surfluid)
+"dU" = (
/obj/structure/cable/cyan{
- d2 = 8;
- icon_state = "0-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/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{
+/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)
+"dW" = (
+/obj/structure/sign/poster,
+/turf/simulated/wall,
+/area/aro2/dining)
+"ea" = (
+/obj/structure/cable/cyan{
+ 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
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/water/indoors/surfluid,
+/area/aro2/boatdeck)
+"ec" = (
/obj/machinery/alarm{
alarm_id = null;
breach_detection = 0;
@@ -1606,143 +663,38 @@
pixel_x = -24;
pixel_y = 6
},
-/turf/simulated/floor/tiled/white,
-/area/aro2/boatdeck)
-"dP" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 10
- },
+/turf/simulated/floor/carpet/oracarpet,
+/area/aro2/cockpit)
+"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 = 4
+ dir = 8
},
-/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,
+/turf/simulated/floor/tiled/eris/dark,
+/area/aro2/starboardbay)
+"ej" = (
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
+/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 = 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,
-/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
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- 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,
-/area/aro2/boatdeck)
-"eh" = (
-/obj/machinery/telecomms/allinone,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/aro2/boatdeck)
+/turf/simulated/floor/tiled/eris/dark/gray_perforated,
+/area/aro2/powerarea)
"ek" = (
/obj/structure/sign/poster{
dir = 1;
@@ -1751,420 +703,173 @@
/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)
+"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"
- },
-/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{
- 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/techfloor,
-/area/aro2/boatdeck)
-"ew" = (
-/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/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
- },
-/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,
+/turf/simulated/floor/wood,
/area/aro2/dining)
-"eA" = (
-/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/dining)
-"eB" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/techfloor,
-/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" = (
-/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"
- },
-/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" = (
-/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
- },
-/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/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/eris/dark,
+/area/aro2/boatdeck)
+"fu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
/obj/structure/cable/cyan{
d1 = 1;
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
+/obj/structure/cable/cyan{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-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" = (
+/turf/simulated/floor/tiled/eris/steel/bar_flat,
+/area/aro2/frontroom)
+"fv" = (
/obj/structure/cable/cyan{
d1 = 1;
d2 = 2;
@@ -2176,19 +881,24 @@
/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,
+/turf/simulated/floor/tiled/eris/dark,
/area/aro2/boatdeck)
"fy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 1
+/turf/simulated/floor/tiled/eris/dark/cargo,
+/area/shuttle/aroboat2)
+"fC" = (
+/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{
+/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
},
/obj/structure/cable/cyan{
@@ -2196,268 +906,50 @@
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
- },
-/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)
"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/golden,
+/area/aro2/cockpit)
"ga" = (
/turf/simulated/wall/r_wall,
/area/aro2/starboardbay)
@@ -2470,37 +962,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 +972,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 +1039,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 +1074,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 +1105,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 +1249,99 @@
/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/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
-/obj/structure/table/steel,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/fiftyspawner/steel,
-/turf/simulated/floor/tiled/techfloor,
-/area/aro2/powerarea)
+/turf/simulated/floor/tiled/eris/dark,
+/area/aro2/starboardbay)
"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{
+/obj/structure/table/steel,
+/obj/machinery/atmospherics/unary/vent_pump/on{
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)
+/turf/simulated/floor/tiled/eris/techmaint_perforated,
+/area/aro2/boatdeck)
"jN" = (
-/obj/effect/floor_decal/techfloor/orange/corner{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/aux{
+ dir = 8
},
-/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)
+/turf/simulated/floor/tiled/eris/techmaint_cargo,
+/area/aro2/starboardbay)
"jS" = (
/turf/simulated/wall/rpshull,
/area/aro2/airarea)
-"jT" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 8
- },
-/obj/machinery/button/remote/blast_door{
- dir = 4;
- id = "aroshipshutter";
- name = "exterior shutters";
- pixel_x = -28
- },
-/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{
- 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,
-/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)
+"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{
dir = 4
@@ -4735,154 +1352,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;
@@ -4899,68 +1370,15 @@
},
/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/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;
@@ -4969,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;
@@ -4998,34 +1403,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 +1411,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,104 +1473,25 @@
/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
- },
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -24;
- pixel_y = 6
- },
-/obj/effect/floor_decal/spline/fancy/wood/corner{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/aro2/frontroom)
-"mp" = (
-/obj/structure/table/bench/wooden,
-/turf/simulated/floor/tiled/techfloor,
-/area/aro2/dining)
-"mD" = (
-/obj/effect/floor_decal/industrial/loading{
- 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"
- },
-/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
- },
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 1
- },
-/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,
-/turf/simulated/floor/tiled/techfloor/grid,
-/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{
- dir = 1
- },
-/obj/machinery/door/blast/regular{
- dir = 8;
- icon_state = "pdoor1";
- id = "aroboatshut"
- },
-/obj/machinery/door/firedoor/glass{
- dir = 2
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/aroboat2)
-"pw" = (
+"lV" = (
/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ 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/eris/techmaint_cargo,
+/area/shuttle/aroboat2)
+"lW" = (
+/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
@@ -5241,51 +1499,63 @@
/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)
+"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
},
-/obj/effect/floor_decal/spline/fancy/wood{
+/turf/simulated/floor/water/indoors/surfluid,
+/area/aro2/boatdeck)
+"mp" = (
+/obj/structure/table/bench/wooden,
+/turf/simulated/floor/tiled/techfloor,
+/area/aro2/dining)
+"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)
+"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/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 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/effect/floor_decal/spline/fancy/wood{
+/turf/simulated/floor/tiled/eris/dark,
+/area/aro2/starboardbay)
+"mP" = (
+/obj/structure/table/steel,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
-/turf/simulated/floor/wood,
-/area/aro2/frontroom)
-"tl" = (
-/obj/structure/fans/hardlight,
-/obj/machinery/door/blast/regular{
+/obj/machinery/firealarm{
dir = 8;
- icon_state = "pdoor1";
- id = "aroboatshut"
+ pixel_x = -24
},
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/aroboat2)
-"ts" = (
+/turf/simulated/floor/wood,
+/area/aro2/dining)
+"mU" = (
/obj/machinery/power/shield_generator/upgraded{
field_radius = 39;
initial_shield_modes = 2113;
@@ -5295,246 +1565,312 @@
d2 = 4;
icon_state = "0-4"
},
-/turf/simulated/floor/tiled/techfloor/grid,
+/turf/simulated/floor/tiled/eris/steel/bar_flat,
/area/aro2/boatdeck)
-"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{
+"ng" = (
+/obj/structure/railing/grey{
dir = 4
},
-/turf/simulated/floor/carpet/bcarpet,
-/area/shuttle/aroboat2)
-"uD" = (
-/obj/structure/railing/grey{
- 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,
-/area/aro2/portbay)
-"wj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 1
- },
+/turf/simulated/floor/tiled/eris/steel/cyancorner,
+/area/aro2/boatdeck)
+"nn" = (
/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ 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)
+"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;
+ 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/carpet/blue,
-/area/aro2/frontroom)
-"xe" = (
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/aroboat2)
-"xw" = (
+/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)
+"nY" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/obj/structure/cable/cyan{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/aroboat2)
-"xH" = (
-/obj/effect/shuttle_landmark{
- base_area = /area/space;
- base_turf = /turf/space;
- landmark_tag = "aronai2_aft";
- name = "Aft"
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -25
},
-/turf/space,
-/area/space)
-"xO" = (
-/obj/effect/floor_decal/industrial/loading{
- dir = 4
- },
-/turf/simulated/floor/tiled/monotile,
-/area/aro2/portbay)
-"ye" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/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" = (
-/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/structure/cable/cyan{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/shuttle/aroboat2)
-"AL" = (
-/obj/effect/shuttle_landmark{
- base_area = /area/space;
- base_turf = /turf/space;
- landmark_tag = "aronai2_fore";
- name = "Fore"
- },
-/turf/space,
-/area/space)
-"Be" = (
-/obj/effect/floor_decal/industrial/loading{
- dir = 4
- },
-/turf/simulated/floor/tiled/monotile,
+/turf/simulated/floor/tiled/eris/dark,
/area/aro2/starboardbay)
-"BL" = (
-/obj/structure/table/steel,
-/turf/simulated/floor/tiled/techfloor,
-/area/aro2/airarea)
-"Cp" = (
+"oi" = (
+/obj/structure/cable/cyan,
+/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{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ icon_state = "0-4"
},
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/aro2/frontroom)
-"CQ" = (
-/obj/effect/floor_decal/spline/fancy/wood/corner{
+/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)
+"os" = (
+/obj/machinery/light{
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 = 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 = 2;
+ icon_state = "pdoor1";
+ id = "aroshipshutter"
+ },
+/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/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)
+"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
+ },
+/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)
+"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/floor/carpet/blue,
+/turf/simulated/wall/r_wall,
+/area/aro2/airarea)
+"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;
+ icon_state = "2-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/steel/bar_flat,
/area/aro2/frontroom)
-"Ey" = (
+"ql" = (
+/obj/machinery/light{
+ dir = 8
+ },
/obj/structure/cable/cyan{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 1
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/turf/simulated/floor/wood,
-/area/aro2/frontroom)
-"EI" = (
-/obj/structure/bed/chair/wood{
- dir = 4
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -25
},
-/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" = (
+/turf/simulated/floor/tiled/eris/dark,
+/area/aro2/portbay)
+"qn" = (
/obj/machinery/light{
- dir = 4
- },
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/aro2/frontroom)
-"FA" = (
-/obj/structure/bed/chair/bay/comfy/blue{
- dir = 8
- },
-/turf/simulated/floor/carpet/bcarpet,
-/area/shuttle/aroboat2)
-"FY" = (
-/obj/effect/floor_decal/industrial/outline,
-/obj/structure/closet/crate/large,
-/turf/simulated/floor/tiled/monotile,
-/area/shuttle/aroboat2)
-"GX" = (
-/obj/structure/table/steel,
-/obj/machinery/recharger,
-/turf/simulated/floor/tiled/monotile,
-/area/shuttle/aroboat2)
-"Hw" = (
-/obj/effect/floor_decal/industrial/warning/dust{
dir = 1
},
-/obj/effect/floor_decal/industrial/warning/dust,
-/turf/simulated/floor/airless,
+/turf/simulated/floor/carpet/oracarpet,
/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" = (
+"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"
@@ -5548,70 +1884,947 @@
pixel_x = -22;
pixel_y = 0
},
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled/eris/dark/cargo,
/area/shuttle/aroboat2)
-"Iv" = (
-/obj/structure/railing/grey{
- dir = 1
+"qA" = (
+/obj/structure/cable/cyan{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-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"
+/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)
-"JF" = (
-/obj/structure/table/steel,
-/turf/simulated/floor/tiled/techfloor,
+"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)
+"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/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)
-"JS" = (
-/turf/simulated/floor/tiled/monotile,
-/area/shuttle/aroboat2)
-"Kd" = (
+"qQ" = (
+/obj/structure/bed/chair/bay/comfy/blue,
/turf/simulated/floor/carpet/bcarpet,
/area/shuttle/aroboat2)
-"Ki" = (
+"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,
-/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{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
-/obj/machinery/computer/ship/helm{
- req_one_access = list(101)
+/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"
},
-/turf/simulated/floor/tiled/techfloor,
+/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)
+"rA" = (
+/turf/simulated/floor/tiled/eris/dark,
/area/aro2/observation)
-"KC" = (
-/obj/machinery/light,
-/obj/effect/floor_decal/spline/fancy/wood{
+"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/frontroom)
-"Lk" = (
-/obj/machinery/atmospherics/binary/pump/aux,
-/turf/simulated/floor/tiled/dark,
+/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)
-"LV" = (
-/obj/machinery/door/airlock/multi_tile/glass,
-/obj/structure/fans/hardlight,
+"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)
+"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)
+"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"
+ },
+/obj/machinery/door/firedoor/glass{
+ dir = 2
+ },
+/turf/simulated/floor/plating/eris/under,
+/area/shuttle/aroboat2)
+"tX" = (
+/obj/structure/bed/chair/bay/comfy/blue{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/shuttle/aroboat2)
+"ue" = (
/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/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
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/simulated/floor/tiled/eris/techmaint_perforated,
+/area/aro2/portbay)
+"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)
+"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{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/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;
+ 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)
+"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{
+ 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)
+"vJ" = (
+/obj/machinery/vending/cola{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/techmaint_perforated,
+/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)
+"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)
+"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
+ },
+/obj/structure/cable/cyan{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/bed/chair/wood{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/steel/bar_light,
+/area/aro2/frontroom)
+"xt" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/red{
+ dir = 1
+ },
+/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;
+ base_turf = /turf/space;
+ landmark_tag = "aronai2_aft";
+ name = "Aft"
+ },
+/turf/space,
+/area/space)
+"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 = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/cyancorner,
+/area/aro2/dining)
+"yc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/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;
+ 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"
+ },
+/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/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
+ },
+/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)
+"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
+ },
+/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)
+"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;
+ base_turf = /turf/space;
+ landmark_tag = "aronai2_fore";
+ name = "Fore"
+ },
+/turf/space,
+/area/space)
+"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;
@@ -5624,121 +2837,285 @@
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{
+"AT" = (
+/obj/structure/table/fancyblack,
+/obj/machinery/atmospherics/unary/vent_pump/on{
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
+/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"
},
-/turf/simulated/floor/carpet/blue,
-/area/aro2/frontroom)
-"NI" = (
-/obj/machinery/recharge_station,
-/turf/simulated/floor/tiled/dark,
-/area/shuttle/aroboat2)
-"NZ" = (
-/obj/machinery/light{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
},
-/obj/structure/closet/crate/bin,
-/turf/simulated/floor/tiled/techfloor/grid,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/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/tiled/eris/techmaint_cargo,
/area/shuttle/aroboat2)
-"Oh" = (
-/obj/effect/floor_decal/techfloor/orange{
+"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
},
-/obj/machinery/computer/ship/engines,
-/turf/simulated/floor/tiled/techfloor,
-/area/aro2/observation)
-"Ol" = (
+/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 = 5
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/aroboat2)
-"Ow" = (
+/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{
- 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{
- dir = 8
- },
+/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/machinery/light_switch{
- dir = 4;
- pixel_x = -24;
- pixel_y = 6
- },
-/obj/machinery/vending/dinnerware{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/wood,
-/area/aro2/dining)
-"Pk" = (
-/obj/structure/window/plastitanium/full,
-/turf/simulated/floor/tiled/techmaint,
-/area/aro2/surfluid)
-"Qj" = (
-/obj/structure/window/plastitanium/full,
-/obj/structure/window/plastitanium{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/door/blast/regular{
+/turf/simulated/floor/tiled/eris/techmaint_panels,
+/area/aro2/room1)
+"Dm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/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 = "aroboatshut"
+ id = "aroshipshutter"
},
/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/techmaint,
+/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)
-"Qz" = (
-/turf/space,
-/area/space)
-"Rx" = (
+"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/dark,
+/turf/simulated/floor/tiled/eris/dark/cargo,
/area/shuttle/aroboat2)
-"Ry" = (
+"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)
+"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;
@@ -5755,201 +3132,226 @@
d2 = 8;
icon_state = "1-8"
},
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/tiled/eris/dark,
/area/aro2/boatdeck)
-"RD" = (
+"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 = 4;
- icon_state = "0-4"
+ 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/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/eris/dark/cargo,
+/area/shuttle/aroboat2)
+"Ge" = (
+/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/eris/steel/cyancorner,
+/area/aro2/boatdeck)
+"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)
+"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)
+"GL" = (
+/obj/structure/cable/cyan{
+ d2 = 8;
+ icon_state = "0-8"
},
/obj/machinery/power/apc{
dir = 2;
name = "south bump";
pixel_y = -28
},
-/obj/effect/floor_decal/spline/fancy/wood{
+/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{
+ 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/wood,
-/area/aro2/frontroom)
-"RZ" = (
-/obj/structure/table/bench/wooden,
-/turf/simulated/floor/wood,
-/area/aro2/frontroom)
-"SB" = (
-/obj/structure/railing/grey{
+/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/structure/cable/cyan{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/techfloor,
-/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" = (
-/obj/structure/window/plastitanium/full,
-/obj/structure/window/plastitanium,
-/obj/machinery/door/blast/regular{
- dir = 8;
- icon_state = "pdoor1";
- id = "aroboatshut"
+/turf/simulated/floor/tiled/eris/dark,
+/area/aro2/portbay)
+"Ht" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
},
-/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" = (
-/obj/structure/cable/cyan{
- d1 = 4;
- d2 = 8;
- icon_state = "4-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,
+/turf/simulated/floor/tiled/eris/dark,
/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)
-"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" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/spline/fancy/wood/corner,
-/turf/simulated/floor/wood,
-/area/aro2/frontroom)
-"Yl" = (
-/obj/effect/shuttle_landmark{
- base_area = /area/space;
- base_turf = /turf/space;
- landmark_tag = "aronai2_port";
- name = "Port"
- },
-/turf/space,
-/area/space)
-"Yx" = (
-/obj/structure/bed/chair/bay/comfy/blue{
- dir = 1
- },
-/turf/simulated/floor/tiled/monotile,
-/area/shuttle/aroboat2)
-"ZP" = (
+"HB" = (
/obj/machinery/door/airlock/multi_tile/glass,
/obj/structure/fans/hardlight,
+/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/map_helper/airlock/door/simple,
/obj/machinery/door/blast/regular{
dir = 8;
@@ -5962,8 +3364,1637 @@
name = "exterior shutters";
pixel_x = -28
},
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/tiled/eris/white/gray_perforated,
/area/shuttle/aroboat2)
+"HF" = (
+/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/starboardbay)
+"HH" = (
+/obj/machinery/ion_engine{
+ dir = 1;
+ icon_state = "nozzle"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/plating/eris/under,
+/area/aro2/airarea)
+"HO" = (
+/obj/machinery/shower{
+ dir = 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
+ },
+/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)
+"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
+ },
+/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)
+"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,
+/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)
+"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;
+ 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)
+"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{
+ 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)
+"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
+ },
+/turf/simulated/floor/wood,
+/area/aro2/dining)
+"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)
+"Lv" = (
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/metalfoam,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/aro2/cockpit)
+"LD" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark,
+/area/aro2/surfluid)
+"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)
+"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;
+ 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)
+"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,
+/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)
+"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;
+ 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)
+"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
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/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
+ },
+/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)
+"OH" = (
+/turf/simulated/floor/plating/eris/under/airless,
+/area/aro2/cockpit)
+"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)
+"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)
+"Qh" = (
+/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,
+/area/aro2/observation)
+"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)
+"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;
+ 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)
+"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
+ },
+/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)
+"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)
+"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;
+ 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/plating/eris/under,
+/area/shuttle/aroboat2)
+"Ul" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/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)
+"UY" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/machinery/atmospherics/pipe/simple/hidden/aux{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/eris/techmaint_perforated,
+/area/aro2/starboardbay)
+"Ve" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26
+ },
+/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"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/turf/simulated/floor/tiled/eris/steel/cyancorner,
+/area/aro2/boatdeck)
+"VN" = (
+/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/powerarea)
+"VT" = (
+/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/eris/dark,
+/area/aro2/surfluid)
+"VV" = (
+/obj/structure/table/fancyblack,
+/turf/simulated/floor/carpet/bcarpet,
+/area/shuttle/aroboat2)
+"VZ" = (
+/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,
+/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)
+"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
+ },
+/turf/simulated/floor/tiled/eris/dark,
+/area/aro2/starboardbay)
+"XN" = (
+/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)
+"XP" = (
+/obj/machinery/shipsensors{
+ dir = 1
+ },
+/turf/simulated/floor/plating/eris/under/airless,
+/area/aro2/cockpit)
+"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;
+ base_turf = /turf/space;
+ landmark_tag = "aronai2_port";
+ name = "Port"
+ },
+/turf/space,
+/area/space)
+"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 = 1;
+ icon_state = "pdoor1";
+ id = "aroboatshut"
+ },
+/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 +12316,6 @@ Qz
Qz
Qz
Qz
-gO
Qz
Qz
Qz
@@ -13293,7 +12323,8 @@ Qz
Qz
Qz
Qz
-gO
+Qz
+Qz
Qz
Qz
Qz
@@ -13427,15 +12458,15 @@ Qz
Qz
Qz
Qz
-gP
+PF
lA
-hB
-hB
-hB
-hB
-hB
+Ki
+Ki
+Ki
+Ki
+Ki
lA
-gP
+PF
Qz
Qz
Qz
@@ -13571,11 +12602,11 @@ Qz
fT
gP
fU
-fF
-fF
-uJ
-xO
-xO
+ep
+ep
+Jh
+BI
+BI
fU
gP
fT
@@ -13713,11 +12744,11 @@ fT
fT
gQ
fU
-gx
-hP
-hP
-hP
-if
+sF
+sF
+sF
+sF
+Tx
fU
gQ
fT
@@ -13854,13 +12885,13 @@ fT
fT
fU
gQ
-hi
-gy
-hQ
-hQ
-hQ
-ig
-ij
+OB
+sF
+er
+sF
+WS
+pP
+Ao
gQ
fU
fT
@@ -13973,7 +13004,6 @@ Qz
Qz
Qz
Qz
-du
Qz
Qz
Qz
@@ -13983,7 +13013,8 @@ Qz
Qz
Qz
Qz
-eK
+Qz
+MR
Qz
Qz
Qz
@@ -13995,15 +13026,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,23 +13130,23 @@ Qz
Qz
Qz
Qz
-ab
-ae
+Qz
+bd
ah
ah
-aF
-aF
-aF
+MG
+MG
+MG
ah
ah
bS
bS
-cr
-cr
-cr
+IB
+IB
+IB
bS
bS
-dv
+Ed
Qz
Qz
Qz
@@ -14126,9 +13157,9 @@ ar
ar
ar
ak
-eW
-eW
-eW
+Pm
+Pm
+Pm
ar
ar
ar
@@ -14136,28 +13167,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 +13276,9 @@ Qz
af
ao
ao
-RZ
-RZ
-RZ
+We
+We
+We
ao
ao
bT
@@ -14268,34 +13299,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 +13417,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 +13437,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 +13557,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 +13699,61 @@ Qz
Qz
Qz
Qz
-aq
-RZ
-sg
-ax
-aH
-nA
-Tn
-RD
+bV
+We
+zV
+us
+ED
+gr
+nv
+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 +13841,64 @@ Qz
Qz
Qz
Qz
-aq
-RZ
-sg
-ax
-UG
-aH
-Mf
-Ey
+bV
+We
+zV
+us
+AT
+ED
+uA
+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
+MU
+pW
+km
+EQ
ll
jx
-lL
+Lp
Qz
Qz
Qz
@@ -14954,62 +13985,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 +14128,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
+qO
+ZT
+km
+ke
ll
jx
jx
@@ -15235,65 +14266,65 @@ Qz
Qz
Qz
Qz
-ab
-ai
-ai
-ap
-ap
-UK
-bg
-bp
-bI
-bU
-cj
-cx
-cx
-da
-bW
-bW
-dA
-dL
-dT
-bU
-ed
-ec
-ec
-et
-cM
-Vx
-Vx
-NI
-UZ
-UN
-Vx
-Vx
-fJ
-fP
-fW
-ge
-gn
-gE
-gB
-Iv
-Xg
-Xg
-Xg
-Xg
-Xg
-na
-iD
-iX
-je
-jm
-jE
-jW
-kk
-jW
-jW
-lb
-ll
-jx
Qz
+Wg
+ai
+ap
+ap
+vN
+WY
+zV
+oU
+bU
+xb
+dF
+dF
+dF
+QW
+QW
+dk
+dL
+hB
+bU
+iQ
+ds
+ds
+Nz
+Av
+Vx
+Vx
+gO
+KI
+Hh
+Vx
+Vx
+RY
+fo
+Cz
+ZG
+YQ
+rt
+nO
+PO
+pQ
+pQ
+pQ
+pQ
+pQ
+ms
+rx
+nO
+nO
+jm
+EY
+km
+nn
+km
+km
+eE
+za
+lu
+el
Qz
Qz
Qz
@@ -15383,60 +14414,60 @@ ah
ah
ao
ao
-bh
-bq
-bJ
+pe
+pe
+pe
bU
-ck
-cy
-cL
-db
-bW
-bW
-dB
-dM
-dU
+yK
+vJ
+Sr
+Sp
+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
-lm
-lu
-lu
-lz
+QN
+Gu
+ej
+SN
+fC
+Lk
+ll
+jx
+jx
+Qz
Qz
Qz
Qz
@@ -15533,46 +14564,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 +14699,58 @@ Qz
az
az
aL
-br
-bK
-bX
-cl
+fX
+vo
+jf
+ec
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
+ds
+ds
+NT
+Ae
+Ka
+Lu
+MH
+El
+im
+Lu
+Ka
+Ht
+FZ
+ds
+DD
+Nu
+qA
+nO
gd
-hH
-hH
-ib
-hH
-hH
+yr
+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 +14839,60 @@ Qz
Qz
Qz
aK
-Hw
+OH
bi
-bs
-bw
-bY
-bv
-cA
-cM
-dc
-dl
-dl
-dl
-dl
-dl
-dY
-ee
-eh
-em
-ev
-cM
+LE
+PM
+fX
+XN
+eP
+nu
+nu
+ng
+ng
+ng
+ng
+ng
+nu
+ds
+eF
+Ib
+il
+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
+RN
+hE
+gy
+hE
+hE
+hE
+hE
+hE
+gy
+VT
+YQ
+YQ
+gT
+Vo
+KY
+Tk
+GN
+GN
+GN
+Kg
+EO
+DC
Qz
Qz
Qz
@@ -15950,60 +14981,60 @@ Qz
Qz
Qz
aK
-nm
+XP
bi
-bt
-bL
-bZ
-cm
-dp
-cN
-dd
+fX
+Ig
+fX
+Jw
+rE
+TU
+WV
dm
dm
dm
dm
dm
-dZ
-ee
-ts
-en
-ev
-cM
-oQ
-HL
-nk
-eZ
+Sx
+eY
+Tf
+sc
+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
+kK
+nO
+TL
+nO
+nO
+nO
+nO
+nO
+TL
+Ii
+nO
+nO
+Ns
+EO
+rA
+Qh
+GN
+GN
+GN
+Xt
+EO
+DC
Qz
Qz
Qz
@@ -16094,58 +15125,58 @@ Qz
az
az
aL
-bu
-bv
-bv
-cn
+qn
+XN
+XN
+uL
aX
-cO
-dd
+wz
+WV
dm
dq
dq
dq
dm
-dZ
-ec
-SB
-Vu
-Ry
-cM
-VX
-oe
-Yx
-eZ
+Sx
+eY
+mU
+CG
+Lr
+Av
+wh
+HT
+sg
+El
qQ
VV
-TN
-fJ
-fQ
-ec
-Pk
-gs
-gI
-gY
+Uk
+RY
+FZ
+ds
+DD
+zE
+kK
+fR
gd
-hI
-hI
-ic
-hI
-hI
+iC
+iC
+LD
+NP
+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
@@ -16236,53 +15267,53 @@ az
az
aL
aL
-bv
-bv
-tT
-co
+XN
+XN
+Me
+yx
aX
-cP
-dd
+OV
+WV
dm
dq
dC
dq
dm
-dZ
-ec
-ec
-ec
-et
-cM
+Sx
+ds
+iM
+Vm
+Fz
+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 +15408,60 @@ ar
az
aL
aL
-bj
-bw
-bv
-cb
-cp
+oI
+PM
+XN
+FF
+Lv
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
-ls
-ly
-ly
-lD
+HQ
+nB
+Py
+oy
+sl
+Eu
+lr
+jS
+jS
+Qz
Qz
Qz
Qz
@@ -16513,8 +15544,8 @@ Qz
Qz
Qz
Qz
-ac
-aj
+Qz
+MR
ar
as
as
@@ -16525,53 +15556,53 @@ 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
-lr
-jS
-Qz
+fl
+hh
+Fn
+YL
+hh
+Wv
+qb
+ly
+OK
Qz
Qz
Qz
@@ -16659,58 +15690,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 +15831,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 +15974,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
+GL
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 +16127,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
+yc
+Mx
+ds
+kX
+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 +16269,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 +16419,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 +16565,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,23 +16680,23 @@ Qz
Qz
Qz
Qz
-ad
-an
+Qz
+Jg
av
av
-aS
+Rq
av
av
bD
-bR
+SD
bD
bD
cH
-cX
+le
cH
cH
ar
-ak
+aI
Qz
Qz
Qz
@@ -17676,9 +16707,9 @@ ar
ar
ar
ak
-fg
-fg
-fg
+sn
+sn
+sn
ar
ar
ar
@@ -17686,28 +16717,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 +16838,6 @@ Qz
Qz
Qz
Qz
-dH
Qz
Qz
Qz
@@ -17817,7 +16847,8 @@ Qz
Qz
Qz
Qz
-dH
+Qz
+aI
Qz
Qz
Qz
@@ -17829,15 +16860,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 +17003,13 @@ gb
gb
ga
hf
-hA
-gM
-hX
-hX
-hX
-ih
-it
+kd
+Bg
+ei
+Bg
+HP
+DG
+XJ
hf
ga
gb
@@ -18115,11 +17146,11 @@ gb
gb
hf
ga
-gN
-hY
-hY
-hY
-ii
+Bg
+Bg
+Bg
+Bg
+wY
ga
hf
gb
@@ -18257,11 +17288,11 @@ Qz
gb
hg
ga
-mD
-mD
-Ul
-Be
-Be
+Wo
+Wo
+Wu
+AK
+AK
ga
hg
gb
@@ -18397,15 +17428,15 @@ Qz
Qz
Qz
Qz
-hg
+HF
lC
-hO
-hO
-hO
-hO
-hO
+oG
+oG
+oG
+oG
+oG
lC
-hg
+HF
Qz
Qz
Qz
@@ -18539,7 +17570,6 @@ Qz
Qz
Qz
Qz
-hh
Qz
Qz
Qz
@@ -18547,7 +17577,8 @@ Qz
Qz
Qz
Qz
-hh
+Qz
+Qz
Qz
Qz
Qz
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-03-surface3.dmm b/maps/tether/tether-03-surface3.dmm
index 95884b3bc1..bc11aa0fbe 100644
--- a/maps/tether/tether-03-surface3.dmm
+++ b/maps/tether/tether-03-surface3.dmm
@@ -28549,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{
@@ -28650,12 +28667,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
@@ -28685,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;
@@ -28855,19 +28890,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 +28940,23 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/outpost/xenobiology/outpost_hallway)
-"cZe" = (
-/obj/structure/bed/chair/bay/chair{
+"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 = "bay_chair_preview"
+ icon_state = "pdoor0";
+ id = "shuttle blast";
+ name = "Shuttle Blast Doors";
+ opacity = 0
},
-/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)
+/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,
@@ -28955,21 +28980,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;
@@ -29056,24 +29066,32 @@
/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{
+ 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{
- icon_state = "2-4"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
-/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)
+/turf/simulated/floor/tiled/eris/techmaint_panels,
+/area/shuttle/tourbus/cockpit)
"dKj" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor/corner{
@@ -29123,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;
@@ -29162,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{
@@ -29197,29 +29231,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 +29260,10 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/lobby)
+"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
@@ -29259,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
@@ -29301,35 +29326,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
@@ -29349,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;
@@ -29438,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{
@@ -29528,6 +29557,26 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/patient_a)
+"fYr" = (
+/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)
"ghf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -29561,30 +29610,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,30 +29617,6 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/testingrange)
-"guv" = (
-/obj/structure/bed/chair/bay/chair{
- dir = 4;
- icon_state = "bay_chair_preview"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10;
- icon_state = "borderfloorcorner2";
- pixel_x = 0
- },
-/obj/effect/floor_decal/corner/blue/bordercorner2{
- dir = 10
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/shuttle/tourbus/general)
"gAF" = (
/obj/structure/cable/green{
d1 = 4;
@@ -29640,17 +29641,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,
@@ -29703,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;
@@ -29774,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{
@@ -29824,6 +29832,21 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
+"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/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/eris/dark/golden,
+/area/shuttle/tourbus/general)
"hEN" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
@@ -29912,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
@@ -29922,30 +29957,13 @@
},
/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{
+"ivq" = (
+/obj/machinery/computer/ship/engines{
dir = 8;
- icon_state = "steel_decals_central5"
+ icon_state = "computer"
},
-/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)
+/turf/simulated/floor/tiled/eris/white/orangecorner,
+/area/shuttle/tourbus/cockpit)
"iBA" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -30244,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;
@@ -30259,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;
@@ -30276,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,
@@ -30293,6 +30349,15 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
+"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" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -30302,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,
@@ -30319,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
@@ -30368,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{
@@ -30471,6 +30582,21 @@
},
/turf/simulated/floor/wood,
/area/library)
+"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{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/eris/dark/golden,
+/area/shuttle/tourbus/general)
"lSv" = (
/obj/structure/cable/green{
d1 = 1;
@@ -30525,34 +30651,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
@@ -30627,22 +30725,15 @@
},
/turf/simulated/floor/tiled/techfloor/grid,
/area/maintenance/lower/medsec_maintenance)
-"mDr" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
+"mDf" = (
+/obj/structure/bed/chair/bay/chair{
+ dir = 4;
+ icon_state = "bay_chair_preview"
+ },
+/obj/machinery/light/small{
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,
+/turf/simulated/floor/tiled/eris/dark/golden,
/area/shuttle/tourbus/general)
"mFq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -30676,45 +30767,6 @@
/obj/item/weapon/reagent_containers/glass/beaker/vial/imidazoline,
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
-"mIX" = (
-/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/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,
-/area/shuttle/tourbus/general)
"mRs" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 8
@@ -30807,39 +30859,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;
@@ -30867,18 +30886,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;
@@ -30901,25 +30908,6 @@
},
/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{
@@ -31041,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,
@@ -31166,6 +31177,10 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
+"pwF" = (
+/obj/machinery/computer/ship/sensors,
+/turf/simulated/floor/tiled/eris/white/orangecorner,
+/area/shuttle/tourbus/cockpit)
"pzH" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -31215,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
@@ -31240,22 +31263,6 @@
},
/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,
-/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/steel_dirty,
-/area/shuttle/tourbus/general)
"qfz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -31379,36 +31386,15 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
-"rjV" = (
-/obj/structure/bed/chair/bay/chair{
- dir = 8;
- icon_state = "bay_chair_preview"
+"rbR" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
},
-/obj/effect/floor_decal/borderfloor{
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
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,
+/turf/simulated/floor/tiled/eris/dark/golden,
/area/shuttle/tourbus/general)
-"rpg" = (
-/obj/structure/handrail{
- dir = 8
- },
-/obj/machinery/light/small,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/shuttle/tourbus/cockpit)
"rxh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
dir = 10
@@ -31498,32 +31484,6 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/recreation_area_restroom)
-"sur" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/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)
"suT" = (
/obj/structure/cable/green{
d1 = 4;
@@ -31545,7 +31505,16 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
-"sEq" = (
+"sFW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/tether/surfacebase/shuttle_pad)
+"sGV" = (
/obj/machinery/light/small,
/obj/structure/cable{
d1 = 1;
@@ -31560,17 +31529,8 @@
/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
dir = 9
},
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled/eris/dark/bluecorner,
/area/shuttle/tourbus/engines)
-"sFW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- dir = 1;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/monotile,
-/area/tether/surfacebase/shuttle_pad)
"sJC" = (
/obj/structure/cable/green{
d1 = 1;
@@ -31700,36 +31660,25 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
-"tdA" = (
-/obj/structure/bed/chair/bay/chair{
- dir = 4;
- icon_state = "bay_chair_preview"
+"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/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 = 1
- },
-/obj/effect/floor_decal/corner/blue/bordercorner2{
- dir = 1;
- icon_state = "bordercolorcorner2"
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/shuttle/tourbus/general)
-"tla" = (
-/obj/structure/cable{
- d1 = 2;
+/obj/effect/overmap/visitable/ship/landable/tourbus,
+/obj/structure/cable/green{
+ d1 = 4;
d2 = 8;
- icon_state = "2-8"
+ icon_state = "4-8"
},
-/turf/simulated/floor/tiled/white,
-/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
@@ -31803,15 +31752,19 @@
},
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"tKs" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+"tLv" = (
+/obj/machinery/power/smes/buildable{
+ charge = 500000
},
-/turf/simulated/floor/tiled/steel_dirty,
-/area/shuttle/tourbus/general)
+/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,
@@ -31836,23 +31789,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
@@ -31888,34 +31824,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 +31841,13 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/pool)
+"uhm" = (
+/obj/structure/bed/chair/bay/chair{
+ dir = 8;
+ icon_state = "bay_chair_preview"
+ },
+/turf/simulated/floor/tiled/eris/dark/golden,
+/area/shuttle/tourbus/general)
"uxo" = (
/obj/effect/floor_decal/spline/plain{
dir = 1
@@ -31956,27 +31871,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 +31927,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{
@@ -32098,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
@@ -32199,22 +32090,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,7 +32118,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/shuttle_pad)
-"wzi" = (
+"wyi" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
@@ -32258,7 +32133,7 @@
opacity = 0
},
/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
+/turf/simulated/floor/plating/eris/under,
/area/shuttle/tourbus/general)
"wGK" = (
/obj/structure/bed/chair/wood{
@@ -32273,10 +32148,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
@@ -32290,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
@@ -32330,14 +32213,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 +32285,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 +32300,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,14 +32356,6 @@
/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,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/shuttle/tourbus/general)
"xIO" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -32536,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{
@@ -32544,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
@@ -43584,13 +43453,13 @@ aJn
aKa
aKU
aKU
-rpg
+lCq
jvK
jvK
jvK
-mDr
+bkN
jHw
-mfi
+jML
jHw
jpB
qWU
@@ -43728,13 +43597,13 @@ aKU
aKU
jvK
jvK
-xoe
+kdx
jvK
-cZe
-guv
-eQs
-mPg
-sur
+oPm
+mDf
+eiO
+oPm
+fYr
qwm
qwm
aKU
@@ -43868,16 +43737,16 @@ ats
aKD
aKU
aKU
-tSk
-wNz
-wqP
+ddn
+eCG
+oLR
jvK
-tdA
-dGZ
-tKs
-mIX
-noN
-vfB
+oPm
+kmK
+xOa
+dVW
+kun
+kBF
qom
aKU
avs
@@ -44010,16 +43879,16 @@ aJn
aKa
aKU
aKU
-tSk
-xdJ
-tla
-nXl
-tKs
-bKm
-gJT
-xHL
-xxJ
-sEq
+ddn
+pNk
+vrU
+dJm
+kiw
+kcC
+eGv
+lFc
+dGZ
+sGV
qom
aKU
aOI
@@ -44152,16 +44021,16 @@ aJn
aKa
aKU
aKU
-tSk
-dhv
-mJR
+ddn
+pwF
+hlF
jvK
-esm
-dhS
-dHR
-eNn
-qff
-cMs
+uhm
+gUL
+rbR
+hCB
+wQf
+tLv
fNt
aKU
aOI
@@ -44296,13 +44165,13 @@ aKU
aKU
jvK
jvK
-eMW
+ivq
jvK
-uDa
-rjV
-onV
-gqX
-ubn
+uhm
+fcg
+tcW
+iqb
+fru
qwm
qwm
aKU
@@ -44436,13 +44305,13 @@ aJn
aKa
aKU
aKU
-uyk
+xXf
jvK
jvK
jvK
-wzi
+wyi
jHw
-isR
+caw
jHw
gHh
qWU
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
diff --git a/maps/tether/tether-07-station3.dmm b/maps/tether/tether-07-station3.dmm
index 10ab6af956..899a81bdf7 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;
@@ -6067,30 +5696,15 @@
/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";
+/obj/item/device/radio/intercom{
pixel_y = -24
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
+/obj/machinery/light,
+/obj/structure/bed/chair/shuttle{
+ dir = 1
},
-/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)
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/shuttle/excursion/general)
"akz" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 1
@@ -6269,30 +5883,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 +6191,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 +6639,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 +15095,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 +23583,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 +23646,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 +23663,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 +23718,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 +23734,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 +23753,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 +23879,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 +24013,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 +26045,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 +26140,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 +26189,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 +26216,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 +26259,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 +26276,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 +26388,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 +26411,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 +26507,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 +26557,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 +26656,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 +26737,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 +26784,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 +26803,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 +26838,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 +26848,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 +26888,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 +26897,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 +26920,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 +26936,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 +27038,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 +27052,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 +27086,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 +27172,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 +27191,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 +27229,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 +27242,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 +27257,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 +27273,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 +27303,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 +27329,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 +27341,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 +27348,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 +27363,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 +27431,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 +27486,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 +27508,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 +27543,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 +27563,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 +27607,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 +27625,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 +27637,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,17 +27667,6 @@
},
/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
@@ -29085,29 +27674,14 @@
/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)
+/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,
@@ -29149,16 +27723,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 +27746,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 +27778,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 +27800,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 +27814,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 +27846,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 +27870,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 +27885,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 +27913,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 +27980,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 +27997,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 +28018,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 +28035,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 +28043,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 +28052,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 +28091,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 +28102,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 +28118,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 +28131,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 +28146,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 +28187,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 +28211,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 +28233,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 +28240,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 +28250,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 +28595,22 @@
/obj/machinery/light,
/turf/simulated/floor/tiled,
/area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar)
+"bfa" = (
+/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)
"bmI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
@@ -30563,22 +28620,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
@@ -30610,12 +28651,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,7 +28673,65 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/warden)
-"bDn" = (
+"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/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/engines)
+"bJB" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/security{
+ name = "Armory Storage";
+ secured_wires = 1
+ },
+/obj/machinery/door/blast/regular{
+ dir = 1;
+ id = "armoryblue";
+ name = "Blue Armory"
+ },
+/obj/structure/sign/department/armory{
+ color = "#3385ff";
+ name = "BLUE ARMORY";
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 8
+ },
+/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"
},
@@ -30664,30 +28757,28 @@
name = "Securiship Dock"
},
/obj/effect/overmap/visitable/ship/landable/securiship,
-/turf/simulated/floor/tiled/techfloor/grid,
+/turf/simulated/floor/tiled/eris/techmaint_cargo,
/area/shuttle/securiship/general)
-"bJB" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/security{
- name = "Armory Storage";
- secured_wires = 1
+"bRO" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
},
/obj/machinery/door/blast/regular{
+ density = 0;
dir = 1;
- id = "armoryblue";
- name = "Blue Armory"
+ icon_state = "pdoor0";
+ id = "shuttle blast";
+ name = "Shuttle Blast Doors";
+ opacity = 0
},
-/obj/structure/sign/department/armory{
- color = "#3385ff";
- name = "BLUE ARMORY";
- pixel_x = 0;
- pixel_y = -32
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/universal{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
+/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{
@@ -30699,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,
@@ -30714,6 +28811,13 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
+"bYH" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/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
@@ -30723,15 +28827,79 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"cwr" = (
+"ccy" = (
+/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)
+"cgm" = (
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/shuttle/excursion/general)
+"ciI" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
icon_state = "4-8"
},
-/obj/structure/table/rack/shelf,
-/turf/simulated/floor/tiled/techmaint,
+/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/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;
@@ -30775,42 +28943,68 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/security_equiptment_storage)
-"cNP" = (
-/obj/machinery/computer/ship/helm{
- req_one_access = list(67,58)
+"cNv" = (
+/obj/machinery/power/terminal{
+ dir = 1;
+ icon_state = "term"
},
-/obj/effect/floor_decal/techfloor{
- dir = 9
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/shuttle/securiship/cockpit)
-"deE" = (
-/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/techmaint,
-/area/shuttle/securiship/general)
-"doX" = (
-/obj/machinery/light{
- dir = 8
+/turf/simulated/floor/tiled/eris/dark/techfloor,
+/area/shuttle/medivac/engines)
+"cQa" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/structure/bed/chair/bay/chair/padded/beige{
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 1
+ },
+/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;
- icon_state = "bay_chair_preview"
+ pixel_x = 0;
+ pixel_y = -28
},
-/turf/simulated/floor/tiled/techmaint,
+/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
@@ -30841,6 +29035,37 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
+"dzV" = (
+/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)
+"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{
@@ -30872,6 +29097,30 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
+"dFx" = (
+/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_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;
@@ -30894,6 +29143,40 @@
},
/turf/simulated/floor/tiled,
/area/security/hallway)
+"dYt" = (
+/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)
+"eaH" = (
+/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)
"ebj" = (
/obj/machinery/door/airlock/glass_external,
/obj/structure/cable/green{
@@ -30904,6 +29187,23 @@
/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
@@ -30924,18 +29224,68 @@
},
/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)
-"exP" = (
-/obj/structure/cable/green{
- icon_state = "2-4"
+"eug" = (
+/obj/structure/disposaloutlet{
+ dir = 4
},
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/securiship/general)
+/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{
@@ -30956,13 +29306,66 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armory/red)
-"ePT" = (
-/obj/machinery/power/smes/buildable/point_of_interest,
+"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"
},
-/turf/simulated/floor/tiled/techfloor/grid,
+/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{
@@ -30996,23 +29399,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{
@@ -31020,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;
@@ -31039,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
@@ -31053,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,
@@ -31084,6 +29517,12 @@
/obj/machinery/door/firedoor/glass/hidden/steel,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
+"fqf" = (
+/obj/machinery/sleeper{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white,
+/area/shuttle/medivac/general)
"fuV" = (
/obj/structure/bed/chair/comfy/brown,
/obj/machinery/holoposter{
@@ -31128,13 +29567,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"fGQ" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/bed/chair/bay/chair,
-/turf/simulated/floor/tiled/dark,
-/area/shuttle/securiship/general)
"fKd" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -31148,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{
@@ -31161,6 +29607,37 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
/area/security/armory/blue)
+"fZo" = (
+/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/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/machinery/portable_atmospherics/canister/phoron,
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor/tiled/eris/dark/techfloor,
+/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;
@@ -31174,30 +29651,6 @@
/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"
- },
-/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/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)
"gqZ" = (
/obj/effect/floor_decal/borderfloor{
dir = 1;
@@ -31209,24 +29662,24 @@
/obj/structure/table/steel,
/turf/simulated/floor/tiled,
/area/security/security_processing)
-"gxX" = (
-/obj/structure/cable/cyan{
- d2 = 8;
- icon_state = "0-8"
+"gvu" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
},
-/obj/structure/cable/cyan{
- d2 = 4;
- icon_state = "0-4"
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1"
},
-/obj/machinery/power/apc{
- alarms_hidden = 1;
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 28
+/turf/simulated/floor/tiled/eris/white,
+/area/shuttle/medivac/general)
+"gAZ" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
},
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/shuttle/securiship/engines)
+/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;
@@ -31262,16 +29715,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 +29740,34 @@
},
/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"
+"gER" = (
+/obj/machinery/body_scanconsole{
+ dir = 4
},
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/securiship/engines)
+/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
@@ -31348,6 +29810,12 @@
/obj/random/cutout,
/turf/simulated/floor,
/area/maintenance/station/ai)
+"gWG" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/white,
+/area/shuttle/medivac/general)
"gYC" = (
/obj/structure/cable{
d1 = 4;
@@ -31393,13 +29861,22 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"hoF" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
- dir = 1;
- icon_state = "map-fuel"
+"hpj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/shuttle/securiship/engines)
+/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
@@ -31420,20 +29897,29 @@
},
/turf/simulated/wall/rshull,
/area/shuttle/securiship/engines)
-"hEY" = (
-/obj/machinery/light{
+"hyH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4;
- icon_state = "tube1";
- pixel_x = 0
+ icon_state = "intact-scrubbers"
},
/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/aux,
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/securiship/general)
+/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
@@ -31448,6 +29934,26 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armory/red)
+"hIb" = (
+/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/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,
@@ -31478,6 +29984,13 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/warden)
+"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
@@ -31521,9 +30034,71 @@
/obj/machinery/light,
/turf/simulated/floor/tiled,
/area/security/hallway)
+"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
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/shuttle/excursion/general)
+"inX" = (
+/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)
+"irY" = (
+/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)
+"isN" = (
+/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)
+"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,
@@ -31538,6 +30113,44 @@
},
/turf/simulated/floor/tiled,
/area/security/hallway)
+"iEF" = (
+/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)
+"iEV" = (
+/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)
+"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;
@@ -31560,6 +30173,18 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
+"iPK" = (
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = -32
+ },
+/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;
@@ -31571,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;
@@ -31589,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;
@@ -31615,36 +30270,31 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"jjJ" = (
-/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+"jna" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
+/obj/machinery/atmospherics/pipe/simple/hidden/aux{
+ dir = 5;
+ icon_state = "intact-aux"
},
-/obj/structure/table/standard,
-/obj/item/weapon/tank/phoron,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/shuttle/securiship/engines)
+/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)
-"jrx" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
+"jsf" = (
+/obj/machinery/disposal/deliveryChute{
+ dir = 4
},
-/obj/structure/fuel_port{
- dir = 1
- },
-/turf/simulated/floor/tiled/monofloor{
- dir = 1
- },
-/area/shuttle/securiship/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{
@@ -31676,14 +30326,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"jHa" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/securiship/general)
"jHS" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -31696,6 +30338,14 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
+"jQx" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_perforated,
+/area/shuttle/excursion/cargo)
"jRD" = (
/obj/effect/floor_decal/borderfloor{
dir = 1;
@@ -31745,29 +30395,27 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"klB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
- dir = 5;
- icon_state = "intact-fuel"
+"kgD" = (
+/obj/structure/fuel_port{
+ pixel_x = 0;
+ pixel_y = 3
},
-/obj/machinery/alarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+/turf/simulated/floor/tiled/eris/techmaint,
+/area/shuttle/excursion/cargo)
+"khf" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
},
-/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,
+/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,
@@ -31782,9 +30430,16 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"kAs" = (
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/securiship/general)
+"krV" = (
+/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)
"kAC" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/security{
@@ -31801,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
@@ -31817,6 +30502,28 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
+"kOD" = (
+/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)
+"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;
@@ -31843,6 +30550,30 @@
},
/turf/simulated/floor/tiled,
/area/security/hallway)
+"kTn" = (
+/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)
+"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/excursion/general)
"lad" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 1
@@ -31852,15 +30583,38 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"lmZ" = (
+"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"
+ },
+/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{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ dir = 1;
+ icon_state = "1-2"
},
-/obj/effect/map_helper/airlock/door/ext_door,
-/turf/simulated/floor/tiled/techfloor/grid,
+/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,
@@ -31904,13 +30658,29 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"lFr" = (
-/obj/structure/cable/green{
- dir = 1;
- icon_state = "1-2"
+"lus" = (
+/turf/simulated/floor/tiled/eris/dark/violetcorener,
+/area/shuttle/medivac/general)
+"lxr" = (
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/securiship/engines)
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/eris/white,
+/area/shuttle/medivac/general)
+"lyg" = (
+/obj/machinery/computer/ship/engines{
+ dir = 4;
+ icon_state = "computer"
+ },
+/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,
@@ -31943,6 +30713,16 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
+"lSD" = (
+/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)
"meu" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
@@ -31970,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;
@@ -31991,6 +30792,27 @@
/obj/effect/map_helper/airlock/atmos/pump_out_external,
/turf/simulated/floor/airless,
/area/shuttle/securiship/general)
+"myk" = (
+/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)
+"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;
@@ -32009,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;
@@ -32032,6 +30867,24 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/teleporter/departing)
+"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{
dir = 9
@@ -32046,21 +30899,36 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/warden)
-"nig" = (
-/obj/effect/floor_decal/techfloor,
+"njt" = (
/obj/structure/cable/cyan{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "2-8"
},
-/turf/simulated/floor/tiled/techfloor/grid,
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
/area/shuttle/securiship/cockpit)
-"nin" = (
-/obj/structure/bed/chair/bay/chair{
- dir = 1;
- icon_state = "bay_chair_preview"
+"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;
+ pixel_x = -24;
+ pixel_y = 0
},
-/turf/simulated/floor/tiled/dark,
+/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" = (
/obj/effect/floor_decal/borderfloor{
@@ -32082,16 +30950,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 +30971,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 +31001,59 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/dark,
/area/security/nuke_storage)
-"nym" = (
-/obj/machinery/computer/shuttle_control/explore/securiship{
- dir = 8
+"nvd" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
},
-/turf/simulated/floor/tiled/techmaint,
+/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
@@ -32194,6 +31089,44 @@
/obj/structure/closet/l3closet/security,
/turf/simulated/floor/tiled/dark,
/area/security/armory/blue)
+"nRt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor,
+/area/shuttle/medivac/engines)
+"nVr" = (
+/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;
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/aux,
+/turf/simulated/floor/tiled/eris/steel/gray_perforated,
+/area/shuttle/securiship/general)
+"nYv" = (
+/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)
+"nYO" = (
+/turf/simulated/floor/tiled/eris/steel/gray_perforated,
+/area/shuttle/securiship/general)
"oiV" = (
/obj/effect/floor_decal/borderfloor{
dir = 1;
@@ -32225,6 +31158,33 @@
},
/turf/simulated/wall/rshull,
/area/shuttle/securiship/engines)
+"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
+ },
+/turf/simulated/floor/tiled/eris/dark/gray_perforated,
+/area/shuttle/excursion/cargo)
"opL" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -32243,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
@@ -32272,34 +31266,26 @@
},
/turf/simulated/floor/tiled,
/area/security/hallwayaux)
-"oEa" = (
-/obj/structure/bed/chair/bay/chair/padded/beige{
- dir = 4;
- icon_state = "bay_chair_preview"
+"oDi" = (
+/obj/machinery/door/window/brigdoor/northleft{
+ req_access = list(5)
},
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/securiship/general)
+/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)
"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
- },
-/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)
"oIb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 1
@@ -32321,6 +31307,88 @@
},
/turf/simulated/wall/rshull,
/area/shuttle/securiship/general)
+"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/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/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)
+"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
@@ -32335,6 +31403,31 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/security_equiptment_storage)
+"pfr" = (
+/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)
+"pgk" = (
+/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)
+"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;
@@ -32369,6 +31462,19 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armory/blue)
+"pwj" = (
+/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)
"pOc" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -32379,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
@@ -32393,6 +31505,29 @@
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
+"pTp" = (
+/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)
+"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{
@@ -32400,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{
@@ -32418,6 +31560,20 @@
},
/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"
@@ -32430,25 +31586,48 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/nuke_storage)
-"qwY" = (
+"qmq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5;
+ icon_state = "intact"
+ },
/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/gray_perforated,
+/area/shuttle/excursion/cargo)
+"qxW" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
/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/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)
+"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
@@ -32492,6 +31671,35 @@
},
/turf/simulated/floor/tiled,
/area/security/hallway)
+"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;
+ icon_state = "computer"
+ },
+/turf/simulated/floor/tiled/eris/white/bluecorner,
+/area/shuttle/excursion/cockpit)
"qYJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 1
@@ -32501,17 +31709,39 @@
},
/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
+"rbb" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1380;
+ id_tag = "expshuttle_docker_pump_out_internal"
},
-/obj/effect/map_helper/airlock/sensor/ext_sensor,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/shuttle/securiship/general)
+/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)
+"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"
+ },
+/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{
dir = 4;
@@ -32525,19 +31755,12 @@
/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"
+"rhv" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 1
},
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/securiship/general)
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/shuttle/excursion/general)
"rlz" = (
/obj/structure/cable/green{
d1 = 2;
@@ -32557,6 +31780,29 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hos)
+"rAB" = (
+/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)
"rBj" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -32632,24 +31878,13 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/security_equiptment_storage)
-"rFu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/aux{
- dir = 8;
- icon_state = "intact-aux"
+"rFo" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/handrail{
+ dir = 1
},
-/obj/machinery/airlock_sensor{
- 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/gray_perforated,
+/area/shuttle/excursion/cargo)
"rIS" = (
/obj/machinery/door/airlock/glass_mining{
name = "Delivery Office";
@@ -32669,14 +31904,16 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/quartermaster/delivery)
-"rUg" = (
+"rUl" = (
+/obj/structure/shuttle/engine/heater,
/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/aux,
-/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)
"rZt" = (
/obj/structure/cable/green{
d1 = 1;
@@ -32692,14 +31929,57 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armory/blue)
-"sio" = (
+"sdI" = (
+/obj/machinery/power/apc{
+ alarms_hidden = 1;
+ dir = 2;
+ name = "south bump";
+ pixel_y = -28;
+ req_access = list(67)
+ },
+/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
+ },
+/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)
+"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 = 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/dark/gray_perforated,
+/area/shuttle/excursion/cargo)
"snK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
@@ -32711,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
@@ -32735,6 +32041,30 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armory/blue)
+"sFS" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 1
+ },
+/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"
+ },
+/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;
@@ -32777,15 +32107,32 @@
/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"
+"sNy" = (
+/obj/machinery/door/airlock/glass_external,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/portable_atmospherics/canister/phoron,
-/obj/effect/floor_decal/industrial/outline/red,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/shuttle/securiship/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;
+ id = "shuttle_inbound"
+ },
+/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;
@@ -32801,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{
@@ -32852,6 +32217,20 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
+"tTA" = (
+/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)
"ufq" = (
/obj/structure/barricade/cutout/ntsec,
/turf/simulated/floor/tiled/dark,
@@ -32875,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;
@@ -32890,6 +32284,46 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
+"uqh" = (
+/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)
+"urb" = (
+/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)
+"usk" = (
+/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/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
@@ -32917,6 +32351,42 @@
/obj/effect/catwalk_plated/dark,
/turf/simulated/floor,
/area/security/armory/blue)
+"uIH" = (
+/obj/structure/cable/green{
+ dir = 1;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/techmaint_panels,
+/area/shuttle/securiship/engines)
+"uKH" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/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/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
+ },
+/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,
@@ -32925,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;
@@ -32943,26 +32458,55 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"vlw" = (
-/obj/machinery/door/window/brigdoor/eastleft,
-/turf/simulated/floor/tiled/dark,
+"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 = 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)
"vqZ" = (
/turf/simulated/wall/rshull,
/area/shuttle/securiship/cockpit)
-"vsJ" = (
-/turf/simulated/floor/tiled/dark,
-/area/shuttle/securiship/general)
-"vyd" = (
-/obj/machinery/light,
+"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)
+"vux" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ dir = 1;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/binary/pump/fuel,
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/shuttle/securiship/engines)
+/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" = (
/obj/item/device/flashlight/lamp,
/obj/structure/table/steel,
@@ -32976,6 +32520,28 @@
/obj/random/cutout,
/turf/simulated/floor,
/area/maintenance/station/sec_upper)
+"vFT" = (
+/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)
+"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/securiship/general)
"wbZ" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -32993,6 +32559,43 @@
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
+"wcg" = (
+/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)
+"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,
@@ -33038,6 +32641,29 @@
},
/turf/simulated/floor/tiled,
/area/security/hallwayaux)
+"wss" = (
+/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)
+"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
@@ -33052,35 +32678,94 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"wIZ" = (
-/obj/effect/floor_decal/techfloor{
- dir = 6
+"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)
+"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 = 4;
+ icon_state = "1-4"
},
/obj/structure/cable/cyan{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 4;
+ icon_state = "2-4"
},
-/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_grid,
+/area/shuttle/excursion/general)
+"wUW" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
-/obj/structure/bed/chair/bay/chair/padded/beige{
+/obj/machinery/alarm{
dir = 1;
- icon_state = "bay_chair_preview"
+ icon_state = "alarm0";
+ pixel_y = -22
},
-/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/white/bluecorner,
+/area/shuttle/excursion/general)
+"wWn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/handrail{
+ dir = 8
},
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/shuttle/securiship/cockpit)
+/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
@@ -33128,10 +32813,66 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armory/blue)
+"xcF" = (
+/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)
"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{
@@ -33177,16 +32918,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 +32943,28 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
+"xAb" = (
+/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)
"xBW" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -33236,18 +32989,41 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"yau" = (
+"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 = 8;
- icon_state = "1-8"
+ icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/aux{
- dir = 5;
- icon_state = "intact-aux"
+/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/techmaint,
+/turf/simulated/floor/tiled/eris/steel/gray_perforated,
/area/shuttle/securiship/general)
+"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/cargo)
"yeP" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 9
@@ -33301,6 +33077,30 @@
},
/turf/simulated/floor/tiled,
/area/security/hallway)
+"yhM" = (
+/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)
+"ykh" = (
+/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)
(1,1,1) = {"
aaa
@@ -36199,16 +35999,16 @@ aae
aaa
vqZ
vqZ
-ntp
-oHo
-doX
-oEa
-fGQ
-vsJ
-nin
+lyg
+usk
+iXe
+uZd
+oPK
+bTM
+pUV
xqB
-ePT
-jjJ
+wJx
+dAo
hyn
xny
aaa
@@ -36340,17 +36140,17 @@ aae
aae
aaa
rBj
-cNP
-wRu
-nig
-kAs
-kAs
-xou
-vlw
-gBp
+coc
+ukN
+ooe
+nYO
+nYO
+eLO
+lHY
+wcg
xqB
-gxX
-bpl
+eVj
+ciI
plY
xny
aaa
@@ -36482,17 +36282,17 @@ aaa
aae
aaa
rBj
-bvH
-nqE
-wIZ
-jHa
-rhI
-qwY
-jHa
-jHa
-gJa
-sio
-jrx
+dAW
+cGX
+njt
+tnc
+czA
+oWx
+tnc
+tnc
+fcC
+oQw
+bHX
okJ
xqB
aaa
@@ -36624,17 +36424,17 @@ aaa
aae
aaa
isz
-qDa
-rUg
-deE
-hEY
-yau
-kAs
-exP
-rIa
-lFr
-gkR
-vyd
+nvd
+khf
+nVr
+ccy
+jna
+nYO
+uKH
+xLC
+uIH
+sqj
+krV
xeo
xqB
aaa
@@ -36770,13 +36570,13 @@ isz
isz
isz
isz
-rFu
-kAs
-cwr
-oEa
+nlX
+nYO
+miK
+vQT
xqB
-hoF
-klB
+nvV
+ndd
plY
xny
aaa
@@ -36909,16 +36709,16 @@ aae
aaa
oJa
trD
-bDn
-gjM
-boY
-kqS
-rIa
-eZt
-nym
+bPP
+yhM
+lnp
+vux
+xLC
+sHL
+vnu
xqB
-sYy
-sYy
+ewT
+ewT
gSE
xny
aaa
@@ -37051,8 +36851,8 @@ aae
aaa
mxs
isz
-lmZ
-rfZ
+sNy
+cTI
isz
eZd
eZd
@@ -43056,12 +42856,12 @@ aMK
aIy
avs
aNL
-aNS
+urb
aNL
aNZ
aXX
aNL
-aYX
+dRj
aNL
aYk
avs
@@ -43198,12 +42998,12 @@ aMK
aIy
avs
aYc
-aYN
-aOa
-aOs
-aOH
-aYv
-aYe
+hIb
+pgk
+rAB
+cUg
+iEF
+gdk
aYc
aYk
avs
@@ -43340,12 +43140,12 @@ aMK
aIy
avs
aNL
-aXF
-aOb
-aOt
-aOI
-aYS
-aXf
+wFm
+cNv
+kOD
+knm
+nRt
+uRY
aNL
aYk
avs
@@ -43484,8 +43284,8 @@ aLu
aNL
aNL
aNL
-aYY
-aOJ
+fZo
+qOY
aNL
aNL
aNL
@@ -43623,13 +43423,13 @@ aML
aNj
aNu
aNF
-aNM
-aNT
-aOd
-aXv
-aOK
-aZz
-aWW
+fkB
+eaH
+ykh
+pfr
+crE
+oDi
+lus
aYa
aYk
avs
@@ -43765,13 +43565,13 @@ aMM
aJk
aNv
aNG
-aWu
-aWa
-aOe
-aYr
-aOK
-aWM
-aYs
+wRy
+mFv
+pjr
+xir
+crE
+irY
+dln
aYa
aYk
avs
@@ -43910,8 +43710,8 @@ aLu
aYa
aYa
aYa
-aWA
-aOM
+nfB
+crE
aXL
aYa
aYa
@@ -43995,8 +43795,8 @@ acK
acK
acK
acK
-aXE
-aZd
+ydg
+sTT
aWp
aWp
acK
@@ -44050,12 +43850,12 @@ aab
aab
avs
aYa
-aYA
-aOg
-aXw
-aON
-alY
-aZt
+gWG
+gvu
+nfB
+lxr
+wss
+sdI
aYa
aYk
avs
@@ -44129,11 +43929,11 @@ acK
acK
adj
adj
-aWx
+eBO
adj
-aWx
+eBO
adj
-aWx
+eBO
aWp
aWp
aWp
@@ -44191,14 +43991,14 @@ aab
aab
aab
avs
-aZR
-aYO
-aOh
-aZe
-aXB
-aOh
-aWj
-aXg
+myk
+nkk
+nkk
+bNj
+inX
+nkk
+nkk
+uVL
aYk
aaa
aaa
@@ -44270,19 +44070,19 @@ acE
acK
aWL
adj
-aTl
-aZU
+aXD
+qJK
adj
-aVf
-aVE
-aVw
+oNI
+iPK
+eKK
aWp
-ait
+jsf
aWn
aUJ
aXb
aWp
-aWV
+iJT
afs
ams
aXq
@@ -44333,14 +44133,14 @@ aab
aab
aab
avs
-aZR
-aVV
-aOh
-aXU
-aZN
-aOh
-aYq
-aXg
+myk
+bWE
+nkk
+tTA
+xcF
+nkk
+gER
+uVL
aYk
aaa
aaa
@@ -44412,19 +44212,19 @@ acE
acK
afh
adj
-adW
-aUB
+uqh
+wUW
adj
-aUE
-aWg
-aUm
+oqg
+cgm
+bDD
aWp
aiK
-ajY
-aWt
-aWS
+iCh
+wRt
+eug
aWp
-aXN
+cQa
afs
ams
aXq
@@ -44476,12 +44276,12 @@ aab
aab
avs
aWl
-aNV
-aXj
-aAn
-aOK
-aYl
-aYM
+fqf
+nkk
+nfB
+crE
+nkk
+pUf
aWl
aYk
aaa
@@ -44552,19 +44352,19 @@ abe
abX
acE
acK
-aVB
-ady
-adY
-aTu
+qxW
+iQS
+wJy
+ijU
aVi
-aWo
-aWg
-ajV
+hTW
+cgm
+akx
aWp
-aVU
-aZk
-aWR
-aZT
+opv
+hGJ
+geP
+lfJ
aiX
aZD
acK
@@ -44619,10 +44419,10 @@ aab
aab
aXy
aXy
-aYU
-aWy
-aXW
-aZr
+opP
+bfa
+nYv
+bYH
aXy
aYa
aYk
@@ -44697,16 +44497,16 @@ adj
adj
adj
adj
-aZL
+kCz
adj
-aUs
-afi
-aUD
+wPF
+uVS
+oDB
aWp
-aXa
-ajZ
-aWR
-aXo
+kTn
+hNx
+geP
+ckU
aiY
aWp
acK
@@ -44761,10 +44561,10 @@ aab
aab
aXH
aXy
-aXx
-aWC
-aZK
-aXd
+mzj
+ldH
+kDC
+daI
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
+qxW
+qEn
+oYj
+qTB
+qPS
+iWG
+oqg
+hpj
+rhv
+gde
+kgD
+owc
+geP
+rFo
aiY
aWp
acK
@@ -44904,8 +44704,8 @@ aab
avs
aXy
aXy
-aZc
-aZm
+dYt
+wcZ
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
+qxW
+iFx
+fQo
+lSD
+eQX
+reu
+wWn
+wSA
+wiE
+vFT
+qcm
+slB
+qmq
+jQx
+shd
+kPW
acK
ams
aVX
@@ -45046,8 +44846,8 @@ avs
avs
avs
aXy
-aZv
-aZv
+pTp
+pTp
aXy
avs
avs
@@ -45119,20 +44919,20 @@ aaa
abe
acA
acG
-aVB
-aWD
-adE
-aZG
-aTY
+qxW
+doD
+vpU
+utX
+oUa
adj
adj
-afx
+isN
adj
aWp
aiX
-akb
-aZW
-alq
+kUK
+iWZ
+xCq
aXr
aWp
acK
@@ -45265,15 +45065,15 @@ adj
adj
adj
adj
-aYK
+pwj
adj
-aWd
-aUL
-aVg
-afV
+hsy
+evl
+nlw
+wOI
aiY
aXS
-akx
+xla
aWp
aiY
aWp
@@ -45404,19 +45204,19 @@ abe
abX
acE
acK
-aVB
-aTq
-aec
-aXk
-aXt
-afg
-aYg
-aVD
-agL
+qxW
+bFX
+cow
+hyH
+mnk
+kVs
+elB
+ejd
+egf
aZD
-aUU
-aky
-aYj
+uLO
+wPw
+dzV
aRv
aXC
acK
@@ -45548,19 +45348,19 @@ acE
acK
afh
adj
-aeg
-aXl
+feb
+dFx
adj
-adi
-aVR
-aUW
-agM
+dhW
+xeA
+sFS
+gAZ
aWp
-akj
-akQ
-aTG
+ssc
+pPy
+vbD
aWp
-aXN
+cQa
afs
ams
amq
@@ -45690,19 +45490,19 @@ acE
acK
acK
adj
-aUO
-aXp
+nwM
+xiw
adj
-aUM
-aTJ
-aZX
-agM
+vre
+jcr
+nzo
+gAZ
aWp
-akk
-akR
-aVd
+tnX
+iEV
+rbb
aWp
-aXD
+rUl
afs
ams
aQL
@@ -45832,16 +45632,16 @@ acE
acK
acK
adj
-aXc
+xAb
adj
adj
adj
-aSQ
+bRO
adj
aUR
aVQ
aWs
-aZE
+gNy
aWp
aWp
aWp
diff --git a/vorestation.dme b/vorestation.dme
index 88c10c5325..5b3984f3e9 100644
--- a/vorestation.dme
+++ b/vorestation.dme
@@ -462,6 +462,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"