diff --git a/.github/workflows/ci_suite.yml b/.github/workflows/ci_suite.yml index 99e1770b3ecd4..cd51cce24a037 100644 --- a/.github/workflows/ci_suite.yml +++ b/.github/workflows/ci_suite.yml @@ -4,8 +4,6 @@ on: branches: - master - 'project/**' - - 'gh-readonly-queue/master/**' - - 'gh-readonly-queue/project/**' pull_request: branches: - master diff --git a/__odlint.dm b/__odlint.dm new file mode 100644 index 0000000000000..ecf2c0bba6f35 --- /dev/null +++ b/__odlint.dm @@ -0,0 +1,10 @@ +// This file is included right at the start of the DME. +// Its purpose is to enable multiple lints (pragmas) that are supported by OpenDream to better validate the codebase +// These are essentially nitpicks the DM compiler should pick up on but doesnt + +#if defined(CIBUILDING) && defined(OPENDREAM) +// This is in a separate file as a hack to avoid SpacemanDMM +// evaluating the #pragma lines, even if its outside a block it cares about +// (Also so people can code-own it. Shoutout to AA) +#include "tools/ci/od_lints.dm" +#endif diff --git a/_maps/RandomRooms/10x5/sk_rdm091_skidrow.dmm b/_maps/RandomRooms/10x5/sk_rdm091_skidrow.dmm index 9933aa321c286..89514dfe900ac 100644 --- a/_maps/RandomRooms/10x5/sk_rdm091_skidrow.dmm +++ b/_maps/RandomRooms/10x5/sk_rdm091_skidrow.dmm @@ -172,7 +172,7 @@ /turf/open/floor/plating, /area/template_noop) "L" = ( -/obj/item/trash/plate, +/obj/item/plate, /obj/effect/decal/cleanable/dirt/dust, /obj/item/cigbutt, /turf/open/floor/plating, diff --git a/_maps/RandomRooms/10x5/sk_rdm153_hobowithpeter.dmm b/_maps/RandomRooms/10x5/sk_rdm153_hobowithpeter.dmm index 90ad32a10d87f..21f9ea864475d 100644 --- a/_maps/RandomRooms/10x5/sk_rdm153_hobowithpeter.dmm +++ b/_maps/RandomRooms/10x5/sk_rdm153_hobowithpeter.dmm @@ -12,6 +12,10 @@ /obj/structure/sink/puddle, /turf/open/floor/grass, /area/template_noop) +"d" = ( +/obj/item/plate, +/turf/open/floor/iron, +/area/template_noop) "e" = ( /obj/effect/landmark/blobstart, /turf/open/floor/plating, @@ -26,18 +30,19 @@ burnt = 1 }, /area/template_noop) -"j" = ( -/obj/item/trash/plate, -/turf/open/floor/iron, -/area/template_noop) "l" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/plating, /area/template_noop) -"m" = ( +"o" = ( /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/iron, /area/template_noop) +"p" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/spawner/lootdrop/gambling, +/turf/open/floor/iron, +/area/template_noop) "q" = ( /obj/structure/chair/office{ dir = 1 @@ -68,6 +73,13 @@ /obj/item/trash/boritos, /turf/open/floor/plating, /area/template_noop) +"x" = ( +/obj/item/trash/can{ + pixel_x = -9; + pixel_y = 6 + }, +/turf/open/floor/iron, +/area/template_noop) "y" = ( /obj/machinery/shower{ pixel_y = 16 @@ -89,10 +101,6 @@ /obj/machinery/door/window/eastright, /turf/open/floor/grass, /area/template_noop) -"B" = ( -/obj/machinery/modular_computer/console/preset/civilian, -/turf/open/floor/iron, -/area/template_noop) "C" = ( /obj/effect/spawner/lootdrop/maintenance/two, /turf/open/floor/plating{ @@ -104,13 +112,6 @@ broken = 1 }, /area/template_noop) -"E" = ( -/obj/item/trash/can{ - pixel_x = -9; - pixel_y = 6 - }, -/turf/open/floor/iron, -/area/template_noop) "F" = ( /obj/structure/window/reinforced/spawner, /obj/structure/flora/ausbushes/grassybush, @@ -152,6 +153,13 @@ /obj/machinery/door/airlock/maintenance/external/glass, /turf/open/floor/plating, /area/template_noop) +"N" = ( +/obj/machinery/modular_computer/console/preset/civilian, +/turf/open/floor/iron, +/area/template_noop) +"O" = ( +/turf/open/floor/iron, +/area/template_noop) "P" = ( /obj/machinery/light/small{ dir = 8 @@ -163,13 +171,6 @@ /obj/item/trash/can, /turf/open/floor/plating, /area/template_noop) -"R" = ( -/obj/item/trash/sosjerky{ - pixel_x = -10; - pixel_y = 2 - }, -/turf/open/floor/iron, -/area/template_noop) "T" = ( /obj/structure/grille/broken, /turf/open/floor/plating, @@ -178,18 +179,17 @@ /obj/structure/closet/firecloset/full, /turf/open/floor/plating, /area/template_noop) -"W" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/spawner/lootdrop/gambling, -/turf/open/floor/iron, -/area/template_noop) "X" = ( /obj/structure/toilet{ dir = 8 }, /turf/open/floor/plating, /area/template_noop) -"Z" = ( +"Y" = ( +/obj/item/trash/sosjerky{ + pixel_x = -10; + pixel_y = 2 + }, /turf/open/floor/iron, /area/template_noop) @@ -210,27 +210,27 @@ U (3,1,1) = {" s A -B +N q -W +p "} (4,1,1) = {" h C -E +x w -R +Y "} (5,1,1) = {" T Q l D -m +o "} (6,1,1) = {" K -j +d e G T @@ -238,7 +238,7 @@ T (7,1,1) = {" t t -Z +O t t "} @@ -252,7 +252,7 @@ P (9,1,1) = {" g t -Z +O t L "} diff --git a/_maps/RandomRooms/3x5/sk_rdm023_boxclutter7.dmm b/_maps/RandomRooms/3x5/sk_rdm023_boxclutter7.dmm index 5b38f14bb6eee..7066abf0a0dbe 100644 --- a/_maps/RandomRooms/3x5/sk_rdm023_boxclutter7.dmm +++ b/_maps/RandomRooms/3x5/sk_rdm023_boxclutter7.dmm @@ -17,7 +17,7 @@ dir = 8; pixel_x = 27 }, -/obj/item/trash/plate, +/obj/item/plate, /turf/open/floor/plating, /area/template_noop) "d" = ( diff --git a/_maps/RandomRooms/5x4/sk_rdm021_boxdinner.dmm b/_maps/RandomRooms/5x4/sk_rdm021_boxdinner.dmm index fb6ca256bf653..26886ddae300c 100644 --- a/_maps/RandomRooms/5x4/sk_rdm021_boxdinner.dmm +++ b/_maps/RandomRooms/5x4/sk_rdm021_boxdinner.dmm @@ -17,7 +17,7 @@ /area/template_noop) "d" = ( /obj/structure/table, -/obj/item/food/donut, +/obj/item/food/donut/plain, /turf/open/floor/plating, /area/template_noop) "e" = ( diff --git a/_maps/RandomRooms/fland/sk_rdm_fln_11_hobobox.dmm b/_maps/RandomRooms/fland/sk_rdm_fln_11_hobobox.dmm index 7b218728a686e..0f29864c60e7a 100644 --- a/_maps/RandomRooms/fland/sk_rdm_fln_11_hobobox.dmm +++ b/_maps/RandomRooms/fland/sk_rdm_fln_11_hobobox.dmm @@ -33,6 +33,10 @@ /obj/effect/spawner/lootdrop/gloves, /turf/open/floor/carpet, /area/template_noop) +"h" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/turf/open/floor/iron, +/area/template_noop) "i" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -64,6 +68,12 @@ /obj/machinery/light/small, /turf/open/floor/plating, /area/template_noop) +"p" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/closeup, +/obj/structure/barricade/wooden, +/turf/open/floor/iron/grid/steel, +/area/template_noop) "r" = ( /obj/effect/spawner/lootdrop/grille_or_trash, /obj/structure/lattice/catwalk/over, @@ -76,14 +86,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plating, /area/template_noop) -"u" = ( -/obj/item/trash/sosjerky{ - pixel_x = -10; - pixel_y = 2 - }, -/obj/effect/spawner/lootdrop/grille_or_trash, -/turf/open/floor/iron, -/area/template_noop) "v" = ( /obj/structure/chair/office{ dir = 1 @@ -112,10 +114,6 @@ }, /turf/open/floor/plating, /area/template_noop) -"C" = ( -/obj/item/trash/plate, -/turf/open/floor/iron, -/area/template_noop) "D" = ( /obj/machinery/shower{ dir = 8 @@ -169,6 +167,10 @@ /obj/item/trash/can, /turf/open/floor/plating, /area/template_noop) +"L" = ( +/obj/item/plate, +/turf/open/floor/iron, +/area/template_noop) "Q" = ( /turf/template_noop/closed, /area/template_noop) @@ -188,10 +190,6 @@ /obj/machinery/door/airlock/maintenance/external/glass, /turf/open/floor/plating, /area/template_noop) -"U" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, -/turf/open/floor/iron, -/area/template_noop) "V" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 4 @@ -200,11 +198,13 @@ /obj/effect/spawner/lootdrop/gambling, /turf/open/floor/plating, /area/template_noop) -"W" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/closeup, -/obj/structure/barricade/wooden, -/turf/open/floor/iron/grid/steel, +"Z" = ( +/obj/item/trash/sosjerky{ + pixel_x = -10; + pixel_y = 2 + }, +/obj/effect/spawner/lootdrop/grille_or_trash, +/turf/open/floor/iron, /area/template_noop) (1,1,1) = {" @@ -220,7 +220,7 @@ f Q "} (2,1,1) = {" -W +p m a A @@ -232,12 +232,12 @@ i J "} (3,1,1) = {" -W +p j a E k -C +L z T z @@ -245,10 +245,10 @@ Q "} (4,1,1) = {" a -u +Z I G -U +h v z D diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_gluttony.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_gluttony.dmm index a0287dafa9098..b6e2b9b7fba25 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_gluttony.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_gluttony.dmm @@ -8,88 +8,88 @@ "c" = ( /turf/open/lava/smooth/lava_land_surface, /area/lavaland/surface/outdoors) +"d" = ( +/obj/item/trash/raisins, +/turf/open/floor/iron/freezer, +/area/ruin/powered/gluttony) "e" = ( /turf/open/lava/smooth, /area/ruin/powered/gluttony) -"f" = ( -/obj/item/reagent_containers/syringe/gluttony, +"k" = ( +/obj/machinery/light/small{ + dir = 1 + }, /turf/open/floor/iron/freezer, /area/ruin/powered/gluttony) -"g" = ( -/obj/effect/gluttony, +"s" = ( +/obj/item/trash/syndi_cakes, /turf/open/floor/iron/freezer, /area/ruin/powered/gluttony) -"h" = ( -/obj/item/veilrender/vealrender, +"y" = ( +/obj/effect/gluttony, /turf/open/floor/iron/freezer, /area/ruin/powered/gluttony) -"i" = ( +"C" = ( +/obj/item/veilrender/vealrender, /turf/open/floor/iron/freezer, /area/ruin/powered/gluttony) -"j" = ( -/obj/item/trash/plate, +"E" = ( +/obj/item/plate, +/obj/machinery/light/small{ + dir = 8 + }, /turf/open/floor/iron/freezer, /area/ruin/powered/gluttony) -"l" = ( +"F" = ( /obj/item/trash/candy, /turf/open/floor/iron/freezer, /area/ruin/powered/gluttony) -"m" = ( -/obj/item/trash/raisins, +"G" = ( +/obj/machinery/light/small{ + dir = 4 + }, /turf/open/floor/iron/freezer, /area/ruin/powered/gluttony) -"n" = ( -/obj/item/trash/pistachios, +"H" = ( +/obj/machinery/door/airlock/uranium, +/obj/structure/fans/tiny/invisible, /turf/open/floor/iron/freezer, /area/ruin/powered/gluttony) -"o" = ( -/obj/item/trash/popcorn, +"I" = ( +/obj/machinery/light/small, /turf/open/floor/iron/freezer, /area/ruin/powered/gluttony) -"p" = ( -/obj/item/trash/semki, +"J" = ( /turf/open/floor/iron/freezer, /area/ruin/powered/gluttony) -"q" = ( -/obj/item/trash/syndi_cakes, +"K" = ( +/obj/item/trash/pistachios, /turf/open/floor/iron/freezer, /area/ruin/powered/gluttony) -"r" = ( +"M" = ( /obj/effect/gluttony, /obj/machinery/light/small{ dir = 1 }, /turf/open/floor/iron/freezer, /area/ruin/powered/gluttony) -"t" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/iron/freezer, +"R" = ( +/turf/closed/indestructible/riveted/uranium, /area/ruin/powered/gluttony) -"v" = ( -/obj/machinery/light/small, +"T" = ( +/obj/item/trash/semki, /turf/open/floor/iron/freezer, /area/ruin/powered/gluttony) -"z" = ( -/obj/item/trash/plate, -/obj/machinery/light/small{ - dir = 8 - }, +"W" = ( +/obj/item/reagent_containers/syringe/gluttony, /turf/open/floor/iron/freezer, /area/ruin/powered/gluttony) -"A" = ( -/obj/machinery/light/small{ - dir = 4 - }, +"Y" = ( +/obj/item/plate, /turf/open/floor/iron/freezer, /area/ruin/powered/gluttony) -"R" = ( -/turf/closed/indestructible/riveted/uranium, -/area/ruin/powered/gluttony) -"S" = ( -/obj/machinery/door/airlock/uranium, -/obj/structure/fans/tiny/invisible, +"Z" = ( +/obj/item/trash/popcorn, /turf/open/floor/iron/freezer, /area/ruin/powered/gluttony) @@ -170,7 +170,7 @@ b c R R -S +H R R c @@ -191,9 +191,9 @@ b b c R -h -i -o +C +J +Z R c b @@ -213,9 +213,9 @@ b b c R -i -i -v +J +J +I R c b @@ -235,9 +235,9 @@ b b c R -i -l -i +J +F +J R c b @@ -257,9 +257,9 @@ c c c R -t -i -m +k +J +d R c c @@ -279,9 +279,9 @@ R R R R -g -m -v +y +d +I R R R @@ -298,17 +298,17 @@ c R e R -r -g -g -g -g -i -p -i -z -l -i +M +y +y +y +y +J +T +J +E +F +J R c b @@ -318,20 +318,20 @@ a b c R -f -g -g -g -g -g -n -i -i -i -i -i -i -S +W +y +y +y +y +y +K +J +J +J +J +J +J +H b b "} @@ -342,17 +342,17 @@ c R e R -r -g -g -g -i -g -i -l -A -i -q +M +y +y +y +J +y +J +F +G +J +s R c b @@ -367,9 +367,9 @@ R R R R -g -i -v +y +J +I R R R @@ -389,9 +389,9 @@ c c c R -r -i -i +M +J +J R c c @@ -411,9 +411,9 @@ b b c R -i -g -i +J +y +J R c b @@ -433,9 +433,9 @@ b b c R -j -i -v +Y +J +I R c b @@ -455,9 +455,9 @@ b b c R -i -n -i +J +K +J R c b @@ -478,7 +478,7 @@ b c R R -S +H R R c diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_pizzaparty.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_pizzaparty.dmm index 174245b6af395..8ed2d53e9b618 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_pizzaparty.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_pizzaparty.dmm @@ -89,13 +89,6 @@ initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300" }, /area/ruin/unpowered) -"o" = ( -/obj/item/trash/plate, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300" - }, -/area/ruin/unpowered) "p" = ( /obj/effect/decal/remains/human, /obj/effect/decal/cleanable/dirt, @@ -110,17 +103,6 @@ initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300" }, /area/ruin/unpowered) -"r" = ( -/obj/structure/chair/wood/wings, -/obj/effect/decal/remains/human, -/obj/item/clothing/head/costume/festive{ - desc = "A festive party hat with the name 'timmy' scribbled on the front."; - name = "party hat" - }, -/turf/open/floor/wood{ - initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300" - }, -/area/ruin/unpowered) "s" = ( /turf/open/floor/wood{ initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300" @@ -158,13 +140,6 @@ initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300" }, /area/ruin/unpowered) -"y" = ( -/obj/structure/table/wood, -/obj/item/trash/plate, -/turf/open/floor/wood{ - initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300" - }, -/area/ruin/unpowered) "z" = ( /obj/structure/table/wood, /obj/structure/glowshroom/single, @@ -173,14 +148,6 @@ initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300" }, /area/ruin/unpowered) -"A" = ( -/obj/structure/table/wood, -/obj/item/trash/plate, -/obj/item/kitchen/fork, -/turf/open/floor/wood{ - initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300" - }, -/area/ruin/unpowered) "C" = ( /obj/structure/chair/wood/wings{ dir = 4 @@ -190,14 +157,6 @@ initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300" }, /area/ruin/unpowered) -"D" = ( -/obj/structure/table/wood, -/obj/item/food/pizzaslice/margherita, -/obj/item/trash/plate, -/turf/open/floor/wood{ - initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300" - }, -/area/ruin/unpowered) "E" = ( /obj/structure/table/wood, /obj/item/food/pizzaslice/meat, @@ -288,6 +247,47 @@ initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300" }, /area/ruin/unpowered) +"R" = ( +/obj/item/plate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood{ + initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300" + }, +/area/ruin/unpowered) +"U" = ( +/obj/structure/table/wood, +/obj/item/plate, +/obj/item/kitchen/fork, +/turf/open/floor/wood{ + initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300" + }, +/area/ruin/unpowered) +"X" = ( +/obj/structure/chair/wood/wings, +/obj/effect/decal/remains/human, +/obj/item/clothing/head/costume/festive{ + desc = "A festive party hat with the name 'timmy' scribbled on the front."; + name = "party hat" + }, +/turf/open/floor/wood{ + initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300" + }, +/area/ruin/unpowered) +"Y" = ( +/obj/structure/table/wood, +/obj/item/food/pizzaslice/margherita, +/obj/item/plate, +/turf/open/floor/wood{ + initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300" + }, +/area/ruin/unpowered) +"Z" = ( +/obj/structure/table/wood, +/obj/item/plate, +/turf/open/floor/wood{ + initial_gas_mix = "o2=14;n2=5;co2=13;TEMP=300" + }, +/area/ruin/unpowered) (1,1,1) = {" a @@ -416,7 +416,7 @@ b b d g -o +R h h C @@ -439,7 +439,7 @@ h p q x -D +Y K M d @@ -457,8 +457,8 @@ c e i h -r -y +X +Z E h h @@ -498,7 +498,7 @@ e e h t -A +U G q h @@ -540,7 +540,7 @@ h u s s -o +R n d b diff --git a/_maps/RandomRuins/SpaceRuins/derelict2.dmm b/_maps/RandomRuins/SpaceRuins/derelict2.dmm index 6386f61440fcc..17c27bf176305 100644 --- a/_maps/RandomRuins/SpaceRuins/derelict2.dmm +++ b/_maps/RandomRuins/SpaceRuins/derelict2.dmm @@ -34,21 +34,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/ruin/space/has_grav/powered/dinner_for_two) -"h" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/iron, -/area/ruin/space/has_grav/powered/dinner_for_two) -"i" = ( -/turf/open/floor/iron, -/area/ruin/space/has_grav/powered/dinner_for_two) -"j" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/iron, -/area/ruin/space/has_grav/powered/dinner_for_two) "k" = ( /obj/structure/window/reinforced, /turf/template_noop, @@ -60,47 +45,62 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/powered/dinner_for_two) -"m" = ( -/obj/structure/chair{ +"p" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/template_noop, +/area/space/nearstation) +"z" = ( +/turf/open/floor/iron, +/area/ruin/space/has_grav/powered/dinner_for_two) +"A" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/iron, +/area/ruin/space/has_grav/powered/dinner_for_two) +"F" = ( +/obj/machinery/light/small{ dir = 4 }, -/obj/effect/decal/remains/human, /turf/open/floor/iron, /area/ruin/space/has_grav/powered/dinner_for_two) -"n" = ( +"G" = ( /obj/structure/table, /obj/item/candle{ pixel_y = 5 }, -/obj/item/trash/plate{ +/obj/item/plate{ pixel_x = 10 }, -/obj/item/trash/plate{ +/obj/item/plate{ pixel_x = -10 }, /turf/open/floor/iron, /area/ruin/space/has_grav/powered/dinner_for_two) -"o" = ( +"I" = ( +/obj/machinery/light/small, +/turf/open/floor/iron, +/area/ruin/space/has_grav/powered/dinner_for_two) +"M" = ( /obj/structure/chair{ dir = 8 }, /obj/effect/decal/remains/human, /turf/open/floor/iron, /area/ruin/space/has_grav/powered/dinner_for_two) -"p" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/template_noop, -/area/space/nearstation) -"q" = ( +"O" = ( /obj/machinery/light/small{ - dir = 8 + dir = 1 }, /turf/open/floor/iron, /area/ruin/space/has_grav/powered/dinner_for_two) -"r" = ( -/obj/machinery/light/small, +"W" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/decal/remains/human, /turf/open/floor/iron, /area/ruin/space/has_grav/powered/dinner_for_two) @@ -206,11 +206,11 @@ a a a f -i -i -i -i -q +z +z +z +z +A f a a @@ -224,13 +224,13 @@ a a a f -h -i -i -i -i -i -i +O +z +z +z +z +z +z f a a @@ -243,13 +243,13 @@ b b b g -i -i -i -m -i -i -i +z +z +z +W +z +z +z g b b @@ -262,13 +262,13 @@ e e e c -i -i -i -n -i -i -i +z +z +z +G +z +z +z c e e @@ -281,13 +281,13 @@ d d d g -i -i -i -o -i -i -i +z +z +z +M +z +z +z g d d @@ -300,13 +300,13 @@ a a a f -i -i -i -i -i -i -r +z +z +z +z +z +z +I f a a @@ -320,11 +320,11 @@ a a a f -j -i -i -i -i +F +z +z +z +z f a a diff --git a/_maps/RandomRuins/SpaceRuins/derelict6.dmm b/_maps/RandomRuins/SpaceRuins/derelict6.dmm index 82c9712e3f4c6..65b15cbfdf234 100644 --- a/_maps/RandomRuins/SpaceRuins/derelict6.dmm +++ b/_maps/RandomRuins/SpaceRuins/derelict6.dmm @@ -130,27 +130,6 @@ "aH" = ( /turf/open/floor/plating/airless, /area/ruin/unpowered) -"aI" = ( -/obj/structure/table, -/obj/machinery/microwave, -/turf/open/floor/iron/cafeteria/airless, -/area/ruin/unpowered) -"aJ" = ( -/obj/structure/table, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/iron/cafeteria/airless, -/area/ruin/unpowered) -"aK" = ( -/obj/structure/closet/secure_closet/freezer/fridge/open, -/obj/machinery/light/broken{ - dir = 1 - }, -/turf/open/floor/iron/cafeteria/airless, -/area/ruin/unpowered) -"aL" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/turf/open/floor/iron/cafeteria/airless, -/area/ruin/unpowered) "aP" = ( /obj/machinery/light/broken{ dir = 1 @@ -163,13 +142,6 @@ /obj/item/stack/tile/iron, /turf/open/floor/plating/airless, /area/ruin/unpowered) -"aR" = ( -/turf/open/floor/iron/cafeteria/airless, -/area/ruin/unpowered) -"aS" = ( -/obj/structure/table_frame, -/turf/open/floor/iron/cafeteria/airless, -/area/ruin/unpowered) "aU" = ( /obj/structure/table/wood, /obj/item/shard, @@ -177,17 +149,6 @@ broken = 1 }, /area/ruin/unpowered) -"aV" = ( -/obj/structure/table/wood, -/obj/item/trash/plate, -/turf/open/floor/plating/airless{ - broken = 1 - }, -/area/ruin/unpowered) -"aW" = ( -/obj/structure/table, -/turf/open/floor/iron/cafeteria/airless, -/area/ruin/unpowered) "aY" = ( /obj/structure/lattice, /obj/item/stack/sheet/iron, @@ -198,43 +159,11 @@ /obj/item/shard, /turf/template_noop, /area/space/nearstation) -"ba" = ( -/mob/living/simple_animal/hostile/retaliate/ghost, -/turf/open/floor/iron/cafeteria/airless, -/area/ruin/unpowered) -"bb" = ( -/obj/item/food/donkpocket, -/turf/open/floor/iron/cafeteria/airless, -/area/ruin/unpowered) -"bc" = ( -/obj/structure/table, -/obj/item/shard, -/turf/open/floor/iron/cafeteria/airless, -/area/ruin/unpowered) "be" = ( /turf/open/floor/plating/airless{ broken = 1 }, /area/ruin/unpowered) -"bh" = ( -/obj/machinery/light/broken{ - dir = 8 - }, -/obj/structure/table_frame, -/turf/open/floor/iron/cafeteria/airless, -/area/ruin/unpowered) -"bi" = ( -/obj/item/stack/sheet/iron, -/obj/item/clothing/head/utility/chefhat, -/turf/open/floor/plating/airless{ - broken = 1 - }, -/area/ruin/unpowered) -"bj" = ( -/obj/item/trash/plate, -/obj/effect/decal/remains/human, -/turf/open/floor/iron/cafeteria/airless, -/area/ruin/unpowered) "bk" = ( /obj/structure/table_frame/wood, /turf/open/floor/plating/airless{ @@ -382,21 +311,64 @@ }, /turf/template_noop, /area/ruin/unpowered) -"dd" = ( -/obj/item/trash/plate, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron/airless, +"cI" = ( +/obj/structure/table/wood, +/obj/item/plate, +/turf/open/floor/plating/airless{ + broken = 1 + }, +/area/ruin/unpowered) +"hu" = ( +/obj/structure/table_frame, +/turf/open/floor/iron/cafeteria/airless, +/area/ruin/unpowered) +"if" = ( +/obj/structure/closet/secure_closet/freezer/fridge/open, +/obj/machinery/light/broken{ + dir = 1 + }, +/turf/open/floor/iron/cafeteria/airless, /area/ruin/unpowered) "ig" = ( /obj/structure/chair/stool/bar, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron/airless, /area/ruin/unpowered) +"iD" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/open/floor/iron/cafeteria/airless, +/area/ruin/unpowered) +"kZ" = ( +/obj/item/plate, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron/airless, +/area/ruin/unpowered) +"mz" = ( +/obj/item/stack/sheet/iron, +/obj/item/clothing/head/utility/chefhat, +/turf/open/floor/plating/airless{ + broken = 1 + }, +/area/ruin/unpowered) +"nf" = ( +/obj/item/plate, +/obj/effect/decal/remains/human, +/turf/open/floor/iron/cafeteria/airless, +/area/ruin/unpowered) "pc" = ( /obj/machinery/door/airlock/public/glass, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron/airless, /area/ruin/unpowered) +"qL" = ( +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/iron/cafeteria/airless, +/area/ruin/unpowered) +"rr" = ( +/obj/structure/table, +/turf/open/floor/iron/cafeteria/airless, +/area/ruin/unpowered) "vo" = ( /obj/item/kitchen/fork, /obj/effect/turf_decal/tile/bar/opposingcorners, @@ -409,6 +381,16 @@ broken = 1 }, /area/ruin/unpowered) +"yC" = ( +/turf/open/floor/iron/cafeteria/airless, +/area/ruin/unpowered) +"GI" = ( +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/structure/table_frame, +/turf/open/floor/iron/cafeteria/airless, +/area/ruin/unpowered) "QT" = ( /obj/item/chair, /obj/effect/turf_decal/tile/bar/opposingcorners, @@ -419,6 +401,24 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron/airless, /area/ruin/unpowered) +"Sc" = ( +/mob/living/simple_animal/hostile/retaliate/ghost, +/turf/open/floor/iron/cafeteria/airless, +/area/ruin/unpowered) +"SR" = ( +/obj/structure/table, +/obj/item/shard, +/turf/open/floor/iron/cafeteria/airless, +/area/ruin/unpowered) +"UK" = ( +/obj/structure/table, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/iron/cafeteria/airless, +/area/ruin/unpowered) +"VU" = ( +/obj/item/food/donkpocket, +/turf/open/floor/iron/cafeteria/airless, +/area/ruin/unpowered) "WX" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron/airless, @@ -626,11 +626,11 @@ av ag aC ai -aI -aR -aW -aW -bh +qL +yC +rr +rr +GI be be br @@ -649,11 +649,11 @@ ag aw ag ai -aJ -aR -aR -aR -bi +UK +yC +yC +yC +mz be ay bl @@ -672,11 +672,11 @@ ag ax ag ai -aK -aR -aR -ba -bj +if +yC +yC +Sc +nf as be bl @@ -695,13 +695,13 @@ ag ag ag ai -aL -aR -aR -bb -aR -aR -aR +iD +yC +yC +VU +yC +yC +yC ai ac ac @@ -719,11 +719,11 @@ ag ag ai ai -aS -aW -bc -aR -aS +hu +rr +SR +yC +hu ai ai ac @@ -764,7 +764,7 @@ ag ag ag pc -dd +kZ vo be WX @@ -880,7 +880,7 @@ ag ag ai be -aV +cI vS be ac diff --git a/_maps/RandomRuins/SpaceRuins/oldstation.dmm b/_maps/RandomRuins/SpaceRuins/oldstation.dmm index 2cbc3bbbe923c..67e086897491a 100644 --- a/_maps/RandomRuins/SpaceRuins/oldstation.dmm +++ b/_maps/RandomRuins/SpaceRuins/oldstation.dmm @@ -2305,13 +2305,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/ruin/space/has_grav/ancientstation/sec) -"hd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/obj/structure/table, -/obj/item/trash/plate, -/turf/open/floor/plating, -/area/ruin/space/has_grav/ancientstation/deltacorridor) "he" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/chair{ @@ -2538,15 +2531,6 @@ /obj/item/kitchen/rollingpin, /turf/open/floor/iron/cafeteria, /area/ruin/space/has_grav/ancientstation/kitchen) -"hU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/iron/cafeteria, -/area/ruin/space/has_grav/ancientstation/kitchen) "hV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -2740,12 +2724,6 @@ }, /turf/open/floor/iron/cafeteria, /area/ruin/space/has_grav/ancientstation/kitchen) -"iM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/trash/plate, -/turf/open/floor/iron/cafeteria, -/area/ruin/space/has_grav/ancientstation/kitchen) "iN" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/chair{ @@ -3808,6 +3786,12 @@ }, /turf/open/floor/iron, /area/ruin/space/has_grav/ancientstation/engi) +"nN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/plate, +/turf/open/floor/iron/cafeteria, +/area/ruin/space/has_grav/ancientstation/kitchen) "nT" = ( /obj/structure/table, /obj/item/reagent_containers/glass/bottle/sacid{ @@ -3947,6 +3931,13 @@ /obj/structure/toilet, /turf/open/floor/iron/white, /area/ruin/space/has_grav/ancientstation) +"sX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small, +/obj/structure/table, +/obj/item/plate, +/turf/open/floor/plating, +/area/ruin/space/has_grav/ancientstation/deltacorridor) "ta" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -4207,6 +4198,15 @@ dir = 5 }, /area/ruin/space/has_grav/ancientstation/betanorth) +"CJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/enzyme, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/iron/cafeteria, +/area/ruin/space/has_grav/ancientstation/kitchen) "Dj" = ( /obj/structure/transit_tube{ dir = 4 @@ -6763,7 +6763,7 @@ fI gt gZ hv -hU +CJ ht ht iL @@ -6910,7 +6910,7 @@ hx ht ht ht -iM +nN ja cn jH @@ -7721,7 +7721,7 @@ aa bD fP gH -hd +sX bD aa aa diff --git a/_maps/RandomZLevels/caves.dmm b/_maps/RandomZLevels/caves.dmm index e92b6fd23105c..c4b31d08c3fdb 100644 --- a/_maps/RandomZLevels/caves.dmm +++ b/_maps/RandomZLevels/caves.dmm @@ -717,6 +717,11 @@ initial_gas_mix = "n2=23;o2=14;TEMP=2.7" }, /area/awaymission/caves/BMP_asteroid/level_two) +"cf" = ( +/turf/open/floor/iron/dark{ + initial_gas_mix = "n2=23;o2=14;TEMP=2.7" + }, +/area/awaymission/caves/BMP_asteroid/level_two) "cg" = ( /turf/closed/wall, /area/awaymission/caves/research) @@ -752,6 +757,27 @@ "cm" = ( /turf/closed/mineral/random/low_chance, /area/awaymission/caves/BMP_asteroid/level_two) +"cn" = ( +/turf/open/floor/iron{ + initial_gas_mix = "n2=23;o2=14;TEMP=2.7" + }, +/area/awaymission/caves/research) +"co" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/filingcabinet, +/obj/item/paper/fluff/awaymissions/caves/omega, +/turf/open/floor/iron{ + initial_gas_mix = "n2=23;o2=14;TEMP=2.7" + }, +/area/awaymission/caves/research) +"cp" = ( +/obj/structure/table, +/turf/open/floor/iron{ + initial_gas_mix = "n2=23;o2=14;TEMP=2.7" + }, +/area/awaymission/caves/research) "cq" = ( /obj/structure/flora/rock, /turf/open/floor/plating/asteroid/basalt{ @@ -769,12 +795,37 @@ initial_gas_mix = "n2=23;o2=14;TEMP=2.7" }, /area/awaymission/caves/research) +"ct" = ( +/obj/item/shard, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/iron{ + initial_gas_mix = "n2=23;o2=14;TEMP=2.7" + }, +/area/awaymission/caves/research) +"cu" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/iron{ + initial_gas_mix = "n2=23;o2=14;TEMP=2.7" + }, +/area/awaymission/caves/research) +"cv" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/iron{ + initial_gas_mix = "n2=23;o2=14;TEMP=2.7" + }, +/area/awaymission/caves/research) "cw" = ( /obj/item/stack/rods, /turf/open/floor/plating{ initial_gas_mix = "n2=23;o2=14;TEMP=2.7" }, /area/awaymission/caves/research) +"cx" = ( +/turf/open/floor/iron/dark{ + initial_gas_mix = "n2=23;o2=14;TEMP=2.7" + }, +/area/awaymission/caves/BMP_asteroid) "cy" = ( /obj/effect/decal/remains/human, /turf/open/floor/plating/asteroid/basalt{ @@ -802,6 +853,30 @@ initial_gas_mix = "n2=23;o2=14;TEMP=2.7" }, /area/awaymission/caves/research) +"cC" = ( +/obj/structure/table, +/obj/item/restraints/handcuffs/cable, +/obj/item/restraints/handcuffs/cable, +/turf/open/floor/iron{ + initial_gas_mix = "n2=23;o2=14;TEMP=2.7" + }, +/area/awaymission/caves/research) +"cD" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/iron{ + initial_gas_mix = "n2=23;o2=14;TEMP=2.7" + }, +/area/awaymission/caves/research) +"cE" = ( +/obj/structure/sign/warning/vacuum{ + name = "\improper LOW AIR AREA"; + pixel_x = 32 + }, +/obj/item/stack/rods, +/turf/open/floor/iron{ + initial_gas_mix = "n2=23;o2=14;TEMP=2.7" + }, +/area/awaymission/caves/research) "cF" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating{ @@ -915,12 +990,42 @@ initial_gas_mix = "n2=23;o2=14;TEMP=2.7" }, /area/awaymission/caves/research) +"cX" = ( +/obj/structure/table, +/obj/item/melee/baton, +/turf/open/floor/iron{ + initial_gas_mix = "n2=23;o2=14;TEMP=2.7" + }, +/area/awaymission/caves/research) +"cY" = ( +/obj/structure/glowshroom/single, +/turf/open/floor/iron{ + initial_gas_mix = "n2=23;o2=14;TEMP=2.7" + }, +/area/awaymission/caves/research) +"cZ" = ( +/obj/structure/sign/warning/vacuum{ + name = "\improper LOW AIR AREA"; + pixel_x = 32 + }, +/turf/open/floor/iron{ + initial_gas_mix = "n2=23;o2=14;TEMP=2.7" + }, +/area/awaymission/caves/research) "da" = ( /obj/structure/barricade/wooden, /turf/open/floor/plating/asteroid/basalt{ initial_gas_mix = "n2=23;o2=14;TEMP=2.7" }, /area/awaymission/caves/BMP_asteroid) +"db" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/crap, +/turf/open/floor/iron{ + initial_gas_mix = "n2=23;o2=14;TEMP=2.7" + }, +/area/awaymission/caves/research) "dc" = ( /obj/machinery/light/small{ dir = 8 @@ -934,6 +1039,29 @@ initial_gas_mix = "n2=23;o2=14;TEMP=2.7" }, /area/awaymission/caves/BMP_asteroid/level_two) +"dd" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/iron{ + initial_gas_mix = "n2=23;o2=14;TEMP=2.7" + }, +/area/awaymission/caves/research) +"de" = ( +/obj/machinery/light, +/turf/open/floor/iron{ + initial_gas_mix = "n2=23;o2=14;TEMP=2.7" + }, +/area/awaymission/caves/research) +"df" = ( +/obj/structure/closet/secure_closet/miner{ + name = "weapon equipment" + }, +/obj/item/grenade/syndieminibomb/concussion, +/obj/item/grenade/syndieminibomb/concussion, +/obj/item/grenade/syndieminibomb/concussion, +/turf/open/floor/iron{ + initial_gas_mix = "n2=23;o2=14;TEMP=2.7" + }, +/area/awaymission/caves/research) "dg" = ( /obj/effect/bump_teleporter{ id = "mineintrodown"; @@ -947,6 +1075,25 @@ /obj/machinery/door/airlock/external, /turf/open/floor/plating, /area/awaymission/caves/BMP_asteroid/level_two) +"di" = ( +/obj/structure/table, +/obj/item/paper/fluff/awaymissions/caves/magma, +/obj/item/pen, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid/level_two) +"dj" = ( +/obj/structure/ladder/unbreakable{ + height = 2; + id = "minedeep" + }, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid/level_two) +"dk" = ( +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid/level_two) "dl" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -955,12 +1102,51 @@ /obj/structure/spider/stickyweb, /turf/open/floor/plating, /area/awaymission/caves/BMP_asteroid/level_two) +"dn" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid/level_two) +"do" = ( +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid/level_two) +"dp" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets, +/obj/item/clothing/glasses/meson, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid/level_two) +"dq" = ( +/obj/machinery/light/small/built{ + dir = 4 + }, +/obj/structure/spider/stickyweb, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid/level_two) +"dr" = ( +/obj/structure/spider/stickyweb, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid/level_two) "dt" = ( /turf/closed/wall, /area/awaymission/caves/northblock) "du" = ( /turf/closed/wall/rust, /area/awaymission/caves/northblock) +"dv" = ( +/obj/machinery/suit_storage_unit/mining{ + desc = "An industrial unit made to hold space suits. Age has seemed to rust the sliding door mechanisms, making it difficult to open."; + name = "rusted suit storage unit" + }, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid/level_two) +"dw" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/effect/landmark/awaystart, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid/level_two) "dx" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/decal/cleanable/cobweb, @@ -1035,6 +1221,26 @@ /obj/item/stack/sheet/iron, /turf/open/floor/plating, /area/awaymission/caves/northblock) +"dM" = ( +/turf/open/floor/iron, +/area/awaymission/caves/northblock) +"dN" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/northblock) +"dO" = ( +/mob/living/simple_animal/hostile/retaliate/bat{ + desc = "A rare breed of bat which roosts deep in caves."; + name = "Cave Bat" + }, +/turf/open/floor/iron, +/area/awaymission/caves/northblock) +"dP" = ( +/obj/item/stack/rods, +/turf/open/floor/iron, +/area/awaymission/caves/northblock) "dQ" = ( /obj/machinery/door/airlock/mining{ name = "Dorm Access" @@ -1044,6 +1250,14 @@ "dR" = ( /turf/open/floor/plating, /area/awaymission/caves/northblock) +"dS" = ( +/obj/machinery/light/small, +/turf/open/floor/iron, +/area/awaymission/caves/northblock) +"dT" = ( +/obj/structure/spider/stickyweb, +/turf/open/floor/iron, +/area/awaymission/caves/northblock) "dU" = ( /obj/structure/closet/crate/miningcar{ name = "Mining cart" @@ -1108,6 +1322,16 @@ initial_gas_mix = "n2=23;o2=14;TEMP=2.7" }, /area/awaymission/caves/BMP_asteroid) +"eg" = ( +/obj/effect/decal/cleanable/robot_debris/old, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) +"eh" = ( +/obj/structure/table, +/obj/item/radio, +/obj/item/radio, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) "ei" = ( /obj/structure/table, /obj/item/paper_bin, @@ -1152,6 +1376,12 @@ initial_gas_mix = "n2=23;o2=14;TEMP=2.7" }, /area/awaymission/caves/northblock) +"eq" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) "er" = ( /obj/structure/chair/stool, /turf/open/floor/plating, @@ -1176,18 +1406,170 @@ initial_gas_mix = "n2=23;o2=14;TEMP=2.7" }, /area/awaymission/caves/BMP_asteroid) +"ev" = ( +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) +"ew" = ( +/obj/structure/table, +/obj/item/mining_scanner, +/obj/item/mining_scanner, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) +"ex" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/decal/cleanable/cobweb, +/obj/item/survivalcapsule, +/obj/item/extinguisher/mini, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) +"ey" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) +"ez" = ( +/obj/machinery/light/small/built{ + dir = 1 + }, +/obj/machinery/suit_storage_unit/mining{ + desc = "An industrial unit made to hold space suits. Age has seemed to rust the sliding door mechanisms, making it difficult to open."; + name = "rusted suit storage unit" + }, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) +"eA" = ( +/obj/structure/table, +/obj/item/paper/fluff/awaymissions/caves/work_notice, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) +"eB" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) +"eC" = ( +/obj/structure/table, +/obj/item/gps/mining, +/obj/item/gps/mining, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) +"eD" = ( +/obj/structure/closet/secure_closet/miner, +/obj/item/survivalcapsule, +/obj/item/extinguisher/mini, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) +"eE" = ( +/obj/effect/landmark/awaystart, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) "eF" = ( /turf/closed/wall, /area/awaymission/caves/listeningpost) "eG" = ( /turf/closed/wall/rust, /area/awaymission/caves/listeningpost) +"eH" = ( +/obj/machinery/vending/sustenance, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) +"eI" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/switchblade, +/obj/item/switchblade, +/turf/open/floor/iron, +/area/awaymission/caves/listeningpost) +"eJ" = ( +/turf/open/floor/iron, +/area/awaymission/caves/listeningpost) +"eK" = ( +/obj/structure/table, +/obj/item/gun/energy/kinetic_accelerator, +/obj/item/gun/energy/kinetic_accelerator, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/iron, +/area/awaymission/caves/listeningpost) +"eL" = ( +/obj/machinery/vending/sovietsoda, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) +"eM" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/table, +/obj/item/storage/toolbox/electrical, +/obj/item/multitool, +/turf/open/floor/iron, +/area/awaymission/caves/listeningpost) +"eN" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/iron, +/area/awaymission/caves/listeningpost) +"eO" = ( +/obj/effect/landmark/awaystart, +/turf/open/floor/iron, +/area/awaymission/caves/listeningpost) "eQ" = ( /obj/machinery/mineral/mint, /turf/open/floor/plating/asteroid/basalt{ initial_gas_mix = "n2=23;o2=14;TEMP=2.7" }, /area/awaymission/caves/BMP_asteroid) +"eR" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) +"eS" = ( +/obj/machinery/light/small/built, +/obj/machinery/suit_storage_unit/mining{ + desc = "An industrial unit made to hold space suits. Age has seemed to rust the sliding door mechanisms, making it difficult to open."; + name = "rusted suit storage unit" + }, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) +"eT" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) +"eU" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/iron, +/area/awaymission/caves/listeningpost) +"eV" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/iron, +/area/awaymission/caves/listeningpost) +"eW" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/iron, +/area/awaymission/caves/listeningpost) +"eX" = ( +/obj/structure/table, +/obj/item/paper/pamphlet/gateway, +/turf/open/floor/iron, +/area/awaymission/caves/listeningpost) +"eY" = ( +/obj/structure/table, +/turf/open/floor/iron, +/area/awaymission/caves/listeningpost) +"eZ" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/listeningpost) +"fa" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/item/paper/fluff/awaymissions/caves/shipment_notice, +/obj/item/paper/fluff/awaymissions/caves/safety_notice, +/turf/open/floor/iron, +/area/awaymission/caves/listeningpost) "fb" = ( /obj/structure/spawner/mining/hivelord, /turf/open/floor/plating/asteroid/basalt{ @@ -1298,6 +1680,37 @@ initial_gas_mix = "n2=23;o2=14;TEMP=2.7" }, /area/awaymission/caves/BMP_asteroid) +"fq" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) +"fr" = ( +/obj/machinery/light/small/built{ + dir = 1 + }, +/obj/structure/spider/stickyweb, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) +"fs" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) +"ft" = ( +/obj/structure/table, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire, +/obj/structure/spider/stickyweb, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) +"fu" = ( +/obj/structure/table, +/obj/item/storage/firstaid/brute, +/obj/item/reagent_containers/blood/OPlus, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) "fv" = ( /obj/structure/glowshroom/single, /turf/open/floor/plating/asteroid/basalt{ @@ -1330,6 +1743,26 @@ initial_gas_mix = "n2=23;o2=14;TEMP=2.7" }, /area/awaymission/caves/BMP_asteroid) +"fA" = ( +/obj/structure/bed, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) +"fB" = ( +/obj/structure/spider/stickyweb, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) +"fC" = ( +/mob/living/simple_animal/hostile/poison/giant_spider/hunter, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) +"fD" = ( +/obj/structure/spider/stickyweb, +/obj/machinery/sleeper{ + dir = 8 + }, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) "fE" = ( /obj/machinery/light/small, /turf/open/floor/plating/asteroid/basalt{ @@ -1342,6 +1775,13 @@ initial_gas_mix = "n2=23;o2=14;TEMP=2.7" }, /area/awaymission/caves/BMP_asteroid/level_two) +"fG" = ( +/obj/machinery/door/airlock/medical{ + name = "Medical" + }, +/obj/structure/barricade/wooden, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) "fH" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -1358,10 +1798,34 @@ /obj/structure/grille, /turf/open/floor/plating, /area/awaymission/caves/BMP_asteroid) +"fK" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) +"fL" = ( +/obj/structure/sign/departments/examroom{ + pixel_y = 32 + }, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) +"fM" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) "fN" = ( /obj/machinery/door/airlock/external, /turf/open/floor/plating, /area/awaymission/caves/BMP_asteroid) +"fO" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/iron/dark{ + initial_gas_mix = "n2=23;o2=14;TEMP=2.7" + }, +/area/awaymission/caves/BMP_asteroid) "fP" = ( /obj/structure/grille, /turf/open/floor/plating/asteroid/basalt{ @@ -1375,12 +1839,28 @@ initial_gas_mix = "n2=23;o2=14;TEMP=2.7" }, /area/awaymission/caves/BMP_asteroid/level_two) +"fS" = ( +/obj/structure/table, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/toxin, +/obj/item/reagent_containers/blood/OPlus, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) +"fT" = ( +/obj/machinery/iv_drip, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) "fW" = ( /obj/structure/girder, /turf/open/floor/plating{ initial_gas_mix = "n2=23;o2=14;TEMP=2.7" }, /area/awaymission/caves/BMP_asteroid) +"fY" = ( +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) "ga" = ( /obj/structure/ladder/unbreakable{ height = 2; @@ -1390,6 +1870,10 @@ initial_gas_mix = "n2=23;o2=14;TEMP=2.7" }, /area/awaymission/caves/BMP_asteroid) +"gb" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) "gc" = ( /obj/item/stack/rods, /turf/open/floor/plating{ @@ -1413,6 +1897,11 @@ initial_gas_mix = "n2=23;o2=14;TEMP=2.7" }, /area/awaymission/caves/BMP_asteroid) +"gf" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/drinkingglass, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) "gg" = ( /obj/structure/table/reinforced, /obj/item/storage/box/donkpockets, @@ -1433,12 +1922,22 @@ initial_gas_mix = "n2=23;o2=14;TEMP=2.7" }, /area/awaymission/caves/BMP_asteroid) +"gj" = ( +/obj/machinery/door/airlock/mining{ + name = "Kitchen" + }, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) "gk" = ( /obj/effect/landmark/awaystart, /turf/open/floor/plating/asteroid/basalt{ initial_gas_mix = "n2=23;o2=14;TEMP=2.7" }, /area/awaymission/caves/BMP_asteroid/level_two) +"gm" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) "gn" = ( /obj/item/grown/log, /turf/open/floor/plating/asteroid/basalt{ @@ -1457,30 +1956,105 @@ initial_gas_mix = "n2=23;o2=14;TEMP=2.7" }, /area/awaymission/caves/BMP_asteroid) +"gq" = ( +/obj/structure/chair/stool, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) +"gr" = ( +/obj/structure/table, +/obj/item/kitchen/fork, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) "gs" = ( /obj/item/assembly/igniter, /turf/open/floor/plating/asteroid/basalt{ initial_gas_mix = "n2=23;o2=14;TEMP=2.7" }, /area/awaymission/caves/BMP_asteroid/level_two) +"gt" = ( +/obj/structure/table_frame, +/obj/item/stack/sheet/iron, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) +"gu" = ( +/obj/item/stack/rods, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) +"gv" = ( +/obj/structure/table_frame, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) +"gw" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) +"gy" = ( +/obj/item/reagent_containers/food/drinks/drinkingglass, +/turf/open/floor/iron, +/area/awaymission/caves/BMP_asteroid) "gz" = ( /obj/machinery/door/airlock/external{ name = "Mess Hall" }, /turf/open/floor/plating, /area/awaymission/caves/BMP_asteroid) +"gA" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/iron/dark{ + initial_gas_mix = "n2=23;o2=14;TEMP=2.7" + }, +/area/awaymission/caves/BMP_asteroid) +"gB" = ( +/obj/machinery/mech_bay_recharge_port, +/turf/open/floor/iron{ + initial_gas_mix = "n2=23;o2=14;TEMP=2.7" + }, +/area/awaymission/caves/BMP_asteroid) "gD" = ( /obj/structure/spawner/mining/hivelord, /turf/open/floor/plating/asteroid/basalt{ initial_gas_mix = "n2=23;o2=14;TEMP=2.7" }, /area/awaymission/caves/BMP_asteroid) +"gE" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/iron{ + initial_gas_mix = "n2=23;o2=14;TEMP=2.7" + }, +/area/awaymission/caves/BMP_asteroid) +"gF" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/glasses/material, +/turf/open/floor/iron{ + initial_gas_mix = "n2=23;o2=14;TEMP=2.7" + }, +/area/awaymission/caves/BMP_asteroid) +"gG" = ( +/obj/structure/mecha_wreckage/durand, +/turf/open/floor/iron/recharge_floor, +/area/awaymission/caves/BMP_asteroid) "gH" = ( /obj/structure/table, /obj/item/mecha_parts/mecha_equipment/drill/diamonddrill, /obj/item/paper/fluff/awaymissions/caves/mech_notice, /turf/open/floor/plating, /area/awaymission/caves/BMP_asteroid) +"gI" = ( +/obj/structure/chair/stool, +/turf/open/floor/iron{ + initial_gas_mix = "n2=23;o2=14;TEMP=2.7" + }, +/area/awaymission/caves/BMP_asteroid) +"gJ" = ( +/turf/open/floor/iron{ + initial_gas_mix = "n2=23;o2=14;TEMP=2.7" + }, +/area/awaymission/caves/BMP_asteroid) "gK" = ( /obj/structure/girder, /turf/open/floor/plating, @@ -1489,6 +2063,28 @@ /obj/item/stack/rods, /turf/open/floor/plating, /area/awaymission/caves/BMP_asteroid) +"gM" = ( +/obj/structure/mecha_wreckage/ripley, +/turf/open/floor/iron/recharge_floor, +/area/awaymission/caves/BMP_asteroid) +"gN" = ( +/obj/structure/holohoop, +/turf/open/floor/iron/dark{ + initial_gas_mix = "n2=23;o2=14;TEMP=2.7" + }, +/area/awaymission/caves/BMP_asteroid) +"gO" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/iron{ + initial_gas_mix = "n2=23;o2=14;TEMP=2.7" + }, +/area/awaymission/caves/BMP_asteroid) +"gP" = ( +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/iron/dark{ + initial_gas_mix = "n2=23;o2=14;TEMP=2.7" + }, +/area/awaymission/caves/BMP_asteroid) "gQ" = ( /obj/structure/spawner/mining/basilisk, /turf/open/floor/plating/asteroid/basalt{ @@ -1507,6 +2103,14 @@ }, /turf/open/floor/plating, /area/awaymission/caves/BMP_asteroid) +"gU" = ( +/obj/structure/holohoop{ + dir = 1 + }, +/turf/open/floor/iron/dark{ + initial_gas_mix = "n2=23;o2=14;TEMP=2.7" + }, +/area/awaymission/caves/BMP_asteroid) "gV" = ( /obj/effect/mine/explosive{ desc = "Rusted mines planted out by the miners before, probably to keep the cave monsters at bay."; @@ -1540,347 +2144,18 @@ /obj/effect/baseturf_helper/asteroid/basalt, /turf/closed/wall, /area/awaymission/caves/northblock) -"hr" = ( -/obj/machinery/vending/sustenance, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"hK" = ( -/obj/structure/spider/stickyweb, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"il" = ( -/obj/structure/table, -/obj/machinery/microwave, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"io" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/switchblade, -/obj/item/switchblade, -/turf/open/floor/iron, -/area/awaymission/caves/listeningpost) -"iM" = ( -/turf/open/floor/iron, -/area/awaymission/caves/northblock) -"jc" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"jg" = ( -/obj/machinery/light, -/turf/open/floor/iron{ - initial_gas_mix = "n2=23;o2=14;TEMP=2.7" - }, -/area/awaymission/caves/research) -"jI" = ( -/obj/structure/glowshroom/single, -/turf/open/floor/iron{ - initial_gas_mix = "n2=23;o2=14;TEMP=2.7" - }, -/area/awaymission/caves/research) -"kh" = ( -/obj/machinery/light/small/built{ - dir = 1 - }, -/obj/machinery/suit_storage_unit/mining{ - desc = "An industrial unit made to hold space suits. Age has seemed to rust the sliding door mechanisms, making it difficult to open."; - name = "rusted suit storage unit" - }, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"kI" = ( -/obj/machinery/door/airlock/mining{ - name = "Kitchen" - }, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"kP" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/iron{ - initial_gas_mix = "n2=23;o2=14;TEMP=2.7" - }, -/area/awaymission/caves/BMP_asteroid) -"lp" = ( -/obj/structure/closet/secure_closet/miner{ - name = "weapon equipment" - }, -/obj/item/grenade/syndieminibomb/concussion, -/obj/item/grenade/syndieminibomb/concussion, -/obj/item/grenade/syndieminibomb/concussion, -/turf/open/floor/iron{ - initial_gas_mix = "n2=23;o2=14;TEMP=2.7" - }, -/area/awaymission/caves/research) -"lI" = ( -/obj/structure/table_frame, -/obj/item/stack/sheet/iron, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"lZ" = ( -/obj/structure/table, -/obj/item/storage/firstaid/brute, -/obj/item/reagent_containers/blood/OPlus, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"ml" = ( -/obj/structure/holohoop{ - dir = 1 - }, -/turf/open/floor/iron/dark{ - initial_gas_mix = "n2=23;o2=14;TEMP=2.7" - }, -/area/awaymission/caves/BMP_asteroid) -"mV" = ( -/obj/structure/table, -/obj/item/storage/box/donkpockets, -/obj/item/clothing/glasses/meson, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid/level_two) -"oD" = ( +"iv" = ( /obj/effect/landmark/awaystart, -/turf/open/floor/iron, -/area/awaymission/caves/listeningpost) -"oK" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid/level_two) -"oX" = ( -/obj/structure/spider/stickyweb, -/obj/machinery/sleeper{ - dir = 8 - }, -/mob/living/simple_animal/hostile/poison/giant_spider/hunter, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"pp" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/iron{ - initial_gas_mix = "n2=23;o2=14;TEMP=2.7" - }, -/area/awaymission/caves/BMP_asteroid) -"qg" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/iron/dark{ - initial_gas_mix = "n2=23;o2=14;TEMP=2.7" - }, -/area/awaymission/caves/BMP_asteroid) -"qi" = ( -/obj/structure/sign/departments/examroom{ - pixel_y = 32 - }, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"qo" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/pickaxe{ - attack_verb_continuous = list("bashes", "bludgeons", "thrashes", "whacks"); - attack_verb_simple = list("bash", "bludgeon", "thrash", "whack"); - desc = "A pickaxe thats been left to rust."; - force = 1; - name = "rusty pickaxe"; - pixel_x = 5; - throwforce = 1 - }, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid/level_two) -"qB" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/iron, -/area/awaymission/caves/listeningpost) -"qC" = ( -/obj/structure/table, -/turf/open/floor/iron{ - initial_gas_mix = "n2=23;o2=14;TEMP=2.7" - }, -/area/awaymission/caves/research) -"qG" = ( -/obj/machinery/mech_bay_recharge_port, -/turf/open/floor/iron{ - initial_gas_mix = "n2=23;o2=14;TEMP=2.7" - }, -/area/awaymission/caves/BMP_asteroid) -"qO" = ( -/turf/open/floor/iron, -/area/awaymission/caves/listeningpost) -"rm" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/iron, -/area/awaymission/caves/listeningpost) -"sm" = ( -/obj/structure/table_frame, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"sq" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"sJ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"ti" = ( -/obj/structure/table, -/obj/item/kitchen/fork, -/obj/item/trash/plate, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"uh" = ( -/obj/structure/table, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/fire, -/obj/structure/spider/stickyweb, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"vn" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/filingcabinet, -/obj/item/paper/fluff/awaymissions/caves/omega, -/turf/open/floor/iron{ - initial_gas_mix = "n2=23;o2=14;TEMP=2.7" - }, -/area/awaymission/caves/research) -"vr" = ( -/obj/vehicle/sealed/mecha/working/ripley/mining, -/turf/open/floor/iron/recharge_floor, -/area/awaymission/caves/BMP_asteroid) -"vQ" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/crap, -/turf/open/floor/iron{ - initial_gas_mix = "n2=23;o2=14;TEMP=2.7" - }, -/area/awaymission/caves/research) -"ws" = ( /turf/open/floor/plating/elevatorshaft{ initial_gas_mix = "n2=23;o2=14;TEMP=2.7"; name = "elevator flooring" }, /area/awaymission/caves/BMP_asteroid) -"wG" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/iron{ - initial_gas_mix = "n2=23;o2=14;TEMP=2.7" - }, -/area/awaymission/caves/research) -"wO" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/item/paper/fluff/awaymissions/caves/shipment_notice, -/obj/item/paper/fluff/awaymissions/caves/safety_notice, -/turf/open/floor/iron, -/area/awaymission/caves/listeningpost) -"xi" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"xx" = ( -/obj/machinery/light/small/built{ - dir = 4 - }, -/obj/structure/spider/stickyweb, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid/level_two) -"xF" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"yf" = ( -/turf/open/floor/iron/dark{ - initial_gas_mix = "n2=23;o2=14;TEMP=2.7" - }, -/area/awaymission/caves/BMP_asteroid) -"yo" = ( -/obj/item/stack/rods, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"yt" = ( -/obj/structure/spider/stickyweb, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid/level_two) -"yD" = ( -/obj/structure/chair/stool, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"zf" = ( -/obj/structure/table, -/obj/item/paper/fluff/awaymissions/caves/magma, -/obj/item/pen, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid/level_two) -"zg" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"zH" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/iron, -/area/awaymission/caves/listeningpost) -"zI" = ( -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid/level_two) -"zN" = ( -/obj/item/stack/rods, -/turf/open/floor/iron, -/area/awaymission/caves/northblock) -"Ak" = ( -/obj/structure/table, -/obj/item/storage/firstaid/toxin, -/obj/item/storage/firstaid/toxin, -/obj/item/reagent_containers/blood/OPlus, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"Bj" = ( -/obj/structure/table, -/obj/item/gps/mining, -/obj/item/gps/mining, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"Bm" = ( -/obj/structure/bed, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"Br" = ( -/obj/effect/landmark/awaystart, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"BW" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/obj/item/clothing/glasses/material, -/turf/open/floor/iron{ - initial_gas_mix = "n2=23;o2=14;TEMP=2.7" - }, -/area/awaymission/caves/BMP_asteroid) -"Ca" = ( -/obj/item/trash/plate, -/turf/open/floor/iron, +"nk" = ( +/obj/vehicle/sealed/mecha/working/ripley/mining, +/turf/open/floor/iron/recharge_floor, /area/awaymission/caves/BMP_asteroid) -"Cv" = ( -/obj/effect/decal/remains/human, -/turf/open/floor/iron{ - initial_gas_mix = "n2=23;o2=14;TEMP=2.7" - }, -/area/awaymission/caves/research) -"CL" = ( +"qC" = ( /obj/structure/table, /obj/item/pickaxe{ attack_verb_continuous = list("bashes", "bludgeons", "thrashes", "whacks"); @@ -1902,20 +2177,13 @@ }, /turf/open/floor/iron, /area/awaymission/caves/listeningpost) -"Dk" = ( -/turf/open/floor/iron{ - initial_gas_mix = "n2=23;o2=14;TEMP=2.7" - }, -/area/awaymission/caves/research) -"Em" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/iron/dark{ - initial_gas_mix = "n2=23;o2=14;TEMP=2.7" - }, +"rP" = ( +/obj/structure/table, +/obj/item/kitchen/fork, +/obj/item/plate, +/turf/open/floor/iron, /area/awaymission/caves/BMP_asteroid) -"Eq" = ( +"xG" = ( /obj/structure/closet/crate/miningcar{ name = "Mining cart" }, @@ -1935,125 +2203,10 @@ initial_gas_mix = "n2=23;o2=14;TEMP=2.7" }, /area/awaymission/caves/BMP_asteroid/level_two) -"Ex" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/iron, -/area/awaymission/caves/listeningpost) -"EN" = ( -/mob/living/simple_animal/hostile/retaliate/bat{ - desc = "A rare breed of bat which roosts deep in caves."; - name = "Cave Bat" - }, -/turf/open/floor/iron, -/area/awaymission/caves/northblock) -"FA" = ( -/obj/structure/table, -/turf/open/floor/iron, -/area/awaymission/caves/listeningpost) -"Gp" = ( -/obj/structure/table, -/obj/item/paper/fluff/awaymissions/caves/work_notice, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"GC" = ( -/obj/effect/landmark/awaystart, -/turf/open/floor/plating/elevatorshaft{ - initial_gas_mix = "n2=23;o2=14;TEMP=2.7"; - name = "elevator flooring" - }, -/area/awaymission/caves/BMP_asteroid) -"He" = ( -/obj/machinery/iv_drip, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"Ib" = ( -/obj/structure/holohoop, -/turf/open/floor/iron/dark{ - initial_gas_mix = "n2=23;o2=14;TEMP=2.7" - }, -/area/awaymission/caves/BMP_asteroid) -"Id" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"IS" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/iron{ - initial_gas_mix = "n2=23;o2=14;TEMP=2.7" - }, -/area/awaymission/caves/research) -"JH" = ( -/obj/machinery/door/airlock/medical{ - name = "Medical" - }, -/obj/structure/barricade/wooden, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"JM" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"Kb" = ( -/mob/living/simple_animal/hostile/poison/giant_spider/hunter, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"Kr" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"KG" = ( -/obj/machinery/suit_storage_unit/mining{ - desc = "An industrial unit made to hold space suits. Age has seemed to rust the sliding door mechanisms, making it difficult to open."; - name = "rusted suit storage unit" - }, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid/level_two) -"Lc" = ( -/obj/structure/sign/warning/vacuum{ - name = "\improper LOW AIR AREA"; - pixel_x = 32 - }, -/obj/item/stack/rods, -/turf/open/floor/iron{ - initial_gas_mix = "n2=23;o2=14;TEMP=2.7" - }, -/area/awaymission/caves/research) -"Lv" = ( -/obj/structure/closet/secure_closet/miner, -/obj/item/survivalcapsule, -/obj/item/extinguisher/mini, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"My" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/table, -/obj/item/storage/toolbox/electrical, -/obj/item/multitool, -/turf/open/floor/iron, -/area/awaymission/caves/listeningpost) -"MG" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"NB" = ( -/obj/structure/table, -/obj/item/radio, -/obj/item/radio, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"NX" = ( -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/iron/dark{ - initial_gas_mix = "n2=23;o2=14;TEMP=2.7" +"Ci" = ( +/obj/structure/closet/crate/miningcar{ + name = "Mining cart" }, -/area/awaymission/caves/BMP_asteroid) -"NY" = ( -/obj/structure/spider/stickyweb, -/turf/open/floor/iron, -/area/awaymission/caves/northblock) -"NZ" = ( /obj/item/pickaxe{ attack_verb_continuous = list("bashes", "bludgeons", "thrashes", "whacks"); attack_verb_simple = list("bash", "bludgeon", "thrash", "whack"); @@ -2067,19 +2220,8 @@ initial_gas_mix = "n2=23;o2=14;TEMP=2.7" }, /area/awaymission/caves/BMP_asteroid/level_two) -"Ou" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"Ov" = ( -/obj/machinery/vending/sovietsoda, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"PD" = ( -/obj/structure/closet/crate/miningcar{ - name = "Mining cart" - }, +"Gh" = ( +/obj/structure/closet/secure_closet/personal, /obj/item/pickaxe{ attack_verb_continuous = list("bashes", "bludgeons", "thrashes", "whacks"); attack_verb_simple = list("bash", "bludgeon", "thrash", "whack"); @@ -2089,174 +2231,32 @@ pixel_x = 5; throwforce = 1 }, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14;TEMP=2.7" - }, -/area/awaymission/caves/BMP_asteroid/level_two) -"PF" = ( -/obj/structure/table, -/obj/item/gun/energy/kinetic_accelerator, -/obj/item/gun/energy/kinetic_accelerator, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/iron, -/area/awaymission/caves/listeningpost) -"QM" = ( -/obj/structure/table, -/obj/item/melee/baton, -/turf/open/floor/iron{ - initial_gas_mix = "n2=23;o2=14;TEMP=2.7" - }, -/area/awaymission/caves/research) -"QW" = ( -/obj/structure/table, -/obj/item/mining_scanner, -/obj/item/mining_scanner, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"Rr" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/iron, -/area/awaymission/caves/northblock) -"RG" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/effect/landmark/awaystart, /turf/open/floor/iron, /area/awaymission/caves/BMP_asteroid/level_two) -"RM" = ( -/obj/structure/mecha_wreckage/ripley, -/turf/open/floor/iron/recharge_floor, -/area/awaymission/caves/BMP_asteroid) -"RZ" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"Sn" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"SZ" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/iron{ - initial_gas_mix = "n2=23;o2=14;TEMP=2.7" - }, -/area/awaymission/caves/research) -"Tc" = ( -/obj/item/reagent_containers/food/drinks/drinkingglass, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"TC" = ( -/turf/open/floor/iron/dark{ - initial_gas_mix = "n2=23;o2=14;TEMP=2.7" +"IV" = ( +/obj/item/pickaxe{ + attack_verb_continuous = list("bashes", "bludgeons", "thrashes", "whacks"); + attack_verb_simple = list("bash", "bludgeon", "thrash", "whack"); + desc = "A pickaxe thats been left to rust."; + force = 1; + name = "rusty pickaxe"; + pixel_x = 5; + throwforce = 1 }, -/area/awaymission/caves/BMP_asteroid/level_two) -"TU" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/decal/cleanable/cobweb, -/obj/item/survivalcapsule, -/obj/item/extinguisher/mini, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"Uu" = ( -/obj/structure/chair/stool, -/turf/open/floor/iron{ +/turf/open/floor/plating/asteroid/basalt{ initial_gas_mix = "n2=23;o2=14;TEMP=2.7" }, -/area/awaymission/caves/BMP_asteroid) -"UE" = ( -/obj/structure/ladder/unbreakable{ - height = 2; - id = "minedeep" - }, -/turf/open/floor/iron, /area/awaymission/caves/BMP_asteroid/level_two) -"Vl" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/iron, -/area/awaymission/caves/listeningpost) -"Vq" = ( -/obj/structure/table, -/obj/machinery/microwave, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid/level_two) -"Vt" = ( -/obj/machinery/light/small/built, -/obj/machinery/suit_storage_unit/mining{ - desc = "An industrial unit made to hold space suits. Age has seemed to rust the sliding door mechanisms, making it difficult to open."; - name = "rusted suit storage unit" - }, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"VA" = ( -/obj/structure/table, -/obj/item/restraints/handcuffs/cable, -/obj/item/restraints/handcuffs/cable, -/turf/open/floor/iron{ - initial_gas_mix = "n2=23;o2=14;TEMP=2.7" - }, -/area/awaymission/caves/research) -"VV" = ( -/obj/structure/mecha_wreckage/durand, -/turf/open/floor/iron/recharge_floor, -/area/awaymission/caves/BMP_asteroid) -"WK" = ( -/obj/machinery/light/small, -/turf/open/floor/iron, -/area/awaymission/caves/northblock) -"WR" = ( -/obj/structure/table, -/obj/item/paper/pamphlet/gateway, -/turf/open/floor/iron, -/area/awaymission/caves/listeningpost) -"XG" = ( -/obj/structure/table, -/obj/item/kitchen/fork, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"XJ" = ( -/obj/effect/decal/cleanable/robot_debris/old, -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"XX" = ( -/obj/item/shard, -/obj/item/stack/rods, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/iron{ - initial_gas_mix = "n2=23;o2=14;TEMP=2.7" - }, -/area/awaymission/caves/research) -"Yn" = ( -/turf/open/floor/iron, -/area/awaymission/caves/BMP_asteroid) -"YU" = ( -/obj/machinery/light/small/built{ - dir = 1 - }, -/obj/structure/spider/stickyweb, -/mob/living/simple_animal/hostile/poison/giant_spider/hunter, +"Lc" = ( +/obj/item/plate, /turf/open/floor/iron, /area/awaymission/caves/BMP_asteroid) -"ZF" = ( -/turf/open/floor/iron{ - initial_gas_mix = "n2=23;o2=14;TEMP=2.7" +"Ny" = ( +/turf/open/floor/plating/elevatorshaft{ + initial_gas_mix = "n2=23;o2=14;TEMP=2.7"; + name = "elevator flooring" }, /area/awaymission/caves/BMP_asteroid) -"ZI" = ( -/obj/structure/sign/warning/vacuum{ - name = "\improper LOW AIR AREA"; - pixel_x = 32 - }, -/turf/open/floor/iron{ - initial_gas_mix = "n2=23;o2=14;TEMP=2.7" - }, -/area/awaymission/caves/research) (1,1,1) = {" aa @@ -5530,8 +5530,8 @@ dt dx dE dI -iM -zN +dM +dP dI dG dA @@ -5787,8 +5787,8 @@ du dy dy dJ -iM -iM +dM +dM dt dy dB @@ -6044,8 +6044,8 @@ du dz dF du -iM -iM +dM +dM dt dY dz @@ -6301,8 +6301,8 @@ du du du dt -Rr -iM +dN +dM du du du @@ -6558,8 +6558,8 @@ du dA dG dI -EN -zN +dO +dP dI dZ el @@ -6815,8 +6815,8 @@ du dB dy dK -zN -iM +dP +dM dR ea dy @@ -7072,8 +7072,8 @@ dt dz dH dt -iM -zN +dM +dP dK dF dz @@ -7329,8 +7329,8 @@ dt dt du du -iM -WK +dM +dS dt dt dt @@ -7586,8 +7586,8 @@ dt dC dE dI -iM -NY +dM +dT dI eb em @@ -7603,11 +7603,11 @@ bM bL bL dW -Ou -Bm +fq +fA dW -MG -Ak +fK +fS dX bL bL @@ -7860,11 +7860,11 @@ bL bL bL dW -YU -hK +fr +fB dW -qi -Yn +fL +ev dX bL bL @@ -8117,11 +8117,11 @@ bL bL bL dX -zg -Kb -JH -hK -He +fs +fC +fG +fB +fT dX bL bL @@ -8374,11 +8374,11 @@ bL bL bL dW -uh -Yn +ft +ev dW -sq -Yn +fM +ev dW bL bL @@ -8613,9 +8613,9 @@ bV bV bV bV -yf -yf -yf +cx +cx +cx bV bV ef @@ -8631,11 +8631,11 @@ bL bL bL dX -lZ -oX +fu +fD dX -Yn -hK +ev +fB dW bL bL @@ -8871,9 +8871,9 @@ bM bV bV bV -yf -yf -yf +cx +cx +cx cj bV bM @@ -8882,11 +8882,11 @@ bM bV bV cj -yf -yf -yf -yf -yf +cx +cx +cx +cx +cx dW dX dX @@ -9140,12 +9140,12 @@ bV bV bV bV -yf -yf -yf -yf -yf -yf +cx +cx +cx +cx +cx +cx bV fH ej @@ -9401,9 +9401,9 @@ bV bV bV ff -yf -yf -yf +cx +cx +cx dW fN dX @@ -9659,8 +9659,8 @@ bL bL dW bV -yf -yf +cx +cx fI bV bV @@ -9916,8 +9916,8 @@ bL bL bL bV -yf -yf +cx +cx bV bV bV @@ -10142,12 +10142,12 @@ bL bL cg cg -XX -VA +ct +cC cO cT -QM -vQ +cX +db cg cg bL @@ -10173,10 +10173,10 @@ bL bL fg bV -yf -yf -yf -yf +cx +cx +cx +cx bV bV bV @@ -10398,14 +10398,14 @@ bL bL bL cg -Dk -IS -Cv -IS -Dk -jI -Dk -wG +cn +cu +cD +cu +cn +cY +cn +dd cg bL bL @@ -10419,11 +10419,11 @@ bL bL bL dX -TU -Lv -Lv -Lv -Lv +ex +eD +eD +eD +eD dX bL bL @@ -10431,10 +10431,10 @@ bL fg bV bV -yf -yf -yf -yf +cx +cx +cx +cx bV bV bL @@ -10451,7 +10451,7 @@ bL bL bL bL -yf +cx ej bV bM @@ -10655,14 +10655,14 @@ bL bL bL ch -vn -SZ -SZ -Dk -Dk -Dk -Dk -jg +co +cv +cv +cn +cn +cn +cn +de ch bL bL @@ -10676,11 +10676,11 @@ bL bL bL dW -jc -Yn -Yn -Yn -sJ +ey +ev +ev +ev +eR dX bL bL @@ -10690,8 +10690,8 @@ bV bV bV bV -yf -yf +cx +cx bV bV bV @@ -10708,8 +10708,8 @@ bL bL bL bL -yf -yf +cx +cx ej bV bM @@ -10912,14 +10912,14 @@ bL bL bL ch -qC -Dk -Lc -Dk -Dk -ZI -Dk -lp +cp +cn +cE +cn +cn +cZ +cn +df ch bV bL @@ -10933,11 +10933,11 @@ bL bL bL dX -kh -Br -Yn -Yn -Vt +ez +eE +ev +ev +eS dX bL bL @@ -10947,12 +10947,12 @@ bV bV bV bV -yf -yf -yf -yf -yf -yf +cx +cx +cx +cx +cx +cx bV bV bV @@ -10965,16 +10965,16 @@ bL bL bL dW -Ib -yf +gN +cx ej bV bM bM bM bV -yf -ml +cx +gU dW bM bM @@ -11190,11 +11190,11 @@ bL bL bL dX -Gp -Yn -Yn -Yn -Kr +eA +ev +ev +ev +eT dW bL bV @@ -11204,11 +11204,11 @@ bV bV bV bV -qg -yf -yf -yf -yf +fO +cx +cx +cx +cx bV bV ff @@ -11222,16 +11222,16 @@ bL bL bL bL -yf -NX -yf +cx +gP +cx ej bV bV bV ej -yf -yf +cx +cx bL bM bM @@ -11447,11 +11447,11 @@ bL bL bL dX -Yn -Yn -Yn -Yn -Yn +ev +ev +ev +ev +ev eF eG eG @@ -11462,8 +11462,8 @@ bV bV bV dW -yf -yf +cx +cx bV bV bV @@ -11479,16 +11479,16 @@ bL bL bL bL -yf -yf -yf -qg -yf +cx +cx +cx +fO +cx bV gT -yf -yf -yf +cx +cx +cx bL bM bM @@ -11704,23 +11704,23 @@ dW dX dX dX -xi +eB dW -hr -Ov -Yn -Ex -qB -qO -oD +eH +eL +ev +eW +eN +eJ +eO fh bV bV bV bV bV -yf -yf +cx +cx bV bV bV @@ -11740,8 +11740,8 @@ fP fP fP dW -yf -yf +cx +cx dW fP bL @@ -11943,8 +11943,8 @@ bV bV bV cG -yf -yf +cx +cx cG bV bV @@ -11958,26 +11958,26 @@ bV bV bL dW -XJ -RZ -Yn -Yn +eg +eq +ev +ev eF eF eF eG eG -WR -qO -qO +eX +eJ +eJ fh bV bV bV bV bV -yf -yf +cx +cx bV cj bV @@ -11997,8 +11997,8 @@ bV bV bV cG -yf -yf +cx +cx cG bV bL @@ -12200,8 +12200,8 @@ bV bV bV bV -yf -yf +cx +cx bV bV bV @@ -12215,26 +12215,26 @@ bV bV bL dX -NB +eh ej -XJ -Yn +eg +ev eF -io -My -rm +eI +eM +eU eG -FA -qO -qO +eY +eJ +eJ eF fh eF bV bV bV -yf -yf +cx +cx bV bV bV @@ -12254,8 +12254,8 @@ bV gQ bV bV -yf -yf +cx +cx bV bV bL @@ -12457,8 +12457,8 @@ bV bV bV bV -yf -yf +cx +cx bV bV bV @@ -12475,23 +12475,23 @@ dX ei er ej -Yn +ev eG -qO -qB -qO +eJ +eN +eJ eF -Vl -qO -qO +eZ +eJ +eJ fi fm fi -yf -yf -yf -yf -yf +cx +cx +cx +cx +cx bV bV bV @@ -12506,13 +12506,13 @@ bV bV bV bV -yf -yf -yf -yf -yf -yf -yf +cx +cx +cx +cx +cx +cx +cx bV bL bL @@ -12713,9 +12713,9 @@ bV bV bV bV -yf -yf -yf +cx +cx +cx bV bV bV @@ -12731,44 +12731,44 @@ bL dX ej ej -Yn -Yn +ev +ev eG -qO -oD -qO +eJ +eO +eJ eF -wO -qO -qO +fa +eJ +eJ eF fh eF bV bV bV -yf -yf -yf -yf -yf -yf -yf -yf +cx +cx +cx +cx +cx +cx +cx +cx bV -yf -yf -yf -yf -yf -yf -yf -yf -yf -yf -yf -yf -yf +cx +cx +cx +cx +cx +cx +cx +cx +cx +cx +cx +cx +cx bV bV bV @@ -12970,8 +12970,8 @@ bV bV bV bV -yf -yf +cx +cx bV bV bV @@ -12988,39 +12988,39 @@ bL dW ek es -QW -Bj +ew +eC eF -qO -qO -qO -qO -qO -qO -qB +eJ +eJ +eJ +eJ +eJ +eJ +eN fh bV bV bV bV bV -yf -yf -yf -yf -yf -yf -yf -yf -yf -yf -yf -yf -yf -yf -yf -yf -yf +cx +cx +cx +cx +cx +cx +cx +cx +cx +cx +cx +cx +cx +cx +cx +cx +cx bV fg fg @@ -13227,8 +13227,8 @@ bV bV bV bV -yf -yf +cx +cx bV bV bV @@ -13248,28 +13248,28 @@ dX dX dW eF -PF -CL -zH +eK +qC +eV eF -qO -qO -qO +eJ +eJ +eJ fh bV bV bV ff bV -yf -yf +cx +cx bV ff bV bV bV -yf -yf +cx +cx bV bV bV @@ -13483,9 +13483,9 @@ bZ bV bV bV -yf -yf -yf +cx +cx +cx bV bV bV @@ -13518,15 +13518,15 @@ bV bV dW fP -yf -yf +cx +cx fJ dW bV bV bV -yf -yf +cx +cx bV bL bL @@ -13740,8 +13740,8 @@ bV bV cj bV -yf -yf +cx +cx bV bV bZ @@ -13774,16 +13774,16 @@ bV cj bV fJ -ws -ws -ws -ws +Ny +Ny +Ny +Ny fJ bV bV bV -yf -yf +cx +cx bV bL bL @@ -13997,8 +13997,8 @@ bV bV bV bV -yf -yf +cx +cx bV bV bV @@ -14031,17 +14031,17 @@ bV bV bV fJ -ws -ws -ws -ws +Ny +Ny +Ny +Ny fJ bV bV bV bV -yf -yf +cx +cx bV bV bL @@ -14254,8 +14254,8 @@ bV bV bV bV -yf -yf +cx +cx bV bV bV @@ -14288,19 +14288,19 @@ bV bV bV fJ -ws -GC -ws -ws +Ny +iv +Ny +Ny fJ bV bV bV bV -yf -yf -yf -yf +cx +cx +cx +cx bV bL bL @@ -14511,7 +14511,7 @@ bL bV bV bV -yf +cx bV bV bV @@ -14545,10 +14545,10 @@ cj bV bV fJ -ws -ws -ws -ws +Ny +Ny +Ny +Ny fJ bV bV @@ -14556,8 +14556,8 @@ bV bL dW ge -yf -yf +cx +cx bV bL bL @@ -14814,8 +14814,8 @@ bL bL bV bV -yf -yf +cx +cx bV bL bL @@ -15071,8 +15071,8 @@ bL bL bL bV -yf -yf +cx +cx bV bL bL @@ -15328,8 +15328,8 @@ bL bL bL bV -yf -yf +cx +cx bV bL bL @@ -15585,8 +15585,8 @@ dW dX dW dW -yf -yf +cx +cx bV bL bL @@ -15833,17 +15833,17 @@ bL bL bL dX -il -JM +fY +gb dX -Ca -Yn -Yn +Lc +ev +ev fN ej gz -yf -yf +cx +cx bV bL bL @@ -16091,16 +16091,16 @@ bM bM fW fy -Yn -Sn -Id -Yn -Yn +ev +gf +gm +ev +ev fN ej gz -yf -yf +cx +cx bV bL bL @@ -16351,13 +16351,13 @@ fy gc gg fy -Yn -Id +ev +gm dW dX dW -Em -yf +gA +cx bV bV bM @@ -16609,13 +16609,13 @@ fy gh bM go -yD -xF +gq +gw fH bV bV -yf -yf +cx +cx bV bM bM @@ -16866,13 +16866,13 @@ bM bM bM gp -lI -ti +gt +rP fH bV bV -yf -yf +cx +cx bM bM bM @@ -17123,15 +17123,15 @@ fy gi fy fy -yD -Tc +gq +gy fH cj bV bV -yf -yf -yf +cx +cx +cx bM bM bM @@ -17379,9 +17379,9 @@ bM fy dW fy -yD -yo -yD +gq +gu +gq dX bL bL @@ -17634,11 +17634,11 @@ bM bM bM fy -kI -Yn -XG -sm -lI +gj +ev +gr +gv +gt dW bL bL @@ -17892,10 +17892,10 @@ bM bM fy fW -Yn -yD -Id -yD +ev +gq +gm +gq dW bL bL @@ -18414,7 +18414,7 @@ bL bV bV fy -BW +gF gH ej ej @@ -18672,7 +18672,7 @@ bV bV bV fy -Uu +gI fy gD eu @@ -19183,10 +19183,10 @@ bL bL bV fW -qG +gB fy -qG -ZF +gB +gJ fy fy bM @@ -19440,11 +19440,11 @@ bL bL bL dX -vr -kP -VV -ZF -qG +nk +gE +gG +gJ +gB fy bM bV @@ -19700,10 +19700,10 @@ dW dW dW dX -ZF -RM -ZF -pp +gJ +gM +gJ +gO dX gK dW @@ -53572,7 +53572,7 @@ bK bJ bR bJ -TC +cf ck bR bJ @@ -53829,8 +53829,8 @@ bK bJ bW bJ -TC -TC +cf +cf bW bJ bJ @@ -54086,11 +54086,11 @@ bK bJ bJ bJ -TC -TC -TC -TC -TC +cf +cf +cf +cf +cf bJ bK bK @@ -54127,7 +54127,7 @@ bJ bJ bJ bJ -NZ +IV gk bJ gs @@ -54342,13 +54342,13 @@ bK bK bK bX -PD -TC -TC -TC -TC -TC -TC +Ci +cf +cf +cf +cf +cf +cf bK bK bJ @@ -54604,8 +54604,8 @@ bJ bJ bJ bJ -TC -TC +cf +cf bK bK bJ @@ -57439,8 +57439,8 @@ bJ dh dm dh -zI -KG +do +dv bR bK bK @@ -57696,8 +57696,8 @@ bQ bR dl bR -yt -zI +dr +do bR bK bK @@ -57950,11 +57950,11 @@ bJ bJ cc bR -zf -oK -zI -zI -yt +di +dn +do +do +dr bQ bK bK @@ -58207,11 +58207,11 @@ bJ bJ cc bQ -UE -zI -zI -zI -zI +dj +do +do +do +do bR bK bK @@ -58464,11 +58464,11 @@ cd bJ cm bQ -Vq -mV -xx -qo -RG +dk +dp +dq +Gh +dw bR bK bK @@ -60773,7 +60773,7 @@ bK bK bR bJ -NZ +IV bJ bJ bR @@ -61578,7 +61578,7 @@ bK bK bK bK -Eq +xG bJ bJ bJ diff --git a/_maps/RandomZLevels/moonoutpost19.dmm b/_maps/RandomZLevels/moonoutpost19.dmm index 2cef09ba236cf..f0a57888a160d 100644 --- a/_maps/RandomZLevels/moonoutpost19.dmm +++ b/_maps/RandomZLevels/moonoutpost19.dmm @@ -8,219 +8,81 @@ "ac" = ( /turf/closed/mineral/random/labormineral, /area/awaymission/moonoutpost19/main) -"ad" = ( -/obj/structure/alien/weeds, -/obj/structure/alien/resin/wall, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/hive) -"ag" = ( -/obj/structure/alien/weeds, -/obj/structure/alien/egg/burst, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/hive) -"ai" = ( -/obj/structure/alien/weeds, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/hive) -"aj" = ( -/obj/structure/alien/weeds, -/obj/structure/bed/nest, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/hive) -"ak" = ( -/obj/structure/alien/weeds, -/mob/living/simple_animal/hostile/alien, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/hive) -"am" = ( -/obj/structure/alien/weeds/node, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/hive) -"ap" = ( -/obj/structure/alien/weeds, -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs, -/obj/item/clothing/mask/facehugger/impregnated, -/obj/item/gun/ballistic/automatic/pistol, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/hive) -"as" = ( -/obj/structure/alien/weeds, -/obj/structure/alien/resin/wall, -/obj/structure/alien/resin/wall, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" +"ah" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/area/awaymission/moonoutpost19/hive) -"at" = ( -/turf/closed/wall/r_wall, -/area/awaymission/moonoutpost19/syndicate) -"au" = ( -/obj/structure/alien/weeds, -/mob/living/simple_animal/hostile/alien/sentinel, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 10 }, -/area/awaymission/moonoutpost19/hive) -"av" = ( -/obj/structure/alien/weeds, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"al" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"an" = ( +/obj/item/kirbyplants{ + desc = "A plastic potted plant."; + pixel_y = 3 }, -/area/awaymission/moonoutpost19/hive) -"aw" = ( -/obj/structure/alien/weeds/node, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" +/turf/open/floor/iron{ + dir = 8; + icon_state = "floorscorched1" }, -/area/awaymission/moonoutpost19/hive) -"az" = ( -/obj/effect/turf_decal/tile/red{ +/area/awaymission/moonoutpost19/arrivals) +"ao" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 }, -/turf/open/floor/iron/dark, -/area/awaymission/moonoutpost19/syndicate) -"aA" = ( -/turf/open/floor/iron/dark, -/area/awaymission/moonoutpost19/syndicate) -"aB" = ( -/obj/effect/turf_decal/tile/red{ +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/arrivals) +"aq" = ( +/obj/machinery/light/small{ dir = 4 }, -/turf/open/floor/iron/dark, -/area/awaymission/moonoutpost19/syndicate) -"aD" = ( -/obj/structure/alien/weeds/node, -/obj/structure/alien/resin/wall, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/hive) -"aE" = ( -/obj/structure/alien/weeds, -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs, -/obj/item/clothing/mask/facehugger/impregnated, -/obj/item/clothing/under/rank/security/officer, -/obj/item/clothing/suit/armor/vest, -/obj/item/melee/baton/loaded, -/obj/item/clothing/head/helmet, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/hive) -"aF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/awaymission/moonoutpost19/syndicate) -"aJ" = ( -/obj/structure/alien/weeds, -/obj/structure/alien/egg/burst, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/hive) -"aK" = ( -/obj/structure/alien/weeds, -/obj/structure/alien/egg/burst, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/hive) -"aM" = ( -/obj/structure/alien/weeds, -/mob/living/simple_animal/hostile/alien/drone{ - plants_off = 1 - }, /turf/open/floor/plating/asteroid{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/area/awaymission/moonoutpost19/hive) -"aN" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/awaymission/moonoutpost19/syndicate) -"aP" = ( -/obj/machinery/gateway/centeraway{ - calibrated = 0 - }, -/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/arrivals) +"ar" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, /area/awaymission/moonoutpost19/syndicate) -"aR" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/iron/dark, +"at" = ( +/turf/closed/wall/r_wall, /area/awaymission/moonoutpost19/syndicate) -"aS" = ( -/obj/item/stack/ore/iron{ - pixel_x = 7; - pixel_y = -6 - }, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/main) -"aT" = ( -/obj/structure/alien/weeds, -/mob/living/simple_animal/hostile/alien/queen/large{ - desc = "A gigantic alien who is in charge of the hive and all of its loyal servants."; - name = "alien queen"; - pixel_x = -16; - plants_off = 1 +"ax" = ( +/obj/structure/cable{ + icon_state = "1-8" }, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/research) +"aQ" = ( +/obj/structure/urinal{ + pixel_y = 29 }, -/area/awaymission/moonoutpost19/hive) +/turf/open/floor/iron/freezer, +/area/awaymission/moonoutpost19/arrivals) "aU" = ( /turf/closed/wall, /area/awaymission/moonoutpost19/syndicate) -"aV" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/awaymission/moonoutpost19/syndicate) -"aZ" = ( -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron/dark, -/area/awaymission/moonoutpost19/syndicate) -"ba" = ( -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" +"aW" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/area/awaymission/moonoutpost19/main) -"bc" = ( -/obj/structure/alien/weeds, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" +/turf/open/floor/iron{ + dir = 8; + icon_state = "damaged2"; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/area/awaymission/moonoutpost19/hive) +/area/awaymission/moonoutpost19/arrivals) "bd" = ( /obj/machinery/vending/cola, /turf/open/floor/iron/dark, @@ -232,1583 +94,1493 @@ }, /turf/open/floor/iron/dark, /area/awaymission/moonoutpost19/syndicate) -"bg" = ( -/obj/structure/cable{ - icon_state = "1-2" +"bi" = ( +/obj/item/stack/rods, +/obj/item/shard{ + icon_state = "small" }, -/turf/open/floor/iron/dark, -/area/awaymission/moonoutpost19/syndicate) -"bh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron/dark, -/area/awaymission/moonoutpost19/syndicate) -"bj" = ( -/obj/structure/alien/weeds, -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs, -/obj/effect/decal/cleanable/blood, -/obj/item/clothing/mask/facehugger/impregnated, -/obj/item/clothing/under/syndicate, -/obj/item/clothing/glasses/night, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" +/obj/effect/decal/cleanable/blood/tracks{ + desc = "Your instincts say you shouldn't be following these."; + dir = 8; + icon_state = "ltrails_1" }, -/area/awaymission/moonoutpost19/hive) +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/research) "bl" = ( /turf/closed/mineral/random/high_chance, /area/awaymission/moonoutpost19/hive) -"bq" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table, -/obj/item/radio/off{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/radio/off{ - pixel_x = 2 +"bo" = ( +/obj/structure/closet/l3closet, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 }, -/obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/awaymission/moonoutpost19/syndicate) -"br" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 +"bI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/alien/weeds, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/obj/item/pen, -/obj/item/paper/fluff/awaymissions/moonoutpost19/log/personal, -/obj/effect/turf_decal/stripes/line{ - dir = 6 +/area/awaymission/moonoutpost19/syndicate) +"bM" = ( +/obj/structure/cable{ + icon_state = "4-8" }, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/research) +"bN" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets, +/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/awaymission/moonoutpost19/syndicate) -"bs" = ( -/obj/machinery/door/window{ - dir = 1; - name = "Gateway Access"; - req_access_txt = "150" - }, +"cb" = ( /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "201" }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/syndicate) -"bt" = ( -/obj/structure/window/reinforced{ - dir = 1 +/obj/effect/decal/cleanable/blood/tracks{ + desc = "Your instincts say you shouldn't be following these."; + dir = 8; + icon_state = "ltrails_1" }, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/research) +"cA" = ( /obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 +/obj/item/scalpel{ + pixel_y = 12 }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/syndicate) -"bu" = ( -/obj/structure/window/reinforced{ +/obj/item/circular_saw, +/obj/item/razor{ + pixel_y = 5 + }, +/obj/structure/alien/weeds, +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"cD" = ( +/obj/machinery/mineral/processing_unit_console{ + machinedir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, +/turf/closed/wall, /area/awaymission/moonoutpost19/syndicate) -"bv" = ( -/obj/structure/sink{ - pixel_y = 28 +"cF" = ( +/obj/structure/filingcabinet, +/obj/item/paper/fluff/awaymissions/moonoutpost19/log/kenneth, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 }, -/obj/machinery/light/small{ - dir = 8 +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/research) +"cI" = ( +/turf/open/floor/iron{ + dir = 8; + icon_state = "damaged3"; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/freezer, /area/awaymission/moonoutpost19/syndicate) -"bw" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" +"cS" = ( +/obj/effect/decal/cleanable/blood/tracks{ + desc = "Your instincts say you shouldn't be following these."; + dir = 8; + icon_state = "ltrails_2" }, -/turf/open/floor/iron/freezer, -/area/awaymission/moonoutpost19/syndicate) -"bA" = ( -/obj/machinery/light{ - dir = 8 +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/obj/structure/chair/stool, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/syndicate) -"bB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/syndicate) -"bC" = ( -/obj/structure/cable{ - icon_state = "1-2" +/area/awaymission/moonoutpost19/main) +"df" = ( +/obj/machinery/mineral/stacking_unit_console{ + machinedir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, +/turf/closed/wall, /area/awaymission/moonoutpost19/syndicate) -"bD" = ( +"dA" = ( +/turf/closed/mineral, +/area/awaymission/moonoutpost19/main) +"dX" = ( +/obj/item/cigbutt, +/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/awaymission/moonoutpost19/syndicate) -"bE" = ( -/obj/machinery/light{ - dir = 4 +"dZ" = ( +/turf/closed/wall/r_wall/rust, +/area/awaymission/moonoutpost19/research) +"ea" = ( +/turf/closed/wall/r_wall, +/area/awaymission/moonoutpost19/research) +"ec" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall/r_wall, +/area/awaymission/moonoutpost19/research) +"ed" = ( +/obj/machinery/vending/snack, +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/research) +"ei" = ( +/obj/structure/cable{ + icon_state = "2-4" }, -/obj/machinery/airalarm/directional/east{ - pixel_x = 23; - req_access = null; - req_access_txt = "150" +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/syndicate) -"bF" = ( -/obj/structure/toilet{ +/obj/structure/alien/weeds, +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"el" = ( +/obj/structure/alien/weeds, +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/engine, +/area/awaymission/moonoutpost19/research) +"em" = ( +/obj/structure/alien/weeds, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/engine, +/area/awaymission/moonoutpost19/research) +"en" = ( +/obj/structure/alien/weeds, +/turf/open/floor/engine, +/area/awaymission/moonoutpost19/research) +"eo" = ( +/obj/machinery/light/broken{ dir = 1 }, -/turf/open/floor/iron/freezer, -/area/awaymission/moonoutpost19/syndicate) -"bO" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Break Room" +/obj/structure/alien/weeds, +/obj/structure/alien/egg/burst, +/obj/machinery/camera/directional/north{ + c_tag = "Xenobiology Containment North"; + network = list("mo19x") }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/syndicate) -"bP" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/syndicate) -"bQ" = ( -/obj/structure/cable{ - icon_state = "1-2" +/turf/open/floor/engine, +/area/awaymission/moonoutpost19/research) +"ep" = ( +/obj/machinery/sparker{ + desc = "A wall-mounted ignition device. This one has been applied with an acid-proof coating."; + id = "awayxenobio"; + name = "Acid-Proof mounted igniter"; + pixel_y = 25 }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/highsecurity{ - name = "Gateway"; - req_access_txt = "150" +/obj/structure/alien/weeds, +/obj/structure/alien/resin/wall, +/turf/open/floor/engine, +/area/awaymission/moonoutpost19/research) +"eq" = ( +/obj/structure/alien/weeds, +/obj/structure/alien/resin/wall, +/turf/open/floor/engine, +/area/awaymission/moonoutpost19/research) +"er" = ( +/obj/structure/alien/weeds, +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs, +/obj/item/clothing/mask/facehugger/impregnated, +/turf/open/floor/engine, +/area/awaymission/moonoutpost19/research) +"et" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/research) +"ew" = ( +/turf/open/floor/plating{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/syndicate) -"bR" = ( +/area/awaymission/moonoutpost19/arrivals) +"ex" = ( /obj/structure/cable{ - icon_state = "2-4" + icon_state = "1-2" }, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 +/obj/machinery/atmospherics/pipe/manifold{ + dir = 4 }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/multitool, -/obj/effect/turf_decal/stripes/line{ - dir = 9 +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"eA" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/awaymission/moonoutpost19/research) +"eB" = ( +/obj/structure/alien/weeds/node, +/turf/open/floor/engine, +/area/awaymission/moonoutpost19/research) +"eF" = ( +/obj/structure/alien/weeds, +/obj/structure/bed/nest, +/turf/open/floor/engine, +/area/awaymission/moonoutpost19/research) +"eG" = ( +/obj/structure/cable, +/obj/machinery/power/port_gen/pacman{ + name = "P.A.C.M.A.N.-type portable generator" }, +/obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/awaymission/moonoutpost19/syndicate) -"bS" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/computer/monitor/secret, -/obj/effect/turf_decal/stripes/line{ - dir = 5 +"eH" = ( +/obj/structure/alien/weeds, +/obj/structure/alien/egg/burst, +/turf/open/floor/engine, +/area/awaymission/moonoutpost19/research) +"eI" = ( +/turf/closed/wall, +/area/awaymission/moonoutpost19/research) +"eJ" = ( +/turf/closed/wall/rust, +/area/awaymission/moonoutpost19/research) +"eN" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/syndicate) -"bT" = ( -/obj/machinery/power/smes{ - input_level = 10000; - inputting = 0; - output_level = 15000 +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/chair/office/light{ + dir = 4 }, +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"eQ" = ( +/obj/structure/alien/weeds, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/engine, +/area/awaymission/moonoutpost19/research) +"fk" = ( +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"fl" = ( /obj/structure/cable{ - icon_state = "0-8" + icon_state = "1-2" }, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/syndicate) -"bU" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/airalarm/directional/north{ - pixel_y = 23; - req_access = null; - req_access_txt = "150" +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"fp" = ( +/obj/structure/alien/weeds, +/obj/structure/bed/nest, +/obj/item/clothing/mask/facehugger/impregnated, +/turf/open/floor/engine, +/area/awaymission/moonoutpost19/research) +"fB" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 +/obj/structure/alien/weeds/node, +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"fC" = ( +/obj/structure/cable{ + icon_state = "1-8" }, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/syndicate) -"bV" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/stripes/line{ +/obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 5 }, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/syndicate) -"bW" = ( -/obj/structure/alien/weeds/node, -/mob/living/simple_animal/hostile/alien, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"fF" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + desc = "A one meter section of pipe. This one has been applied with an acid-proof coating."; + dir = 4; + name = "Acid-Proof Pipe" }, -/area/awaymission/moonoutpost19/hive) -"bX" = ( -/obj/machinery/conveyor{ - id = "awaysyndie" +/obj/structure/alien/weeds, +/turf/open/floor/engine, +/area/awaymission/moonoutpost19/research) +"fG" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + desc = "A one meter section of pipe. This one has been applied with an acid-proof coating."; + dir = 4; + name = "Acid-Proof Pipe" }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 +/obj/structure/alien/weeds, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/engine, +/area/awaymission/moonoutpost19/research) +"fH" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + desc = "A one meter section of pipe. This one has been applied with an acid-proof coating."; + dir = 4; + name = "Acid-Proof Pipe" }, -/turf/open/floor/plating{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/obj/structure/alien/weeds, +/obj/structure/alien/resin/wall, +/turf/open/floor/engine, +/area/awaymission/moonoutpost19/research) +"fJ" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + desc = "Has a valve and pump attached to it. This one has been applied with an acid-proof coating."; + dir = 8; + name = "Acid-Proof Air Injector" }, -/area/awaymission/moonoutpost19/syndicate) -"bY" = ( -/obj/machinery/mineral/unloading_machine{ - dir = 1; - icon_state = "unloader-corner"; - input_dir = 4; - output_dir = 8 +/obj/structure/alien/weeds, +/turf/open/floor/engine, +/area/awaymission/moonoutpost19/research) +"fK" = ( +/obj/machinery/light/broken{ + dir = 4 }, /obj/structure/alien/weeds, -/turf/open/floor/plating{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" +/obj/machinery/camera/directional/east{ + c_tag = "Xenobiology Containment East"; + network = list("mo19x") }, -/area/awaymission/moonoutpost19/syndicate) -"bZ" = ( -/obj/structure/sign/poster/contraband/syndicate_recruitment{ - pixel_y = 32 +/turf/open/floor/engine, +/area/awaymission/moonoutpost19/research) +"fS" = ( +/obj/structure/rack, +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/effect/turf_decal/loading_area{ +/obj/item/circuitboard/computer/teleporter, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"fT" = ( +/obj/machinery/door/firedoor/closed{ + opacity = 0 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"fU" = ( +/obj/structure/chair/fancy/comfy{ + color = "#666666"; dir = 8 }, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"gc" = ( /obj/structure/alien/weeds, -/turf/open/floor/iron{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/obj/effect/decal/cleanable/blood, +/obj/item/stack/rods, +/obj/item/shard{ + icon_state = "small" }, -/area/awaymission/moonoutpost19/syndicate) -"ca" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/turf/open/floor/engine, +/area/awaymission/moonoutpost19/research) +"gr" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/area/awaymission/moonoutpost19/syndicate) -"cd" = ( -/obj/machinery/airalarm/unlocked{ - pixel_y = 23; - req_access = null; - req_access_txt = "150"; - dir = 1 +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"gu" = ( +/obj/structure/disposalpipe/segment{ + desc = "An underfloor disposal pipe. This one has been applied with an acid-proof coating."; + dir = 4; + name = "Acid-Proof disposal pipe" }, -/turf/open/floor/iron{ - dir = 8; - icon_state = "floorscorched2"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/obj/structure/alien/weeds, +/obj/structure/alien/resin/wall, +/turf/open/floor/engine, +/area/awaymission/moonoutpost19/research) +"gv" = ( +/obj/structure/disposalpipe/segment{ + desc = "An underfloor disposal pipe. This one has been applied with an acid-proof coating."; + dir = 10; + name = "Acid-Proof disposal pipe" }, -/area/awaymission/moonoutpost19/syndicate) -"ce" = ( -/obj/structure/sign/warning/biohazard{ - pixel_y = 32 +/obj/structure/alien/weeds, +/turf/open/floor/engine, +/area/awaymission/moonoutpost19/research) +"gB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/alien/weeds, +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/obj/structure/alien/weeds/node, -/obj/effect/turf_decal/stripes/corner{ +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/research) +"gH" = ( +/obj/structure/table, +/obj/item/retractor, +/obj/item/hemostat, +/obj/structure/alien/weeds, +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"gI" = ( +/obj/structure/table, +/obj/item/surgical_drapes, +/obj/machinery/light/small/broken{ dir = 4 }, -/turf/open/floor/iron{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/obj/structure/alien/weeds, +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"gJ" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/machinery/light/small/broken{ + dir = 8 }, -/area/awaymission/moonoutpost19/syndicate) -"cf" = ( -/obj/structure/cable{ - icon_state = "1-2" +/obj/item/paper/fluff/awaymissions/moonoutpost19/research/larva_social, +/obj/item/paper/fluff/awaymissions/moonoutpost19/research/xeno_queen, +/obj/item/paper/fluff/awaymissions/moonoutpost19/research/xeno_adult, +/obj/item/paper/fluff/awaymissions/moonoutpost19/research/larva_psych, +/obj/item/paper/fluff/awaymissions/moonoutpost19/research/facehugger, +/obj/structure/alien/weeds, +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"gM" = ( +/obj/structure/disposalpipe/segment{ + desc = "An underfloor disposal pipe. This one has been applied with an acid-proof coating."; + name = "Acid-Proof disposal pipe" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ +/obj/structure/alien/weeds, +/turf/open/floor/engine, +/area/awaymission/moonoutpost19/research) +"gO" = ( +/obj/structure/alien/weeds, +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs, +/obj/item/clothing/mask/facehugger/impregnated, +/obj/item/clothing/under/rank/security/officer, +/obj/item/clothing/suit/armor/vest, +/obj/item/melee/baton/loaded, +/obj/item/clothing/head/helmet, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" + }, +/area/awaymission/moonoutpost19/hive) +"gQ" = ( +/obj/machinery/washing_machine, +/obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, -/turf/open/floor/iron{ +/turf/open/floor/iron/cafeteria{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, -/area/awaymission/moonoutpost19/syndicate) -"cg" = ( -/obj/structure/sign/warning/securearea{ - pixel_y = 32 +/area/awaymission/moonoutpost19/arrivals) +"gW" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/paper/fluff/awaymissions/moonoutpost19/research/xeno_hivemind, +/obj/item/paper/fluff/awaymissions/moonoutpost19/research/xeno_behavior, +/obj/item/paper/fluff/awaymissions/moonoutpost19/research/xeno_castes, +/obj/item/paper/fluff/awaymissions/moonoutpost19/research/larva_autopsy, +/obj/structure/alien/weeds, +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"gX" = ( +/obj/structure/alien/weeds, +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"ha" = ( +/obj/structure/disposaloutlet{ + desc = "An outlet for the pneumatic disposal system. This one has been applied with an acid-proof coating."; + dir = 1; + name = "Acid-Proof disposal outlet" }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 +/obj/structure/disposalpipe/trunk{ + desc = "An underfloor disposal pipe. This one has been applied with an acid-proof coating."; + dir = 1; + name = "Acid-Proof disposal pipe" }, -/turf/open/floor/iron{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/obj/structure/alien/weeds, +/turf/open/floor/engine, +/area/awaymission/moonoutpost19/research) +"hb" = ( +/obj/machinery/light/broken, +/obj/structure/alien/weeds, +/obj/machinery/camera/directional/south{ + c_tag = "Xenobiology Containment South"; + network = list("mo19x") }, -/area/awaymission/moonoutpost19/syndicate) -"ci" = ( -/obj/structure/cable{ - icon_state = "1-2" +/turf/open/floor/engine, +/area/awaymission/moonoutpost19/research) +"hc" = ( +/obj/machinery/sparker{ + desc = "A wall-mounted ignition device. This one has been applied with an acid-proof coating."; + id = "awayxenobio"; + name = "Acid-Proof mounted igniter"; + pixel_y = -25 }, -/obj/structure/table, -/obj/machinery/cell_charger, +/obj/structure/alien/weeds, +/obj/structure/alien/resin/wall, +/turf/open/floor/engine, +/area/awaymission/moonoutpost19/research) +"hh" = ( /obj/machinery/light/small{ - dir = 8 + dir = 4 }, -/obj/item/stock_parts/cell/high, -/obj/item/paper/fluff/awaymissions/moonoutpost19/engineering, -/obj/effect/turf_decal/stripes/line{ - dir = 8 +/obj/structure/chair/wood/normal, +/obj/machinery/airalarm/unlocked{ + dir = 4; + pixel_x = 23; + req_access = null }, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/syndicate) -"ck" = ( -/obj/machinery/power/terminal{ - dir = 1 +/turf/open/floor/carpet, +/area/awaymission/moonoutpost19/arrivals) +"hq" = ( +/obj/structure/closet/secure_closet{ + icon_state = "rd"; + name = "research director's locker"; + req_access_txt = "201" }, -/obj/structure/cable{ - icon_state = "0-2" +/obj/item/storage/backpack/satchel/tox, +/obj/item/clothing/gloves/color/latex, +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/area/awaymission/moonoutpost19/research) +"hr" = ( +/obj/structure/table, +/obj/item/computer_hardware/hard_drive/role/signal/toxins, +/obj/item/computer_hardware/hard_drive/role/signal/toxins{ + pixel_x = -4; + pixel_y = 2 }, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/syndicate) -"cl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 +/obj/machinery/firealarm{ + pixel_y = 24 }, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/syndicate) -"cm" = ( -/obj/machinery/light/small{ - dir = 4 +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 +/area/awaymission/moonoutpost19/research) +"hs" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/light/small/broken{ + dir = 1 }, -/obj/structure/sign/poster/contraband/hacking_guide{ - pixel_x = 32 +/obj/machinery/airalarm/unlocked{ + pixel_y = 23; + req_access = null; + dir = 1 }, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/syndicate) -"cn" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/syndicate) -"co" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 +/obj/item/paper/fluff/awaymissions/moonoutpost19/log/gerald, +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/turf/open/floor/iron{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/area/awaymission/moonoutpost19/research) +"ht" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/area/awaymission/moonoutpost19/syndicate) -"cp" = ( -/turf/open/floor/iron{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" +/area/awaymission/moonoutpost19/research) +"hB" = ( +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/area/awaymission/moonoutpost19/syndicate) -"cr" = ( +/area/awaymission/moonoutpost19/research) +"hC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/awaymission/moonoutpost19/research) +"hD" = ( +/obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/public/glass{ +/obj/machinery/door/airlock/command{ density = 0; icon_state = "open"; - name = "Dormitories"; + name = "Research Director's Office"; + opacity = 0; + req_access_txt = "201"; set_obj_flags = "EMAGGED" }, -/obj/item/stack/rods, -/obj/item/shard{ - icon_state = "small" - }, -/turf/open/floor/iron{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/area/awaymission/moonoutpost19/syndicate) -"ct" = ( -/obj/structure/cable{ - icon_state = "2-4" +/area/awaymission/moonoutpost19/research) +"hI" = ( +/turf/closed/wall/rust, +/area/awaymission/moonoutpost19/arrivals) +"hJ" = ( +/turf/closed/wall, +/area/awaymission/moonoutpost19/arrivals) +"hM" = ( +/obj/structure/chair, +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/obj/structure/cable{ - icon_state = "1-2" +/area/awaymission/moonoutpost19/research) +"hX" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor/iron{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" +/obj/structure/window/reinforced{ + dir = 8 }, -/area/awaymission/moonoutpost19/syndicate) -"cu" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/item/folder/white, +/obj/item/stamp/research_director{ + pixel_x = 3; + pixel_y = -2 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/area/awaymission/moonoutpost19/syndicate) -"cw" = ( -/obj/structure/cable{ - icon_state = "4-8" +/area/awaymission/moonoutpost19/research) +"hY" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 }, -/obj/machinery/door/airlock/engineering{ - name = "Power Maintenance"; - req_access_txt = "150" +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/syndicate) -"cx" = ( -/obj/structure/cable{ - icon_state = "1-8" +/area/awaymission/moonoutpost19/research) +"hZ" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/syndicate) -"cy" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/syndicate) -"cz" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-8" +/obj/machinery/computer/security/telescreen{ + desc = "Used for monitoring the research division and the labs within."; + name = "research monitor"; + network = list("mo19x","mo19r") }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/syndicate) -"cB" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/syndicate) -"cC" = ( -/obj/machinery/mineral/processing_unit{ +/area/awaymission/moonoutpost19/research) +"ia" = ( +/obj/machinery/computer/aifixer, +/obj/structure/window/reinforced{ dir = 1 }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 - }, -/area/awaymission/moonoutpost19/syndicate) -"cD" = ( -/obj/machinery/mineral/processing_unit_console{ - machinedir = 8 +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/turf/closed/wall, -/area/awaymission/moonoutpost19/syndicate) -"cE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ +/area/awaymission/moonoutpost19/research) +"ip" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/iron{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/obj/machinery/button/door{ + id = "Awaybiohazard"; + name = "Biohazard Shutter Control"; + pixel_y = 8; + req_access_txt = "201" }, -/area/awaymission/moonoutpost19/syndicate) -"cG" = ( -/obj/structure/grille/broken, -/obj/item/stack/rods, -/obj/item/stack/rods, -/obj/item/shard, -/obj/structure/alien/weeds, -/turf/open/floor/plating{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" +/obj/machinery/button/door{ + id = "AwayRD"; + name = "Privacy Shutter Control"; + pixel_y = -2; + req_access_txt = "201" }, -/area/awaymission/moonoutpost19/syndicate) -"cM" = ( -/obj/item/storage/box/lights/mixed, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/syndicate) -"cN" = ( -/obj/structure/cable, -/obj/machinery/power/port_gen/pacman{ - name = "P.A.C.M.A.N.-type portable generator" +/area/awaymission/moonoutpost19/research) +"iq" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/syndicate) -"cO" = ( +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/awaymission/moonoutpost19/research) +"iC" = ( /obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/port_gen/pacman/super{ - name = "S.U.P.E.R.P.A.C.M.A.N.-type portable generator" +/obj/machinery/power/apc/highcap/fifteen_k{ + dir = 4; + locked = 0; + name = "Worn-out APC"; + pixel_x = 24; + req_access = null; + start_charge = 100 }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"iD" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/syndicate) -"cP" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/stripes/line{ - dir = 6 +"iH" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 }, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/syndicate) -"cQ" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "awaysyndie"; - name = "mining conveyor" +/obj/machinery/light/small/broken, +/obj/machinery/camera/directional/south{ + c_tag = "Research Director's Office"; + network = list("mo19","mo19r") }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/turf/open/floor/iron{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/area/awaymission/moonoutpost19/research) +"iI" = ( +/obj/machinery/newscaster{ + pixel_y = -30 }, -/area/awaymission/moonoutpost19/syndicate) -"cR" = ( -/turf/open/floor/iron{ - dir = 8; - icon_state = "damaged4"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/area/awaymission/moonoutpost19/syndicate) -"cT" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock{ - density = 0; - icon_state = "open"; - id_tag = "awaydorm4"; - name = "Dorm 1"; - opacity = 0; - set_obj_flags = "EMAGGED" +/area/awaymission/moonoutpost19/research) +"iJ" = ( +/obj/structure/table, +/obj/item/radio/off, +/obj/item/laser_pointer, +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" +/area/awaymission/moonoutpost19/research) +"iR" = ( +/obj/machinery/light/small{ + dir = 4 }, -/area/awaymission/moonoutpost19/syndicate) -"cU" = ( -/obj/machinery/door/airlock{ - id_tag = "awaydorm5"; - name = "Dorm 2" +/obj/machinery/airalarm/unlocked{ + dir = 4; + pixel_x = 23; + req_access = null }, -/turf/open/floor/wood, -/area/awaymission/moonoutpost19/syndicate) -"cV" = ( -/obj/structure/alien/weeds/node, -/obj/effect/turf_decal/stripes/line{ - dir = 8 +/turf/open/floor/carpet, +/area/awaymission/moonoutpost19/arrivals) +"iT" = ( +/obj/machinery/computer/security/telescreen/entertainment, +/turf/closed/wall/rust, +/area/awaymission/moonoutpost19/arrivals) +"iU" = ( +/obj/machinery/vending/boozeomat, +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/turf/open/floor/iron{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/area/awaymission/moonoutpost19/arrivals) +"iX" = ( +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/area/awaymission/moonoutpost19/syndicate) -"cW" = ( -/turf/open/floor/iron{ - dir = 8; - icon_state = "damaged2"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/area/awaymission/moonoutpost19/arrivals) +"iY" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/area/awaymission/moonoutpost19/syndicate) -"cX" = ( -/turf/open/floor/iron{ - dir = 8; - icon_state = "damaged3"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/area/awaymission/moonoutpost19/arrivals) +"jf" = ( +/obj/machinery/vending/cola, +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/arrivals) +"jg" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/arrivals) +"jj" = ( +/obj/machinery/door/airlock/external, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 }, -/area/awaymission/moonoutpost19/syndicate) -"cY" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/iron{ - amount = 12 +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/arrivals) +"jk" = ( +/obj/structure/cable{ + icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, -/obj/structure/alien/weeds, -/obj/effect/turf_decal/bot{ - dir = 1 - }, /turf/open/floor/iron{ - dir = 1; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) -"cZ" = ( -/obj/machinery/button/door{ - id = "awaydorm4"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_y = 25; - specialfunctions = 4 +"jn" = ( +/obj/effect/decal/cleanable/food/flour, +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/obj/structure/bed, -/obj/item/bedsheet/syndie, -/turf/open/floor/wood{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" +/area/awaymission/moonoutpost19/arrivals) +"jo" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/area/awaymission/moonoutpost19/syndicate) -"da" = ( +/obj/structure/table, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/syndicate) -"db" = ( -/turf/open/floor/wood, -/area/awaymission/moonoutpost19/syndicate) -"dc" = ( -/obj/machinery/button/door{ - id = "awaydorm5"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_y = 25; - specialfunctions = 4 +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/obj/structure/dresser, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/awaymission/moonoutpost19/syndicate) -"dd" = ( -/obj/structure/alien/weeds/node, -/mob/living/simple_animal/hostile/alien/drone{ - plants_off = 1 +/area/awaymission/moonoutpost19/arrivals) +"jP" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/barman_recipes{ + pixel_y = 5 }, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" +/obj/item/reagent_containers/food/drinks/shaker, +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/area/awaymission/moonoutpost19/hive) -"de" = ( -/obj/machinery/mineral/stacking_machine{ - dir = 1; - input_dir = 1; - output_dir = 2 +/area/awaymission/moonoutpost19/arrivals) +"jQ" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/turf/open/floor/plating{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/area/awaymission/moonoutpost19/arrivals) +"jR" = ( +/obj/machinery/vending/dinnerware, +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/area/awaymission/moonoutpost19/syndicate) -"df" = ( -/obj/machinery/mineral/stacking_unit_console{ - machinedir = 8 +/area/awaymission/moonoutpost19/arrivals) +"kh" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 }, -/turf/closed/wall, -/area/awaymission/moonoutpost19/syndicate) -"dg" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/glass{ - amount = 10 +/turf/open/floor/iron{ + dir = 8; + icon_state = "floorscorched2" }, -/obj/structure/alien/weeds, -/obj/effect/turf_decal/bot{ - dir = 1 +/area/awaymission/moonoutpost19/arrivals) +"ko" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/turf/open/floor/iron{ - dir = 1; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/area/awaymission/moonoutpost19/arrivals) +"kp" = ( +/obj/structure/table, +/obj/item/kitchen/rollingpin, +/obj/item/knife/kitchen, +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/area/awaymission/moonoutpost19/syndicate) -"dh" = ( -/obj/structure/chair/wood/normal, -/obj/machinery/airalarm/directional/west{ - pixel_x = -23; - req_access = null; - req_access_txt = "150" +/area/awaymission/moonoutpost19/arrivals) +"kq" = ( +/obj/structure/table, +/obj/item/book/manual/chef_recipes{ + pixel_x = 2; + pixel_y = 6 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/syndicate) -"di" = ( -/obj/machinery/light/small{ - dir = 4 +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/turf/open/floor/wood{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" +/area/awaymission/moonoutpost19/arrivals) +"kr" = ( +/obj/effect/decal/cleanable/food/egg_smudge, +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/area/awaymission/moonoutpost19/syndicate) -"dj" = ( -/obj/machinery/light/small{ - dir = 8 +/area/awaymission/moonoutpost19/arrivals) +"ks" = ( +/obj/machinery/light{ + dir = 4 }, -/turf/open/floor/wood, -/area/awaymission/moonoutpost19/syndicate) -"dk" = ( -/obj/machinery/airalarm/directional/east{ +/obj/machinery/processor, +/obj/machinery/airalarm/unlocked{ + dir = 4; pixel_x = 23; - req_access = null; - req_access_txt = "150" + req_access = null }, -/turf/open/floor/wood, -/area/awaymission/moonoutpost19/syndicate) -"dl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/loading_area, -/obj/structure/alien/weeds, -/turf/open/floor/iron{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/area/awaymission/moonoutpost19/syndicate) -"dm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/area/awaymission/moonoutpost19/arrivals) +"kL" = ( +/obj/structure/noticeboard{ + pixel_y = 32 }, +/obj/item/paper/fluff/awaymissions/moonoutpost19/food_specials, /turf/open/floor/iron{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 + dir = 8; + icon_state = "floorscorched1" }, -/area/awaymission/moonoutpost19/syndicate) -"dn" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 +/area/awaymission/moonoutpost19/arrivals) +"kQ" = ( +/obj/structure/closet/emcloset, +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor/iron{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 }, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/syndicate) -"do" = ( -/turf/open/floor/iron{ - dir = 8; - icon_state = "damaged1"; +"kX" = ( +/turf/open/floor/plating{ + icon_plating = "asteroidplating"; + icon_state = "asteroidplating"; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, -/area/awaymission/moonoutpost19/syndicate) -"dq" = ( -/obj/structure/table/wood, -/obj/item/pen, -/obj/item/paper/fluff/awaymissions/moonoutpost19/log/personal_2, -/obj/structure/sign/poster/contraband/c20r{ - pixel_y = -32 - }, -/turf/open/floor/wood{ +/area/awaymission/moonoutpost19/main) +"kZ" = ( +/obj/structure/alien/weeds/node, +/obj/structure/alien/resin/wall, +/turf/open/floor/plating/asteroid{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/area/awaymission/moonoutpost19/syndicate) -"dr" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access_txt = "150" - }, -/obj/item/ammo_box/magazine/m10mm{ - icon_state = "9x19p-8" +/area/awaymission/moonoutpost19/hive) +"lb" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 }, -/obj/item/ammo_box/magazine/m10mm{ - icon_state = "9x19p-8" +/obj/machinery/camera/directional/east{ + c_tag = "Kitchen"; + network = list("mo19") }, -/obj/item/suppressor, -/turf/open/floor/wood{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/area/awaymission/moonoutpost19/syndicate) -"ds" = ( -/obj/structure/bed, -/obj/item/bedsheet/syndie, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/awaymission/moonoutpost19/syndicate) -"dt" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - locked = 0; - req_access_txt = "150" +/area/awaymission/moonoutpost19/arrivals) +"lc" = ( +/turf/closed/wall/mineral/titanium/interior, +/area/awaymission/moonoutpost19/arrivals) +"ld" = ( +/turf/closed/wall/mineral/titanium, +/area/awaymission/moonoutpost19/arrivals) +"le" = ( +/obj/machinery/space_heater, +/obj/machinery/light/small{ + dir = 1 }, -/obj/item/stack/spacecash/c50, -/turf/open/floor/wood, -/area/awaymission/moonoutpost19/syndicate) -"du" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/external{ - density = 0; - icon_state = "open"; - opacity = 0; - req_access_txt = "150"; - set_obj_flags = "EMAGGED" +/obj/structure/sign/poster/official/build{ + pixel_y = 32 }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/research) +"lr" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/plating{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" + broken = 1 }, -/area/awaymission/moonoutpost19/syndicate) -"dv" = ( -/obj/item/stack/ore/iron, -/obj/item/stack/ore/iron{ - pixel_x = -7; - pixel_y = -4 - }, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/main) -"dw" = ( -/obj/structure/tank_dispenser/oxygen{ - oxygentanks = 9 - }, -/obj/machinery/light/small/broken{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/area/awaymission/moonoutpost19/arrivals) +"lt" = ( +/obj/machinery/button/door{ + id = "awaykitchen"; + name = "Kitchen Shutters Control"; + pixel_x = -25 }, -/area/awaymission/moonoutpost19/syndicate) -"dx" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/syndicate) -"dy" = ( -/obj/structure/rack, -/obj/item/clothing/suit/space/syndicate/orange, -/obj/item/clothing/mask/gas, -/obj/item/pickaxe/drill, -/obj/item/clothing/head/helmet/space/syndicate/orange, -/obj/effect/turf_decal/stripes/line{ +/turf/open/floor/iron/cafeteria{ dir = 5 }, -/turf/open/floor/plating{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 - }, -/area/awaymission/moonoutpost19/syndicate) -"dz" = ( -/obj/item/stack/ore/iron{ - pixel_x = -3; - pixel_y = 9 - }, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/main) -"dA" = ( -/turf/closed/mineral, -/area/awaymission/moonoutpost19/main) -"dB" = ( -/obj/structure/sign/warning/vacuum{ - desc = "A warning sign which reads 'HOSTILE ATMOSPHERE AHEAD'"; - name = "\improper HOSTILE ATMOSPHERE AHEAD"; - pixel_y = -32 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/stripes/line{ - dir = 10 +/area/awaymission/moonoutpost19/arrivals) +"lz" = ( +/obj/machinery/power/smes{ + input_level = 10000; + inputting = 0; + output_level = 15000 }, -/turf/open/floor/plating{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/obj/structure/cable{ + icon_state = "0-8" }, +/turf/open/floor/plating, /area/awaymission/moonoutpost19/syndicate) -"dD" = ( -/obj/structure/rack, +"lA" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/arrivals) +"lB" = ( +/obj/structure/chair, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"lD" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 }, /turf/open/floor/plating{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, -/area/awaymission/moonoutpost19/syndicate) -"dE" = ( -/obj/effect/decal/cleanable/blood/tracks{ - desc = "Your instincts say you shouldn't be following these."; - dir = 8; - icon_state = "ltrails_1" - }, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/main) -"dF" = ( -/obj/effect/decal/cleanable/blood/tracks{ - desc = "Your instincts say you shouldn't be following these."; - dir = 8; - icon_state = "ltrails_2" - }, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/main) -"dG" = ( -/obj/effect/decal/cleanable/blood/tracks{ - desc = "Your instincts say you shouldn't be following these."; - dir = 8; - icon_state = "ltrails_1" - }, -/obj/item/mining_scanner, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/main) -"dH" = ( -/obj/item/flashlight/lantern{ - icon_state = "lantern-on" +/area/awaymission/moonoutpost19/arrivals) +"lQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Kitchen"; + req_access_txt = "201" }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/arrivals) +"lR" = ( +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/arrivals) +"lS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/arrivals) +"lT" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/hooded/chaplain_hoodie, +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/arrivals) +"lW" = ( +/obj/structure/table, +/obj/item/storage/lockbox, +/turf/open/floor/mineral/titanium/blue, +/area/awaymission/moonoutpost19/arrivals) +"lX" = ( +/obj/structure/table, +/obj/item/radio/off, +/turf/open/floor/mineral/titanium/yellow, +/area/awaymission/moonoutpost19/arrivals) +"lZ" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -32 }, -/area/awaymission/moonoutpost19/main) -"dI" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/external{ - density = 0; - icon_state = "open"; - opacity = 0; - req_access_txt = "150"; - set_obj_flags = "EMAGGED" +/turf/open/floor/mineral/titanium/yellow, +/area/awaymission/moonoutpost19/arrivals) +"ma" = ( +/obj/structure/chair{ + dir = 8 }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ +/obj/machinery/light/small{ dir = 1 }, -/turf/open/floor/plating{ - icon_plating = "asteroidplating"; - icon_state = "asteroidplating"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 - }, -/area/awaymission/moonoutpost19/syndicate) -"dJ" = ( -/obj/item/storage/bag/ore, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" +/turf/open/floor/mineral/titanium/blue, +/area/awaymission/moonoutpost19/arrivals) +"mb" = ( +/turf/open/floor/mineral/titanium/blue, +/area/awaymission/moonoutpost19/arrivals) +"mc" = ( +/obj/structure/chair{ + dir = 8 }, -/area/awaymission/moonoutpost19/main) -"dK" = ( -/obj/item/pickaxe/drill, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" +/turf/open/floor/mineral/titanium/blue, +/area/awaymission/moonoutpost19/arrivals) +"md" = ( +/obj/machinery/newscaster{ + pixel_y = 30 }, -/area/awaymission/moonoutpost19/main) -"dL" = ( /obj/machinery/light/small{ dir = 1 }, -/turf/open/floor/plating{ - icon_plating = "asteroidplating"; - icon_state = "asteroidplating"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 - }, -/area/awaymission/moonoutpost19/syndicate) -"dM" = ( -/turf/open/floor/plating{ - icon_plating = "asteroidplating"; - icon_state = "asteroidplating"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 - }, -/area/awaymission/moonoutpost19/main) -"dN" = ( -/obj/item/stack/ore/iron{ - pixel_x = -7; - pixel_y = -4 - }, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/main) -"dO" = ( -/obj/structure/alien/weeds, -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs, -/obj/item/tank/internals/oxygen, -/obj/item/clothing/suit/space/syndicate/orange, -/obj/item/clothing/mask/gas, -/obj/item/clothing/head/helmet/space/syndicate/orange, -/obj/item/clothing/mask/facehugger/impregnated, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/hive) -"dP" = ( -/obj/structure/alien/weeds, -/obj/structure/alien/resin/wall, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/main) -"dQ" = ( -/obj/structure/alien/weeds/node, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/main) -"dS" = ( -/obj/structure/alien/weeds, -/obj/effect/decal/cleanable/blood, -/mob/living/simple_animal/hostile/alien/drone{ - plants_off = 1 - }, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/hive) -"dT" = ( -/obj/structure/alien/weeds, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/main) -"dV" = ( -/obj/structure/alien/weeds/node, -/obj/structure/alien/resin/wall, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/main) -"dY" = ( -/obj/machinery/light/small, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/research) -"dZ" = ( -/turf/closed/wall/r_wall/rust, -/area/awaymission/moonoutpost19/research) -"ea" = ( -/turf/closed/wall/r_wall, -/area/awaymission/moonoutpost19/research) -"eb" = ( -/obj/machinery/door/poddoor/preopen{ - desc = "A heavy duty blast door that opens mechanically. This one has been applied with an acid-proof coating."; - id = "Awaybiohazard"; - name = "Acid-Proof Biohazard Containment" - }, -/obj/machinery/door/poddoor{ - desc = "A heavy duty blast door that opens mechanically. This one has been applied with an acid-proof coating."; - id = "Awaybiohazard"; - name = "Acid-Proof Biohazard Containment" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/research) -"ec" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall/r_wall, -/area/awaymission/moonoutpost19/research) -"ed" = ( -/obj/machinery/vending/snack, +/turf/open/floor/mineral/titanium/blue, +/area/awaymission/moonoutpost19/arrivals) +"me" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/mineral/titanium/blue, +/area/awaymission/moonoutpost19/arrivals) +"ml" = ( +/obj/structure/table, +/obj/item/storage/backpack/satchel/leather/withwallet, /turf/open/floor/iron/dark, -/area/awaymission/moonoutpost19/research) -"ee" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/research) -"ef" = ( +/area/awaymission/moonoutpost19/arrivals) +"mp" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets, +/turf/open/floor/mineral/titanium/blue, +/area/awaymission/moonoutpost19/arrivals) +"mq" = ( /obj/structure/chair{ dir = 1 }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/research) -"eg" = ( -/obj/machinery/atmospherics/components/unary/portables_connector{ +/obj/machinery/light/small{ dir = 4 }, -/obj/machinery/portable_atmospherics/canister, -/obj/structure/alien/weeds, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/research) -"eh" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 +/turf/open/floor/mineral/titanium/yellow, +/area/awaymission/moonoutpost19/arrivals) +"mr" = ( +/turf/open/floor/mineral/titanium/yellow, +/area/awaymission/moonoutpost19/arrivals) +"ms" = ( +/obj/effect/landmark/awaystart, +/turf/open/floor/mineral/titanium/blue, +/area/awaymission/moonoutpost19/arrivals) +"mt" = ( +/obj/structure/chair{ + dir = 8 }, -/turf/open/floor/iron/white/side{ +/obj/effect/landmark/awaystart, +/turf/open/floor/mineral/titanium/blue, +/area/awaymission/moonoutpost19/arrivals) +"mu" = ( +/obj/machinery/light/small{ dir = 4 }, -/area/awaymission/moonoutpost19/research) -"ei" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/structure/alien/weeds, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"ej" = ( -/obj/structure/cable{ - icon_state = "4-8" +/turf/open/floor/mineral/titanium/yellow, +/area/awaymission/moonoutpost19/arrivals) +"mB" = ( +/obj/effect/spawner/randomarcade, +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/arrivals) +"mC" = ( +/obj/machinery/vending/cigarette, +/obj/structure/sign/poster/contraband/smoke{ + pixel_y = -32 }, -/obj/structure/alien/weeds, -/obj/effect/turf_decal/stripes/line{ +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/arrivals) +"mD" = ( +/obj/machinery/light/small{ dir = 8 }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/research) -"ek" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/shieldwallgen{ - locked = 0; - req_access = null - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/research) -"el" = ( -/obj/structure/alien/weeds, -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/engine, -/area/awaymission/moonoutpost19/research) -"em" = ( -/obj/structure/alien/weeds, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/engine, -/area/awaymission/moonoutpost19/research) -"en" = ( -/obj/structure/alien/weeds, -/turf/open/floor/engine, -/area/awaymission/moonoutpost19/research) -"eo" = ( -/obj/machinery/light/broken{ - dir = 1 +/obj/structure/chair/fancy/comfy, +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/arrivals) +"mE" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_x = -6; + pixel_y = 6 }, -/obj/structure/alien/weeds, -/obj/structure/alien/egg/burst, -/obj/machinery/camera/directional/north{ - c_tag = "Xenobiology Containment North"; - network = list("mo19x") +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 6; + pixel_y = 8 }, -/turf/open/floor/engine, -/area/awaymission/moonoutpost19/research) -"ep" = ( -/obj/machinery/sparker{ - desc = "A wall-mounted ignition device. This one has been applied with an acid-proof coating."; - id = "awayxenobio"; - name = "Acid-Proof mounted igniter"; - pixel_y = 25 +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 3 }, -/obj/structure/alien/weeds, -/obj/structure/alien/resin/wall, -/turf/open/floor/engine, -/area/awaymission/moonoutpost19/research) -"eq" = ( -/obj/structure/alien/weeds, -/obj/structure/alien/resin/wall, -/turf/open/floor/engine, -/area/awaymission/moonoutpost19/research) -"er" = ( -/obj/structure/alien/weeds, -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs, -/obj/item/clothing/mask/facehugger/impregnated, -/turf/open/floor/engine, -/area/awaymission/moonoutpost19/research) -"et" = ( -/obj/machinery/vending/coffee, /turf/open/floor/iron/dark, -/area/awaymission/moonoutpost19/research) -"eu" = ( -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/research) -"ev" = ( -/obj/machinery/light/small/broken{ +/area/awaymission/moonoutpost19/arrivals) +"mF" = ( +/obj/structure/chair/fancy/comfy, +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/arrivals) +"mG" = ( +/obj/machinery/computer/shuttle_flight{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/research) -"ex" = ( -/obj/structure/cable{ - icon_state = "1-2" +/turf/open/floor/mineral/titanium/blue, +/area/awaymission/moonoutpost19/arrivals) +"mH" = ( +/obj/machinery/door/airlock/titanium{ + name = "Shuttle Cockpit" }, -/obj/machinery/atmospherics/pipe/manifold{ +/turf/open/floor/mineral/titanium/yellow, +/area/awaymission/moonoutpost19/arrivals) +"mI" = ( +/obj/effect/landmark/awaystart, +/turf/open/floor/mineral/titanium/yellow, +/area/awaymission/moonoutpost19/arrivals) +"mJ" = ( +/obj/structure/sign/warning/vacuum{ + desc = "A beacon used by a teleporter."; + icon = 'icons/obj/device.dmi'; + icon_state = "beacon"; + name = "tracking beacon" + }, +/obj/effect/landmark/awaystart, +/turf/open/floor/mineral/titanium/yellow, +/area/awaymission/moonoutpost19/arrivals) +"mK" = ( +/obj/machinery/door/airlock/titanium{ + name = "Shuttle Airlock" + }, +/turf/open/floor/mineral/titanium/blue, +/area/awaymission/moonoutpost19/arrivals) +"mV" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/pen, +/turf/open/floor/mineral/titanium/blue, +/area/awaymission/moonoutpost19/arrivals) +"mW" = ( +/obj/structure/chair, +/obj/machinery/light/small{ dir = 4 }, +/turf/open/floor/mineral/titanium/yellow, +/area/awaymission/moonoutpost19/arrivals) +"mX" = ( +/obj/machinery/door/airlock/research/glass{ + name = "Research Storage"; + req_access_txt = "201" + }, /turf/open/floor/iron/white, /area/awaymission/moonoutpost19/research) -"ey" = ( -/obj/structure/table/reinforced, -/obj/structure/alien/weeds, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the contents of the xenobiology containment pen."; - dir = 8; - name = "xenobiology monitor"; - network = list("mo19x") +"mY" = ( +/obj/machinery/light/small{ + dir = 4 }, -/obj/effect/turf_decal/stripes/line{ +/obj/structure/window/reinforced, +/turf/open/floor/mineral/titanium/yellow, +/area/awaymission/moonoutpost19/arrivals) +"nf" = ( +/obj/structure/filingcabinet, +/turf/open/floor/mineral/titanium/blue, +/area/awaymission/moonoutpost19/arrivals) +"ng" = ( +/obj/structure/chair{ dir = 8 }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/research) -"ez" = ( -/obj/structure/cable{ - icon_state = "0-2" +/obj/machinery/light/small, +/turf/open/floor/mineral/titanium/blue, +/area/awaymission/moonoutpost19/arrivals) +"nh" = ( +/obj/machinery/newscaster{ + pixel_y = -30 }, -/obj/machinery/door/poddoor/preopen{ - desc = "A heavy duty blast door that opens mechanically. This one has been applied with an acid-proof coating."; - id = "Awaylab"; - name = "Acid-Proof Containment Chamber" +/obj/machinery/light/small, +/turf/open/floor/mineral/titanium/blue, +/area/awaymission/moonoutpost19/arrivals) +"nw" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 }, -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/research) -"eA" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/awaymission/moonoutpost19/research) -"eB" = ( -/obj/structure/alien/weeds/node, -/turf/open/floor/engine, -/area/awaymission/moonoutpost19/research) -"eF" = ( -/obj/structure/alien/weeds, -/obj/structure/bed/nest, -/turf/open/floor/engine, -/area/awaymission/moonoutpost19/research) -"eH" = ( -/obj/structure/alien/weeds, -/obj/structure/alien/egg/burst, -/turf/open/floor/engine, -/area/awaymission/moonoutpost19/research) -"eI" = ( -/turf/closed/wall, -/area/awaymission/moonoutpost19/research) -"eJ" = ( -/turf/closed/wall/rust, -/area/awaymission/moonoutpost19/research) -"eK" = ( -/turf/open/floor/iron/white/side, -/area/awaymission/moonoutpost19/research) -"eL" = ( -/obj/structure/alien/weeds, -/turf/open/floor/iron/white/side, -/area/awaymission/moonoutpost19/research) -"eM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"nE" = ( /obj/machinery/light/small/broken{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Xenobiology"; - network = list("mo19","mo19r") - }, -/turf/open/floor/iron/white/side{ - dir = 6 - }, -/area/awaymission/moonoutpost19/research) -"eN" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/chair/office/light{ dir = 4 }, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"eO" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "Awaylab"; - name = "Containment Chamber Blast Doors"; - pixel_x = 4; - pixel_y = -2; - req_access_txt = "201" +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/obj/machinery/button/ignition{ - id = "awayxenobio"; - pixel_x = 4; - pixel_y = 8 +/area/awaymission/moonoutpost19/syndicate) +"nN" = ( +/obj/machinery/door/airlock{ + name = "Kitchen Cold Room"; + req_access_txt = "201" }, +/turf/open/floor/iron/showroomfloor, +/area/awaymission/moonoutpost19/arrivals) +"on" = ( +/obj/structure/grille/broken, +/obj/item/stack/rods, +/obj/item/stack/rods, +/obj/item/shard, /obj/structure/alien/weeds, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/research) -"eP" = ( -/obj/structure/closet/l3closet, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 +/turf/open/floor/plating{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/turf/open/floor/iron, /area/awaymission/moonoutpost19/syndicate) -"eQ" = ( -/obj/structure/alien/weeds, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/engine, -/area/awaymission/moonoutpost19/research) -"eS" = ( -/obj/machinery/power/port_gen/pacman{ - name = "P.A.C.M.A.N.-type portable generator" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/research) -"eU" = ( -/obj/machinery/space_heater, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/poster/official/build{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/research) -"eV" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/airalarm/unlocked{ - pixel_y = 23; - req_access = null; - dir = 1 - }, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/research) -"eW" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/smes{ - charge = 1.5e+006; - input_level = 10000; - inputting = 0; - output_level = 15000 - }, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/research) -"eX" = ( +"op" = ( /obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/research) -"eY" = ( -/obj/structure/cable{ - icon_state = "4-8" + icon_state = "2-8" }, -/obj/item/newspaper, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/research) -"fa" = ( -/obj/structure/cable{ - icon_state = "4-8" +/turf/open/floor/plating{ + burnt = 1 }, -/obj/effect/decal/cleanable/blood/tracks{ - desc = "Your instincts say you shouldn't be following these."; - dir = 8; - icon_state = "ltrails_1" +/area/awaymission/moonoutpost19/syndicate) +"oq" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"os" = ( +/obj/machinery/shower{ + dir = 8 }, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/research) -"fb" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/item/bikehorn/rubberducky, +/turf/open/floor/iron/freezer, +/area/awaymission/moonoutpost19/arrivals) +"ox" = ( +/turf/open/floor/plating{ + broken = 1 }, -/turf/open/floor/plating, /area/awaymission/moonoutpost19/research) -"fc" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "201" +"oL" = ( +/obj/item/stack/ore/iron, +/obj/item/stack/ore/iron{ + pixel_x = -7; + pixel_y = -4 }, -/obj/effect/decal/cleanable/blood/tracks{ - desc = "Your instincts say you shouldn't be following these."; - dir = 8; - icon_state = "ltrails_1" +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/research) -"fd" = ( -/obj/structure/cable{ - icon_state = "4-8" +/area/awaymission/moonoutpost19/main) +"oM" = ( +/obj/machinery/door/airlock{ + id_tag = "awaydorm1"; + name = "Dorm 1" }, -/obj/effect/decal/cleanable/blood/tracks{ - desc = "Your instincts say you shouldn't be following these."; - dir = 5; - icon_state = "ltrails_1" +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"oN" = ( +/obj/structure/tank_dispenser/oxygen{ + oxygentanks = 9 }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 +/obj/machinery/light/small/broken{ + dir = 1 }, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"fe" = ( -/obj/structure/sign/warning/securearea{ - pixel_x = 32 +/obj/effect/turf_decal/stripes/line{ + dir = 9 }, -/obj/structure/cable{ - icon_state = "2-8" +/turf/open/floor/plating{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/obj/structure/alien/weeds, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"ff" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/obj/structure/alien/weeds, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/research) -"fg" = ( -/obj/structure/table, -/obj/item/stack/sheet/mineral/plasma, -/obj/machinery/light/small/broken{ - dir = 1 +/area/awaymission/moonoutpost19/syndicate) +"oQ" = ( +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/obj/machinery/airalarm/unlocked{ - pixel_y = 23; - req_access = null; +/area/awaymission/moonoutpost19/syndicate) +"oY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ dir = 1 }, -/obj/structure/alien/weeds, +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/syndicate) +"pa" = ( +/obj/structure/chair, +/obj/effect/decal/cleanable/generic, /turf/open/floor/iron, -/area/awaymission/moonoutpost19/research) -"fh" = ( -/obj/machinery/firealarm{ - pixel_y = 24 +/area/awaymission/moonoutpost19/arrivals) +"pb" = ( +/obj/structure/window/reinforced{ + dir = 1 }, /obj/structure/table, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 }, -/obj/item/storage/box/syringes, -/obj/structure/alien/weeds, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/research) -"fi" = ( -/obj/structure/closet/crate/freezer, -/obj/structure/alien/weeds, -/obj/item/clothing/mask/facehugger/impregnated, -/obj/item/xenos_claw, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/research) -"fj" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, +/obj/item/pen, +/obj/item/paper/fluff/awaymissions/moonoutpost19/log/personal, /obj/effect/turf_decal/stripes/line{ - dir = 4 + dir = 6 }, /turf/open/floor/iron, +/area/awaymission/moonoutpost19/syndicate) +"pd" = ( +/obj/structure/chair/office, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/research) -"fk" = ( -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"fl" = ( -/obj/structure/cable{ - icon_state = "1-2" +"pf" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/general/visible, /turf/open/floor/iron/white, /area/awaymission/moonoutpost19/research) -"fm" = ( -/obj/structure/closet/l3closet/scientist, -/obj/structure/window/reinforced, +"pl" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/iron/freezer, +/area/awaymission/moonoutpost19/syndicate) +"pn" = ( +/obj/structure/table, +/obj/item/mmi, +/obj/item/mmi, +/obj/item/mmi, /obj/structure/alien/weeds, /obj/effect/turf_decal/stripes/line{ - dir = 8 + dir = 1 }, -/turf/open/floor/iron, +/turf/open/floor/iron/white, /area/awaymission/moonoutpost19/research) -"fn" = ( -/obj/structure/cable, +"pt" = ( /obj/structure/cable{ - icon_state = "0-2" + icon_state = "2-4" }, -/obj/machinery/door/poddoor/preopen{ - desc = "A heavy duty blast door that opens mechanically. This one has been applied with an acid-proof coating."; - id = "Awaylab"; - name = "Acid-Proof Containment Chamber" +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/multitool, +/obj/effect/turf_decal/stripes/line{ + dir = 9 }, -/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, +/area/awaymission/moonoutpost19/syndicate) +"pu" = ( +/turf/open/floor/iron/freezer, +/area/awaymission/moonoutpost19/arrivals) +"pw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/white, /area/awaymission/moonoutpost19/research) -"fp" = ( -/obj/structure/alien/weeds, -/obj/structure/bed/nest, -/obj/item/clothing/mask/facehugger/impregnated, -/turf/open/floor/engine, -/area/awaymission/moonoutpost19/research) -"fq" = ( +"px" = ( /obj/structure/cable{ - icon_state = "1-4" + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/syndicate) +"pz" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" + }, +/area/awaymission/moonoutpost19/arrivals) +"pD" = ( +/obj/item/storage/box/lights/mixed, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 10 }, /turf/open/floor/plating, +/area/awaymission/moonoutpost19/syndicate) +"pG" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/turf/open/floor/iron/freezer, +/area/awaymission/moonoutpost19/arrivals) +"pJ" = ( +/obj/structure/alien/weeds, +/turf/open/floor/iron/white/side, /area/awaymission/moonoutpost19/research) -"fr" = ( -/obj/structure/cable{ - icon_state = "1-4" +"pK" = ( +/obj/item/radio/off, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/structure/sign/poster/official/safety_report{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 }, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/research) +"pN" = ( /obj/structure/cable{ icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, /turf/open/floor/plating, /area/awaymission/moonoutpost19/research) -"fs" = ( -/obj/structure/cable{ - icon_state = "1-8" +"qk" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 }, /turf/open/floor/plating, -/area/awaymission/moonoutpost19/research) -"fu" = ( -/obj/structure/cable{ - icon_state = "1-2" +/area/awaymission/moonoutpost19/arrivals) +"qm" = ( +/obj/effect/decal/cleanable/blood/tracks{ + desc = "Your instincts say you shouldn't be following these."; + icon_state = "ltrails_1" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, +/area/awaymission/moonoutpost19/arrivals) +"qz" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/awaymission/moonoutpost19/research) -"fv" = ( +"qD" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -26 }, @@ -1822,384 +1594,466 @@ }, /turf/open/floor/iron/white, /area/awaymission/moonoutpost19/research) -"fw" = ( -/obj/structure/cable{ - icon_state = "1-2" +"qH" = ( +/obj/machinery/light/small{ + dir = 1 }, -/obj/structure/cable{ - icon_state = "1-4" +/turf/open/floor/plating{ + icon_plating = "asteroidplating"; + icon_state = "asteroidplating"; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/obj/structure/alien/weeds, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/syndicate) +"qK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/research) -"fx" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, +"qN" = ( /obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/research{ +/obj/machinery/door/airlock/external{ density = 0; icon_state = "open"; - name = "Xenobiology Lab"; opacity = 0; - req_access_txt = "201"; + req_access_txt = "150"; set_obj_flags = "EMAGGED" }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/research) -"fy" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/research) -"fz" = ( -/obj/structure/cable{ - icon_state = "4-8" +/turf/open/floor/plating{ + icon_plating = "asteroidplating"; + icon_state = "asteroidplating"; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/research) -"fA" = ( -/obj/structure/cable{ - icon_state = "4-8" +/area/awaymission/moonoutpost19/syndicate) +"qO" = ( +/obj/structure/grille/broken, +/obj/item/stack/rods, +/obj/item/shard, +/obj/effect/decal/cleanable/blood/tracks{ + desc = "Your instincts say you shouldn't be following these."; + dir = 8; + icon_state = "ltrails_2" }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ +/turf/open/floor/plating{ + broken = 1; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 + }, +/area/awaymission/moonoutpost19/arrivals) +"qU" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/turf/open/floor/iron/white/side{ dir = 4 }, -/turf/open/floor/iron, /area/awaymission/moonoutpost19/research) -"fB" = ( -/obj/structure/cable{ - icon_state = "4-8" +"rb" = ( +/obj/effect/decal/cleanable/blood/tracks{ + desc = "Your instincts say you shouldn't be following these."; + icon_state = "ltrails_1" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 }, -/obj/structure/alien/weeds/node, /turf/open/floor/iron/white, /area/awaymission/moonoutpost19/research) -"fC" = ( +"rf" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/arrivals) +"rh" = ( /obj/structure/cable{ - icon_state = "1-8" + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 +/obj/machinery/door/airlock/engineering{ + name = "Power Maintenance"; + req_access_txt = "150" }, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"fD" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - desc = "A one meter section of pipe. This one has been applied with an acid-proof coating."; - dir = 4; - name = "Acid-Proof Pipe" +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/syndicate) +"rj" = ( +/obj/item/cigbutt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"ro" = ( +/obj/machinery/mineral/unloading_machine{ + dir = 1; + icon_state = "unloader-corner"; + input_dir = 4; + output_dir = 8 }, -/obj/item/stack/rods, -/obj/item/stack/cable_coil{ - amount = 5 +/obj/structure/alien/weeds, +/turf/open/floor/plating{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/obj/item/shard{ - icon_state = "small" +/area/awaymission/moonoutpost19/syndicate) +"rs" = ( +/obj/structure/window/reinforced{ + dir = 8 }, /obj/effect/turf_decal/stripes/line{ - dir = 8 + dir = 10 }, -/turf/open/floor/iron, +/turf/open/floor/iron/white, /area/awaymission/moonoutpost19/research) -"fE" = ( -/obj/machinery/door/poddoor/preopen{ - desc = "A heavy duty blast door that opens mechanically. This one has been applied with an acid-proof coating."; - id = "Awaylab"; - name = "Acid-Proof Containment Chamber" +"ru" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - desc = "A one meter section of pipe. This one has been applied with an acid-proof coating."; - dir = 4; - name = "Acid-Proof Pipe" +/turf/open/floor/iron/white/corner{ + dir = 1 }, -/obj/item/stack/rods, -/obj/item/stack/cable_coil{ - amount = 5 +/area/awaymission/moonoutpost19/arrivals) +"rv" = ( +/obj/structure/closet/emcloset, +/obj/structure/window, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/arrivals) +"rw" = ( +/obj/structure/table/wood, +/obj/item/pen, +/obj/item/paper/fluff/awaymissions/moonoutpost19/log/personal_2, +/obj/structure/sign/poster/contraband/c20r{ + pixel_y = -32 }, -/obj/item/shard{ - icon_state = "medium" +/turf/open/floor/wood{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/obj/structure/cable{ - icon_state = "1-2" +/area/awaymission/moonoutpost19/syndicate) +"ry" = ( +/obj/structure/table, +/obj/item/stack/sheet/mineral/plasma, +/obj/machinery/light/small/broken{ + dir = 1 }, -/turf/open/floor/engine, -/area/awaymission/moonoutpost19/research) -"fF" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - desc = "A one meter section of pipe. This one has been applied with an acid-proof coating."; - dir = 4; - name = "Acid-Proof Pipe" +/obj/machinery/airalarm/unlocked{ + pixel_y = 23; + req_access = null; + dir = 1 }, /obj/structure/alien/weeds, -/turf/open/floor/engine, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/research) -"fG" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - desc = "A one meter section of pipe. This one has been applied with an acid-proof coating."; - dir = 4; - name = "Acid-Proof Pipe" +"rE" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 }, -/obj/structure/alien/weeds, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/engine, -/area/awaymission/moonoutpost19/research) -"fH" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - desc = "A one meter section of pipe. This one has been applied with an acid-proof coating."; - dir = 4; - name = "Acid-Proof Pipe" +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/syndicate) +"rF" = ( +/obj/machinery/firealarm{ + pixel_y = 24 }, -/obj/structure/alien/weeds, -/obj/structure/alien/resin/wall, -/turf/open/floor/engine, -/area/awaymission/moonoutpost19/research) -"fJ" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - desc = "Has a valve and pump attached to it. This one has been applied with an acid-proof coating."; - dir = 8; - name = "Acid-Proof Air Injector" +/obj/structure/table, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 }, +/obj/item/storage/box/syringes, /obj/structure/alien/weeds, -/turf/open/floor/engine, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/research) -"fK" = ( -/obj/machinery/light/broken{ +"rG" = ( +/obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/obj/structure/alien/weeds, -/obj/machinery/camera/directional/east{ - c_tag = "Xenobiology Containment East"; - network = list("mo19x") +/turf/open/floor/iron{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/turf/open/floor/engine, -/area/awaymission/moonoutpost19/research) -"fL" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/research) -"fM" = ( -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/research) -"fN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/research) -"fO" = ( -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/research) -"fP" = ( -/obj/structure/cable{ - icon_state = "1-4" +/area/awaymission/moonoutpost19/arrivals) +"rI" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" }, -/obj/structure/cable{ - icon_state = "1-2" +/turf/open/floor/iron/freezer, +/area/awaymission/moonoutpost19/arrivals) +"rN" = ( +/obj/machinery/door/airlock{ + name = "Private Restroom" }, -/turf/open/floor/plating, +/turf/open/floor/iron/freezer, /area/awaymission/moonoutpost19/research) -"fQ" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable{ - icon_state = "4-8" - }, +"rQ" = ( +/obj/machinery/portable_atmospherics/canister/air, /turf/open/floor/plating, /area/awaymission/moonoutpost19/research) -"fR" = ( -/obj/structure/cable{ - icon_state = "1-2" +"rU" = ( +/obj/machinery/power/port_gen/pacman{ + name = "P.A.C.M.A.N.-type portable generator" }, /obj/structure/cable{ - icon_state = "2-8" + icon_state = "0-2" }, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/research) -"fV" = ( -/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/awaymission/moonoutpost19/research) -"fW" = ( +"sc" = ( +/obj/structure/sign/poster/contraband/syndicate_recruitment{ + pixel_y = 32 + }, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, /obj/structure/alien/weeds, -/obj/effect/turf_decal/tile/purple{ +/turf/open/floor/iron{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 + }, +/area/awaymission/moonoutpost19/syndicate) +"sn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 + }, +/area/awaymission/moonoutpost19/arrivals) +"sB" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 }, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"fX" = ( -/obj/structure/sign/warning/biohazard{ - pixel_x = 32 +/turf/open/floor/iron{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/obj/structure/cable{ - icon_state = "1-2" +/area/awaymission/moonoutpost19/syndicate) +"sK" = ( +/obj/structure/alien/weeds/node, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/obj/structure/alien/weeds, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"fY" = ( -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ +/area/awaymission/moonoutpost19/main) +"sP" = ( +/obj/machinery/power/terminal{ dir = 1 }, -/turf/open/floor/iron/dark, -/area/awaymission/moonoutpost19/syndicate) -"fZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/extinguisher_cabinet{ - pixel_y = -29 +/obj/structure/cable{ + icon_state = "0-2" }, /obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/research) -"ga" = ( -/obj/structure/window/reinforced{ dir = 1 }, -/obj/structure/closet/l3closet/scientist, -/obj/structure/alien/weeds, -/obj/effect/turf_decal/stripes/line{ - dir = 8 +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/syndicate) +"tb" = ( +/obj/structure/closet/secure_closet{ + icon_state = "science"; + locked = 0; + name = "scientist's locker"; + req_access_txt = "201" }, +/obj/item/clothing/suit/toggle/labcoat, /turf/open/floor/iron, /area/awaymission/moonoutpost19/research) -"gb" = ( +"tg" = ( /obj/structure/cable{ - icon_state = "0-2" + icon_state = "4-8" }, -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - desc = "A heavy duty blast door that opens mechanically. This one has been applied with an acid-proof coating."; - id = "Awaylab"; - name = "Acid-Proof Containment Chamber" +/turf/open/floor/iron{ + dir = 8; + icon_state = "floorscorched2"; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/obj/item/stack/cable_coil/cut/red{ - amount = 1 +/area/awaymission/moonoutpost19/arrivals) +"th" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/arrivals) +"tj" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/syndicate) +"tk" = ( +/obj/structure/alien/weeds, +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs, +/obj/item/tank/internals/oxygen, +/obj/item/clothing/suit/space/syndicate/orange, +/obj/item/clothing/mask/gas, +/obj/item/clothing/head/helmet/space/syndicate/orange, +/obj/item/clothing/mask/facehugger/impregnated, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/research) -"gc" = ( -/obj/structure/alien/weeds, -/obj/effect/decal/cleanable/blood, -/obj/item/stack/rods, -/obj/item/shard{ - icon_state = "small" +/area/awaymission/moonoutpost19/hive) +"tn" = ( +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/turf/open/floor/engine, +/area/awaymission/moonoutpost19/main) +"tv" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/research) -"gf" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, +"tx" = ( +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white, /area/awaymission/moonoutpost19/research) -"gh" = ( -/obj/effect/decal/cleanable/oil, +"tA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 + }, +/area/awaymission/moonoutpost19/arrivals) +"tB" = ( /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, +/obj/item/newspaper, /turf/open/floor/plating, /area/awaymission/moonoutpost19/research) -"gk" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Security Post"; - req_access_txt = "201" +"tE" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = 32 }, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"gl" = ( -/obj/effect/decal/cleanable/blood/tracks{ - desc = "Your instincts say you shouldn't be following these."; - icon_state = "ltrails_1" +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 +/obj/effect/turf_decal/stripes/line{ + dir = 9 }, /turf/open/floor/iron/white, /area/awaymission/moonoutpost19/research) -"gm" = ( +"tL" = ( +/obj/machinery/door/window{ + dir = 1; + name = "Gateway Access"; + req_access_txt = "150" + }, /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 28 +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/structure/alien/weeds, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"gn" = ( -/obj/structure/table, -/obj/item/scalpel{ - pixel_y = 12 +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/syndicate) +"tN" = ( +/obj/machinery/light/small, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"tS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 }, -/obj/item/circular_saw, -/obj/item/razor{ - pixel_y = 5 +/turf/open/floor/iron{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/obj/structure/alien/weeds, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/area/awaymission/moonoutpost19/syndicate) +"tW" = ( +/obj/structure/chair/fancy/comfy{ + color = "#666666" }, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"go" = ( -/obj/structure/alien/weeds/node, -/obj/effect/turf_decal/stripes/line{ +/turf/open/floor/plating{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" + }, +/area/awaymission/moonoutpost19/arrivals) +"uf" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ dir = 1 }, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"gp" = ( -/obj/effect/turf_decal/stripes/line{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"uj" = ( +/turf/open/floor/iron{ + dir = 8; + icon_state = "damaged1"; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 + }, +/area/awaymission/moonoutpost19/syndicate) +"un" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/item/cigbutt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"up" = ( +/obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"gq" = ( /obj/structure/table, -/obj/item/mmi, -/obj/item/mmi, -/obj/item/mmi, -/obj/structure/alien/weeds, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/obj/machinery/recharger{ + pixel_y = 4 }, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"gr" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/syndicate) +"uu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating{ + broken = 1 }, -/turf/open/floor/iron/white, /area/awaymission/moonoutpost19/research) -"gs" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - desc = "An underfloor disposal pipe. This one has been applied with an acid-proof coating."; - dir = 4; - name = "Acid-Proof disposal pipe" +"uv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor/closed{ + opacity = 0 }, -/obj/structure/alien/weeds, -/obj/effect/turf_decal/stripes/line{ - dir = 8 +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"uw" = ( +/obj/structure/cable{ + icon_state = "1-8" }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/moonoutpost19/research) -"gt" = ( +/area/awaymission/moonoutpost19/arrivals) +"uA" = ( +/obj/structure/alien/weeds, +/obj/structure/bed/nest, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" + }, +/area/awaymission/moonoutpost19/hive) +"uE" = ( +/obj/structure/alien/weeds, +/mob/living/simple_animal/hostile/alien/sentinel, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" + }, +/area/awaymission/moonoutpost19/hive) +"uL" = ( +/obj/machinery/gateway, /obj/structure/cable{ icon_state = "0-2" }, -/obj/structure/disposalpipe/segment{ - desc = "An underfloor disposal pipe. This one has been applied with an acid-proof coating."; - dir = 4; - name = "Acid-Proof disposal pipe" +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/syndicate) +"uU" = ( +/obj/structure/cable{ + icon_state = "0-2" }, /obj/machinery/door/poddoor/preopen{ desc = "A heavy duty blast door that opens mechanically. This one has been applied with an acid-proof coating."; @@ -2210,773 +2064,712 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/awaymission/moonoutpost19/research) -"gu" = ( -/obj/structure/disposalpipe/segment{ - desc = "An underfloor disposal pipe. This one has been applied with an acid-proof coating."; - dir = 4; - name = "Acid-Proof disposal pipe" - }, -/obj/structure/alien/weeds, -/obj/structure/alien/resin/wall, -/turf/open/floor/engine, -/area/awaymission/moonoutpost19/research) -"gv" = ( -/obj/structure/disposalpipe/segment{ - desc = "An underfloor disposal pipe. This one has been applied with an acid-proof coating."; - dir = 10; - name = "Acid-Proof disposal pipe" +"uY" = ( +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/structure/alien/weeds, -/turf/open/floor/engine, -/area/awaymission/moonoutpost19/research) -"gw" = ( -/obj/structure/table, /obj/effect/decal/cleanable/dirt, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/item/radio/off, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/research) -"gy" = ( -/obj/machinery/light/small, -/obj/structure/closet/toolcloset, -/obj/item/clothing/gloves/color/yellow, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/research) -"gz" = ( -/obj/machinery/portable_atmospherics/canister/air, /turf/open/floor/plating, /area/awaymission/moonoutpost19/research) -"gA" = ( -/obj/machinery/computer/monitor/secret{ - dir = 1 +"uZ" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/stripes/line{ + dir = 6 }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/research) -"gC" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/research) -"gE" = ( -/obj/structure/grille/broken, -/obj/item/stack/rods, -/obj/item/stack/rods, -/obj/item/shard, /turf/open/floor/plating, -/area/awaymission/moonoutpost19/research) -"gF" = ( -/obj/effect/decal/cleanable/blood/tracks{ - desc = "Your instincts say you shouldn't be following these."; - dir = 6; - icon_state = "ltrails_1" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"gG" = ( -/obj/structure/cable, -/obj/machinery/power/apc/highcap/fifteen_k{ - dir = 4; - locked = 0; - name = "Worn-out APC"; - pixel_x = 24; - req_access = null; - start_charge = 100 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"gH" = ( -/obj/structure/table, -/obj/item/retractor, -/obj/item/hemostat, -/obj/structure/alien/weeds, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"gI" = ( -/obj/structure/table, -/obj/item/surgical_drapes, -/obj/machinery/light/small/broken{ - dir = 4 +/area/awaymission/moonoutpost19/syndicate) +"vb" = ( +/obj/structure/sign/warning/securearea{ + pixel_x = 32 }, -/obj/structure/alien/weeds, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"gJ" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/machinery/light/small/broken{ - dir = 8 +/obj/structure/cable{ + icon_state = "2-8" }, -/obj/item/paper/fluff/awaymissions/moonoutpost19/research/larva_social, -/obj/item/paper/fluff/awaymissions/moonoutpost19/research/xeno_queen, -/obj/item/paper/fluff/awaymissions/moonoutpost19/research/xeno_adult, -/obj/item/paper/fluff/awaymissions/moonoutpost19/research/larva_psych, -/obj/item/paper/fluff/awaymissions/moonoutpost19/research/facehugger, /obj/structure/alien/weeds, +/obj/effect/turf_decal/tile/purple, /turf/open/floor/iron/white, /area/awaymission/moonoutpost19/research) -"gK" = ( -/obj/structure/table/reinforced, -/obj/structure/alien/weeds, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 +"vx" = ( +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/item/pen, -/obj/item/radio/off, -/obj/effect/turf_decal/stripes/line{ - dir = 8 +/obj/structure/disposalpipe/segment{ + desc = "An underfloor disposal pipe. This one has been applied with an acid-proof coating."; + dir = 4; + name = "Acid-Proof disposal pipe" }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/research) -"gL" = ( -/obj/structure/cable, /obj/machinery/door/poddoor/preopen{ desc = "A heavy duty blast door that opens mechanically. This one has been applied with an acid-proof coating."; id = "Awaylab"; name = "Acid-Proof Containment Chamber" }, -/obj/structure/cable{ - icon_state = "0-2" - }, +/obj/structure/cable, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/awaymission/moonoutpost19/research) -"gM" = ( -/obj/structure/disposalpipe/segment{ - desc = "An underfloor disposal pipe. This one has been applied with an acid-proof coating."; - name = "Acid-Proof disposal pipe" - }, -/obj/structure/alien/weeds, -/turf/open/floor/engine, -/area/awaymission/moonoutpost19/research) -"gP" = ( -/obj/structure/chair/office, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/research) -"gR" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"gS" = ( -/obj/machinery/light/broken{ - dir = 4 +"vB" = ( +/obj/machinery/gateway{ + dir = 10 }, -/obj/machinery/airalarm/unlocked{ +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/syndicate) +"vC" = ( +/obj/structure/sink{ dir = 4; - pixel_x = 23; - req_access = null - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"gT" = ( -/obj/structure/table/optable, -/obj/structure/alien/weeds, -/turf/open/floor/iron/white/side{ - dir = 1 - }, -/area/awaymission/moonoutpost19/research) -"gU" = ( -/obj/machinery/computer/operating{ - dir = 8 + pixel_x = 11 }, -/obj/structure/alien/weeds, -/turf/open/floor/iron/white/side{ - dir = 1 +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_x = 28 }, -/area/awaymission/moonoutpost19/research) -"gV" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/suit/apron/surgical, -/obj/structure/alien/weeds, -/turf/open/floor/iron/white/side{ - dir = 1 +/turf/open/floor/iron/freezer, +/area/awaymission/moonoutpost19/arrivals) +"vD" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/area/awaymission/moonoutpost19/research) -"gW" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/item/paper/fluff/awaymissions/moonoutpost19/research/xeno_hivemind, -/obj/item/paper/fluff/awaymissions/moonoutpost19/research/xeno_behavior, -/obj/item/paper/fluff/awaymissions/moonoutpost19/research/xeno_castes, -/obj/item/paper/fluff/awaymissions/moonoutpost19/research/larva_autopsy, -/obj/structure/alien/weeds, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"gX" = ( -/obj/structure/alien/weeds, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"gY" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/alien/weeds, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, /turf/open/floor/iron, -/area/awaymission/moonoutpost19/research) -"gZ" = ( -/obj/machinery/shieldwallgen{ - locked = 0; - req_access = null - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/research) -"ha" = ( -/obj/structure/disposaloutlet{ - desc = "An outlet for the pneumatic disposal system. This one has been applied with an acid-proof coating."; - dir = 1; - name = "Acid-Proof disposal outlet" - }, -/obj/structure/disposalpipe/trunk{ - desc = "An underfloor disposal pipe. This one has been applied with an acid-proof coating."; - dir = 1; - name = "Acid-Proof disposal pipe" - }, -/obj/structure/alien/weeds, -/turf/open/floor/engine, -/area/awaymission/moonoutpost19/research) -"hb" = ( -/obj/machinery/light/broken, -/obj/structure/alien/weeds, -/obj/machinery/camera/directional/south{ - c_tag = "Xenobiology Containment South"; - network = list("mo19x") - }, -/turf/open/floor/engine, -/area/awaymission/moonoutpost19/research) -"hc" = ( -/obj/machinery/sparker{ - desc = "A wall-mounted ignition device. This one has been applied with an acid-proof coating."; - id = "awayxenobio"; - name = "Acid-Proof mounted igniter"; - pixel_y = -25 - }, -/obj/structure/alien/weeds, -/obj/structure/alien/resin/wall, -/turf/open/floor/engine, -/area/awaymission/moonoutpost19/research) -"hd" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/research) -"he" = ( +/area/awaymission/moonoutpost19/syndicate) +"vE" = ( /obj/structure/cable{ icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/research) -"hf" = ( -/obj/structure/cable{ - icon_state = "1-8" +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"vF" = ( +/obj/machinery/light/small{ + dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/research) -"hj" = ( -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"hk" = ( -/obj/structure/alien/weeds, -/obj/structure/alien/egg, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/hive) -"hm" = ( -/obj/machinery/vending/medical{ - req_access_txt = "201" +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"vI" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 4 }, -/turf/open/floor/iron/white/side, -/area/awaymission/moonoutpost19/research) -"hn" = ( -/obj/structure/closet/crate/bin, -/obj/item/clothing/gloves/color/latex, -/obj/item/trash/chips, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/broken{ +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"vJ" = ( +/obj/effect/turf_decal/stripes/corner{ dir = 1 }, -/turf/open/floor/iron/white/side, -/area/awaymission/moonoutpost19/research) -"ho" = ( -/obj/structure/table, -/obj/item/storage/box/gloves, -/turf/open/floor/iron/white/corner{ - dir = 8 - }, -/area/awaymission/moonoutpost19/research) -"hq" = ( -/obj/structure/closet/secure_closet{ - icon_state = "rd"; - name = "research director's locker"; - req_access_txt = "201" +/turf/open/floor/iron{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/obj/item/storage/backpack/satchel/tox, -/obj/item/clothing/gloves/color/latex, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/area/awaymission/moonoutpost19/syndicate) +"vL" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/arrivals) +"vW" = ( +/obj/structure/table/reinforced, +/obj/structure/alien/weeds, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 }, -/area/awaymission/moonoutpost19/research) -"hr" = ( -/obj/structure/table, -/obj/item/computer_hardware/hard_drive/role/signal/toxins, -/obj/item/computer_hardware/hard_drive/role/signal/toxins{ - pixel_x = -4; - pixel_y = 2 +/obj/item/pen, +/obj/item/radio/off, +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/research) +"wb" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/syndicate) +"wg" = ( /obj/machinery/firealarm{ - pixel_y = 24 + dir = 4; + pixel_x = 24 }, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"wh" = ( +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/arrivals) +"wi" = ( +/obj/machinery/door/poddoor/preopen{ + desc = "A heavy duty blast door that opens mechanically. This one has been applied with an acid-proof coating."; + id = "Awaybiohazard"; + name = "Acid-Proof Biohazard Containment" + }, +/obj/machinery/door/poddoor{ + desc = "A heavy duty blast door that opens mechanically. This one has been applied with an acid-proof coating."; + id = "Awaybiohazard"; + name = "Acid-Proof Biohazard Containment" }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, /area/awaymission/moonoutpost19/research) -"hs" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/light/small/broken{ - dir = 1 +"wj" = ( +/obj/structure/sign/warning/biohazard{ + pixel_x = 32 }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/alien/weeds, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"wl" = ( /obj/machinery/airalarm/unlocked{ pixel_y = 23; req_access = null; + req_access_txt = "150"; dir = 1 }, -/obj/item/paper/fluff/awaymissions/moonoutpost19/log/gerald, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/turf/open/floor/iron{ + dir = 8; + icon_state = "floorscorched2"; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/area/awaymission/moonoutpost19/research) -"ht" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/area/awaymission/moonoutpost19/syndicate) +"wn" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 }, -/area/awaymission/moonoutpost19/research) -"hu" = ( -/obj/machinery/door/poddoor{ - id = "AwayRD"; - name = "Privacy Shutter" +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/syndicate) +"ww" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 8 }, -/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/iron/white/corner, +/area/awaymission/moonoutpost19/arrivals) +"wz" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/awaymission/moonoutpost19/research) -"hv" = ( -/obj/effect/turf_decal/tile/purple{ +"wA" = ( +/obj/structure/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"wB" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table, +/obj/item/radio/off{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/radio/off{ + pixel_x = 2 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/syndicate) +"wE" = ( +/obj/structure/alien/weeds/node, +/obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/iron/white, /area/awaymission/moonoutpost19/research) -"hw" = ( -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"hx" = ( -/obj/structure/grille/broken, -/obj/item/stack/rods, -/obj/item/stack/rods, -/obj/item/shard{ - icon_state = "medium" +"wI" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + desc = "A one meter section of pipe. This one has been applied with an acid-proof coating."; + dir = 4; + name = "Acid-Proof Pipe" }, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/research) -"hy" = ( /obj/item/stack/rods, +/obj/item/stack/cable_coil{ + amount = 5 + }, /obj/item/shard{ icon_state = "small" }, -/turf/open/floor/iron/white, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/research) -"hz" = ( -/obj/effect/decal/cleanable/robot_debris, -/obj/effect/decal/cleanable/oil, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" +"wL" = ( +/obj/structure/chair/fancy/comfy{ + color = "#666666"; + dir = 4 }, -/obj/item/healthanalyzer{ - pixel_x = 6; - pixel_y = -5 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"wM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/obj/item/assembly/prox_sensor{ - pixel_x = -5; - pixel_y = -2 +/area/awaymission/moonoutpost19/syndicate) +"wO" = ( +/obj/machinery/conveyor{ + id = "awaysyndie" }, -/obj/item/bodypart/l_arm/robot, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 + }, +/area/awaymission/moonoutpost19/syndicate) +"wQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 + }, +/area/awaymission/moonoutpost19/arrivals) +"wV" = ( +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/research) +"wW" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/arrivals) +"xa" = ( +/obj/machinery/light/small, +/obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/white, /area/awaymission/moonoutpost19/research) -"hA" = ( -/obj/structure/table, -/obj/item/storage/firstaid/fire, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 28 +"xm" = ( +/obj/structure/sign/warning/vacuum{ + desc = "A warning sign which reads 'HOSTILE ATMOSPHERE AHEAD'"; + name = "\improper HOSTILE ATMOSPHERE AHEAD"; + pixel_y = 32 }, -/turf/open/floor/iron/white/side{ - dir = 8 +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/arrivals) +"xp" = ( +/obj/structure/alien/weeds, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/area/awaymission/moonoutpost19/research) -"hB" = ( -/turf/open/floor/iron/cafeteria{ - dir = 5 +/area/awaymission/moonoutpost19/hive) +"xv" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" }, -/area/awaymission/moonoutpost19/research) -"hC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/turf/open/floor/iron/freezer, +/area/awaymission/moonoutpost19/syndicate) +"xx" = ( +/obj/machinery/gateway/centeraway{ + calibrated = 0 }, -/area/awaymission/moonoutpost19/research) -"hD" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/command{ - density = 0; - icon_state = "open"; - name = "Research Director's Office"; - opacity = 0; - req_access_txt = "201"; - set_obj_flags = "EMAGGED" +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/syndicate) +"xz" = ( +/obj/effect/decal/cleanable/blood/tracks{ + desc = "Your instincts say you shouldn't be following these."; + dir = 8; + icon_state = "ltrails_1" }, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/area/awaymission/moonoutpost19/research) -"hE" = ( -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -32 +/area/awaymission/moonoutpost19/main) +"xE" = ( +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/machinery/light/small/broken, -/obj/item/paper/fluff/awaymissions/moonoutpost19/research/evacuation, -/obj/machinery/camera/directional/south{ - c_tag = "Research Division"; - network = list("mo19","mo19r") +/obj/structure/cable{ + icon_state = "0-4" }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 +/obj/machinery/computer/monitor/secret, +/obj/effect/turf_decal/stripes/line{ + dir = 5 }, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"hF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"hG" = ( -/obj/machinery/door/airlock/research/glass{ - name = "Research Storage"; - req_access_txt = "201" +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/syndicate) +"xJ" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/iron/white, +/turf/open/floor/plating, /area/awaymission/moonoutpost19/research) -"hH" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/unlocked{ - dir = 4; - pixel_x = 23; - req_access = null +"xP" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/iron/white/side{ +/obj/structure/alien/weeds, +/obj/effect/turf_decal/stripes/line{ dir = 8 }, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/research) -"hI" = ( -/turf/closed/wall/rust, -/area/awaymission/moonoutpost19/arrivals) -"hJ" = ( -/turf/closed/wall, +"xR" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/carpet, /area/awaymission/moonoutpost19/arrivals) -"hL" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/research) -"hM" = ( -/obj/structure/chair, -/turf/open/floor/iron/cafeteria{ - dir = 5 +"xW" = ( +/obj/structure/toilet{ + dir = 1 }, +/turf/open/floor/iron/freezer, /area/awaymission/moonoutpost19/research) -"hN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor{ - desc = "A heavy duty blast door that opens mechanically. This one has been applied with an acid-proof coating."; - id = "Awaybiohazard"; - name = "Acid-Proof Biohazard Containment" +"ya" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 + }, +/area/awaymission/moonoutpost19/syndicate) +"ye" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/obj/effect/turf_decal/delivery, /turf/open/floor/iron, -/area/awaymission/moonoutpost19/research) -"hO" = ( -/obj/structure/table, -/turf/open/floor/iron/white/side{ +/area/awaymission/moonoutpost19/arrivals) +"ym" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 8 }, -/area/awaymission/moonoutpost19/research) -"hP" = ( -/obj/structure/toilet{ - dir = 4 +/turf/open/floor/iron{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 + }, +/area/awaymission/moonoutpost19/syndicate) +"yo" = ( +/obj/machinery/gateway{ + dir = 6 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/syndicate) +"yr" = ( +/obj/item/shard{ + icon_state = "small" }, -/turf/open/floor/iron/freezer, -/area/awaymission/moonoutpost19/arrivals) -"hQ" = ( -/obj/machinery/door/airlock{ - name = "Unit 2" +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/turf/open/floor/iron/freezer, +/area/awaymission/moonoutpost19/main) +"ys" = ( +/obj/structure/alien/weeds, +/obj/structure/alien/resin/wall, +/obj/structure/alien/resin/wall, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" + }, +/area/awaymission/moonoutpost19/hive) +"yv" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "awaykitchen"; + name = "Serving Hatch" + }, +/turf/open/floor/carpet, /area/awaymission/moonoutpost19/arrivals) -"hR" = ( -/obj/structure/urinal{ - pixel_y = 29 +"yH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Diner" }, -/turf/open/floor/iron/freezer, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"hS" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +"yL" = ( +/obj/machinery/mineral/stacking_machine{ + dir = 1; + input_dir = 1; + output_dir = 2 }, -/obj/structure/urinal{ - pixel_y = 29 +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/obj/structure/mirror{ - pixel_x = 28 +/turf/open/floor/plating{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/freezer, -/area/awaymission/moonoutpost19/arrivals) -"hT" = ( -/obj/machinery/shower{ - pixel_y = 16 +/area/awaymission/moonoutpost19/syndicate) +"yP" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/syndicate) +"yR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + broken = 1; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/turf/open/floor/iron/freezer, /area/awaymission/moonoutpost19/arrivals) -"hU" = ( -/obj/machinery/shower{ - pixel_y = 16 +"yV" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/light/small{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/freezer, +/obj/item/trash/cheesie, +/obj/item/trash/can, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"hV" = ( -/obj/machinery/light/small, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" +"yZ" = ( +/obj/structure/cable{ + icon_state = "1-2" }, +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/syndicate) +"zc" = ( +/obj/item/cigbutt, +/turf/open/floor/plating, /area/awaymission/moonoutpost19/arrivals) -"hX" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 +"zd" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/unlocked{ + dir = 4; + pixel_x = 23; + req_access = null }, -/obj/structure/window/reinforced{ +/turf/open/floor/iron/white/side{ dir = 8 }, -/obj/item/folder/white, -/obj/item/stamp/research_director{ - pixel_x = 3; - pixel_y = -2 +/area/awaymission/moonoutpost19/research) +"ze" = ( +/turf/open/floor/iron{ + dir = 8; + icon_state = "damaged5"; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/turf/open/floor/iron/cafeteria{ +/area/awaymission/moonoutpost19/arrivals) +"zi" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/syndicate) +"zj" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/stripes/line{ dir = 5 }, -/area/awaymission/moonoutpost19/research) -"hY" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/syndicate) +"zn" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + desc = "An underfloor disposal pipe. This one has been applied with an acid-proof coating."; + dir = 4; + name = "Acid-Proof disposal pipe" }, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/obj/structure/alien/weeds, +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/research) -"hZ" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 +"zo" = ( +/obj/structure/table, +/obj/item/storage/fancy/cigarettes/dromedaryco, +/obj/effect/turf_decal/stripes/line{ + dir = 6 }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for monitoring the research division and the labs within."; - name = "research monitor"; - network = list("mo19x","mo19r") +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"zt" = ( +/obj/machinery/door/airlock/medical{ + name = "Research Division"; + req_access_txt = "201" }, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 }, +/turf/open/floor/iron/white, /area/awaymission/moonoutpost19/research) -"ia" = ( -/obj/machinery/computer/aifixer, -/obj/structure/window/reinforced{ - dir = 1 +"zv" = ( +/obj/structure/cable{ + icon_state = "1-4" }, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/obj/structure/cable{ + icon_state = "1-2" }, +/turf/open/floor/plating, /area/awaymission/moonoutpost19/research) -"ib" = ( -/obj/structure/rack, -/obj/structure/window/reinforced{ +"zB" = ( +/obj/machinery/light/small{ dir = 8 }, -/obj/item/circuitboard/computer/teleporter, -/obj/effect/turf_decal/stripes/line{ - dir = 9 +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"zE" = ( +/turf/open/floor/iron{ + dir = 8; + icon_state = "floorscorched2"; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 + }, +/area/awaymission/moonoutpost19/arrivals) +"zF" = ( +/obj/item/pickaxe/drill, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" + }, +/area/awaymission/moonoutpost19/main) +"zI" = ( +/obj/item/flashlight/lantern{ + icon_state = "lantern-on" + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"ic" = ( -/obj/structure/rack, -/obj/item/paicard{ - pixel_x = 4 +/area/awaymission/moonoutpost19/main) +"zM" = ( +/obj/machinery/door/airlock{ + id_tag = "awaydorm5"; + name = "Dorm 2" }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/turf/open/floor/wood, +/area/awaymission/moonoutpost19/syndicate) +"Af" = ( +/obj/machinery/gateway{ + dir = 9 }, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"id" = ( -/obj/structure/rack, -/obj/effect/turf_decal/stripes/line{ - dir = 5 +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/syndicate) +"Aj" = ( +/obj/structure/chair{ + dir = 8 }, -/turf/open/floor/iron/white, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"Am" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, /area/awaymission/moonoutpost19/research) -"ie" = ( -/obj/machinery/door/airlock/medical{ - name = "Research Division"; - req_access_txt = "201" +"An" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor{ + desc = "A heavy duty blast door that opens mechanically. This one has been applied with an acid-proof coating."; + id = "Awaybiohazard"; + name = "Acid-Proof Biohazard Containment" }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/iron/white, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/research) -"if" = ( -/obj/structure/closet/l3closet, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white/side{ +"Ao" = ( +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"Av" = ( +/obj/machinery/light/small{ dir = 1 }, -/area/awaymission/moonoutpost19/research) -"ig" = ( -/obj/structure/closet/l3closet, -/obj/machinery/light/small/broken, -/turf/open/floor/iron/white/side{ - dir = 1 +/obj/structure/window/reinforced{ + dir = 4 }, -/area/awaymission/moonoutpost19/research) -"ih" = ( /obj/structure/table, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/turf/open/floor/iron/white/side{ +/obj/structure/bedsheetbin, +/obj/item/clothing/neck/tie/black, +/obj/item/clothing/under/suit/black, +/obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, -/area/awaymission/moonoutpost19/research) -"ii" = ( -/obj/structure/table, -/turf/open/floor/iron/white/corner{ +/turf/open/floor/iron/cafeteria{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 + }, +/area/awaymission/moonoutpost19/arrivals) +"Aw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/syndicate) +"Ay" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ dir = 1 }, -/area/awaymission/moonoutpost19/research) -"ij" = ( -/obj/machinery/airalarm/unlocked{ - dir = 8; - pixel_x = -23; - req_access = null +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/syndicate) +"AA" = ( +/obj/structure/alien/weeds, +/mob/living/simple_animal/hostile/alien/queen/large{ + desc = "A gigantic alien who is in charge of the hive and all of its loyal servants."; + name = "alien queen"; + pixel_x = -16; + plants_off = 1 }, -/obj/machinery/light/small{ - dir = 8 +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/turf/open/floor/iron/freezer, -/area/awaymission/moonoutpost19/arrivals) -"ik" = ( -/obj/structure/sink{ +/area/awaymission/moonoutpost19/hive) +"AB" = ( +/obj/machinery/airalarm/unlocked{ dir = 4; - pixel_x = 11 + pixel_x = 23; + req_access = null }, -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_x = 28 +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/turf/open/floor/iron/freezer, /area/awaymission/moonoutpost19/arrivals) -"il" = ( -/obj/item/soap/nanotrasen, -/obj/machinery/light/small{ - dir = 8 +"AE" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 }, -/turf/open/floor/iron/freezer, -/area/awaymission/moonoutpost19/arrivals) -"im" = ( -/turf/open/floor/iron/freezer, -/area/awaymission/moonoutpost19/arrivals) -"in" = ( -/obj/machinery/shower{ - dir = 8 +/turf/open/floor/iron{ + dir = 8; + icon_state = "floorscorched1" }, -/turf/open/floor/iron/freezer, -/area/awaymission/moonoutpost19/arrivals) -"io" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, /area/awaymission/moonoutpost19/arrivals) -"ip" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/button/door{ - id = "Awaybiohazard"; - name = "Biohazard Shutter Control"; - pixel_y = 8; - req_access_txt = "201" - }, -/obj/machinery/button/door{ - id = "AwayRD"; - name = "Privacy Shutter Control"; - pixel_y = -2; - req_access_txt = "201" - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 +"AF" = ( +/obj/structure/closet/crate{ + desc = "It's a storage unit for kitchen clothes and equipment."; + name = "Kitchen Crate" }, -/area/awaymission/moonoutpost19/research) -"iq" = ( -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 +/obj/item/storage/box/mousetraps, +/obj/item/clothing/under/suit/waiter, +/turf/open/floor/iron/showroomfloor{ + initial_temperature = 273.15 }, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/area/awaymission/moonoutpost19/arrivals) +"AG" = ( +/obj/structure/sign/warning/vacuum{ + desc = "A warning sign which reads 'HOSTILE ATMOSPHERE AHEAD'"; + name = "\improper HOSTILE ATMOSPHERE AHEAD"; + pixel_y = -32 }, -/area/awaymission/moonoutpost19/research) -"ir" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/turf_decal/stripes/line{ - dir = 8 + dir = 10 }, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"is" = ( +/turf/open/floor/plating{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 + }, +/area/awaymission/moonoutpost19/syndicate) +"AH" = ( /obj/effect/decal/cleanable/blood/tracks{ desc = "Your instincts say you shouldn't be following these."; dir = 8; @@ -2984,852 +2777,1048 @@ }, /turf/open/floor/iron/white, /area/awaymission/moonoutpost19/research) -"it" = ( -/obj/item/storage/secure/safe{ - pixel_x = 32 +"AO" = ( +/obj/item/stack/rods, +/obj/item/shard{ + icon_state = "small" }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/pen, -/obj/item/paper/crumpled/awaymissions/moonoutpost19/hastey_note, -/obj/effect/turf_decal/stripes/line{ - dir = 4 +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/main) +"AP" = ( +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/research) -"iu" = ( -/obj/structure/sign/warning/securearea{ - pixel_y = 32 +"AS" = ( +/obj/structure/grille/broken, +/obj/item/stack/rods, +/turf/open/floor/plating{ + broken = 1; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" +/area/awaymission/moonoutpost19/arrivals) +"AT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/loading_area, +/obj/structure/alien/weeds, +/turf/open/floor/iron{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 +/area/awaymission/moonoutpost19/syndicate) +"AZ" = ( +/obj/machinery/light/small{ + dir = 1 }, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"iv" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/stripes/line{ - dir = 5 +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"iw" = ( -/obj/structure/toilet{ +/obj/machinery/airalarm/unlocked{ + pixel_y = 23; + req_access = null; + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ dir = 4 }, -/obj/machinery/light/small{ +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"Bi" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/corner{ dir = 1 }, -/turf/open/floor/iron/freezer, -/area/awaymission/moonoutpost19/arrivals) -"ix" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" +/turf/open/floor/iron{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/turf/open/floor/iron/freezer, -/area/awaymission/moonoutpost19/arrivals) -"iy" = ( -/obj/machinery/door/airlock{ - name = "Unisex Showers" +/area/awaymission/moonoutpost19/syndicate) +"Bj" = ( +/obj/machinery/button/door{ + id = "awaydorm1"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_x = -25; + specialfunctions = 4 }, -/turf/open/floor/iron/freezer, -/area/awaymission/moonoutpost19/arrivals) -"iz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/freezer, +/turf/open/floor/carpet, /area/awaymission/moonoutpost19/arrivals) -"iA" = ( -/obj/machinery/shower{ - dir = 8 +"Bq" = ( +/obj/structure/alien/weeds, +/mob/living/simple_animal/hostile/alien/drone{ + plants_off = 1 }, -/obj/item/bikehorn/rubberducky, -/turf/open/floor/iron/freezer, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" + }, +/area/awaymission/moonoutpost19/hive) +"Bx" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, /area/awaymission/moonoutpost19/arrivals) -"iE" = ( +"BB" = ( /obj/structure/cable{ icon_state = "1-2" }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/awaymission/moonoutpost19/research) -"iF" = ( -/obj/structure/sink{ - pixel_y = 28 +"Cb" = ( +/obj/machinery/power/port_gen/pacman/super{ + name = "S.U.P.E.R.P.A.C.M.A.N.-type portable generator" }, -/obj/machinery/light/small{ - dir = 8 +/obj/structure/cable{ + icon_state = "0-2" }, -/turf/open/floor/iron/freezer, -/area/awaymission/moonoutpost19/research) -"iG" = ( -/obj/machinery/door/airlock{ - name = "Private Restroom" +/turf/open/floor/plating{ + broken = 1 }, -/turf/open/floor/iron/freezer, /area/awaymission/moonoutpost19/research) -"iH" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 +"Cd" = ( +/turf/open/floor/plating{ + broken = 1 }, -/obj/machinery/light/small/broken, -/obj/machinery/camera/directional/south{ - c_tag = "Research Director's Office"; - network = list("mo19","mo19r") +/area/awaymission/moonoutpost19/arrivals) +"Ce" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/public/glass{ + density = 0; + icon_state = "open"; + name = "Dormitories"; + set_obj_flags = "EMAGGED" }, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/obj/item/stack/rods, +/obj/item/shard{ + icon_state = "small" }, -/area/awaymission/moonoutpost19/research) -"iI" = ( -/obj/machinery/newscaster{ - pixel_y = -30 +/turf/open/floor/iron{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/area/awaymission/moonoutpost19/syndicate) +"Cg" = ( +/obj/effect/decal/cleanable/xenoblood, +/obj/effect/decal/remains/xeno{ + desc = "They look like the remains of something... alien. The front of skull appears to have been completely obliterated." }, -/area/awaymission/moonoutpost19/research) -"iJ" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"Cj" = ( +/obj/machinery/button/door{ + id = "awaydorm4"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_y = 25; + specialfunctions = 4 + }, +/obj/structure/bed, +/obj/item/bedsheet/syndie, +/turf/open/floor/wood{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" + }, +/area/awaymission/moonoutpost19/syndicate) +"Co" = ( +/turf/open/floor/carpet, +/area/awaymission/moonoutpost19/arrivals) +"Ct" = ( /obj/structure/table, -/obj/item/radio/off, -/obj/item/laser_pointer, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 }, +/obj/item/pen, +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/research) -"iK" = ( -/obj/structure/window/reinforced{ +"Cu" = ( +/obj/machinery/light/small/broken{ dir = 8 }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"iL" = ( -/obj/machinery/light/small, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"iM" = ( -/obj/structure/table, -/obj/item/storage/secure/briefcase, -/obj/item/taperecorder{ - pixel_x = -3 +/obj/machinery/camera/directional/west{ + c_tag = "Xenobiology"; + network = list("mo19","mo19r") }, -/obj/effect/turf_decal/stripes/line{ +/turf/open/floor/iron/white/side{ dir = 6 }, -/turf/open/floor/iron/white, /area/awaymission/moonoutpost19/research) -"iN" = ( -/obj/structure/sink{ +"Cw" = ( +/obj/structure/chair/fancy/comfy{ + color = "#666666"; + dir = 8 + }, +/turf/open/floor/iron{ dir = 8; - pixel_x = -12; - pixel_y = 2 + icon_state = "floorscorched2"; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 + }, +/area/awaymission/moonoutpost19/arrivals) +"Cx" = ( +/obj/machinery/door/firedoor/closed{ + opacity = 0 + }, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"Cy" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/arrivals) +"CB" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Break Room" }, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/syndicate) +"CC" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 }, -/turf/open/floor/iron/white, -/area/awaymission/moonoutpost19/research) -"iO" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light/small, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"CZ" = ( /obj/effect/turf_decal/stripes/line{ - dir = 6 + dir = 8 }, -/turf/open/floor/iron/white, +/turf/open/floor/iron{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 + }, +/area/awaymission/moonoutpost19/syndicate) +"Dc" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/blood/tracks{ + desc = "Your instincts say you shouldn't be following these."; + dir = 8; + icon_state = "ltrails_1" + }, +/turf/open/floor/plating, /area/awaymission/moonoutpost19/research) -"iP" = ( -/obj/machinery/shower{ - dir = 1 +"Df" = ( +/obj/machinery/light/small, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/turf/open/floor/iron/freezer, -/area/awaymission/moonoutpost19/arrivals) -"iT" = ( -/obj/machinery/computer/security/telescreen/entertainment, -/turf/closed/wall/rust, /area/awaymission/moonoutpost19/arrivals) -"iU" = ( -/obj/machinery/vending/boozeomat, -/turf/open/floor/iron/cafeteria{ - dir = 5 +"Dg" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/area/awaymission/moonoutpost19/arrivals) -"iV" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 +/obj/structure/cable{ + icon_state = "2-8" }, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/research) +"Do" = ( +/obj/structure/grille, +/turf/open/floor/plating{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" + }, +/area/awaymission/moonoutpost19/arrivals) +"Dq" = ( /turf/open/floor/iron{ dir = 8; - icon_state = "floorscorched2" + icon_state = "damaged4"; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/area/awaymission/moonoutpost19/arrivals) -"iW" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 +/area/awaymission/moonoutpost19/syndicate) +"Ds" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" + }, +/area/awaymission/moonoutpost19/syndicate) +"Du" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/space_cube{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/syndicate) +"DG" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, /turf/open/floor/iron{ - dir = 8; - icon_state = "floorscorched1" + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/area/awaymission/moonoutpost19/arrivals) -"iX" = ( -/turf/open/floor/iron/cafeteria{ - dir = 5 +/area/awaymission/moonoutpost19/syndicate) +"DI" = ( +/obj/structure/sign/departments/science{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 1 }, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"iY" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/turf/open/floor/iron/cafeteria{ - dir = 5 +"DP" = ( +/obj/item/stack/ore/iron{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" + }, +/area/awaymission/moonoutpost19/main) +"Ed" = ( +/obj/structure/closet/crate/bin, +/obj/item/trash/candy, +/obj/item/trash/can, +/obj/effect/turf_decal/tile/blue{ + dir = 8 }, +/turf/open/floor/iron/white/corner, /area/awaymission/moonoutpost19/arrivals) -"iZ" = ( -/obj/structure/toilet{ - dir = 1 +"Ej" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + burnt = 1 }, -/turf/open/floor/iron/freezer, /area/awaymission/moonoutpost19/research) -"ja" = ( -/obj/item/stack/rods, -/obj/item/shard, +"Em" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/syndicate) +"En" = ( +/obj/structure/alien/weeds, +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs, +/obj/item/clothing/mask/facehugger/impregnated, +/obj/item/gun/ballistic/automatic/pistol, /turf/open/floor/plating/asteroid{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/area/awaymission/moonoutpost19/main) -"jb" = ( -/obj/structure/chair/fancy/comfy{ - color = "#666666"; - dir = 4 +/area/awaymission/moonoutpost19/hive) +"Et" = ( +/obj/structure/cable{ + icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"jc" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/detective, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, +/turf/open/floor/iron{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 + }, /area/awaymission/moonoutpost19/arrivals) -"jd" = ( -/obj/structure/chair/fancy/comfy{ - color = "#666666"; +"EE" = ( +/obj/structure/cable, +/obj/machinery/power/apc/highcap/fifteen_k{ + name = "Worn-out APC"; + pixel_y = -23; + req_access = null; + req_access_txt = "150"; + start_charge = 0 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"je" = ( /turf/open/floor/iron{ - dir = 8; - icon_state = "floorscorched2" + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 + }, +/area/awaymission/moonoutpost19/syndicate) +"EF" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) -"jf" = ( -/obj/machinery/vending/cola, -/turf/open/floor/iron/dark, +"EM" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, /area/awaymission/moonoutpost19/arrivals) -"jg" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/iron/dark, +"EN" = ( +/obj/machinery/shower{ + dir = 8 + }, +/turf/open/floor/iron/freezer, /area/awaymission/moonoutpost19/arrivals) -"jh" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" +"EQ" = ( +/obj/item/soap/nanotrasen, +/obj/machinery/light/small{ + dir = 8 }, /turf/open/floor/iron/freezer, /area/awaymission/moonoutpost19/arrivals) -"jl" = ( -/obj/structure/chair/stool, -/turf/open/floor/carpet, +"ER" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"EV" = ( +/obj/structure/table, +/obj/item/plate, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"jm" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 +"EW" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 +/obj/item/stack/rods, +/turf/open/floor/plating{ + broken = 1 }, -/obj/machinery/door/poddoor/shutters{ - id = "awaykitchen"; - name = "Serving Hatch" +/area/awaymission/moonoutpost19/research) +"Fc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/syndicate) +"Fe" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + locked = 0; + req_access_txt = "201" }, +/obj/item/clothing/under/suit/burgundy, /turf/open/floor/carpet, /area/awaymission/moonoutpost19/arrivals) -"jn" = ( -/obj/effect/decal/cleanable/food/flour, -/turf/open/floor/iron/cafeteria{ - dir = 5 +"Fj" = ( +/obj/machinery/door/firedoor, +/obj/structure/extinguisher_cabinet{ + pixel_y = -29 }, -/area/awaymission/moonoutpost19/arrivals) -"jo" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/research) +"Fm" = ( +/obj/machinery/door/poddoor{ + id = "AwayRD"; + name = "Privacy Shutter" }, -/area/awaymission/moonoutpost19/arrivals) -"jp" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/research) +"Fv" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/syndicate) +"Fy" = ( /obj/structure/cable{ icon_state = "1-2" }, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 28 + }, +/obj/structure/alien/weeds, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white, /area/awaymission/moonoutpost19/research) -"jq" = ( -/obj/item/kirbyplants{ - desc = "A plastic potted plant."; - pixel_y = 3 +"FA" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/button/door{ + id = "awaydorm3"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_x = -25; + specialfunctions = 4 }, -/turf/open/floor/iron{ - dir = 8; - icon_state = "floorscorched1" +/obj/effect/decal/remains/human{ + desc = "They look like human remains. The skeleton is laid out on its side and there seems to have been no sign of struggle." }, +/turf/open/floor/carpet, /area/awaymission/moonoutpost19/arrivals) -"jr" = ( -/obj/structure/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"js" = ( -/obj/structure/chair, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"jt" = ( -/obj/structure/table, -/obj/item/newspaper, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"ju" = ( -/obj/structure/chair, -/turf/open/floor/iron, +"FF" = ( +/obj/structure/alien/weeds, +/obj/structure/alien/egg/burst, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" + }, +/area/awaymission/moonoutpost19/hive) +"FG" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, /area/awaymission/moonoutpost19/arrivals) -"jv" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 +"FK" = ( +/obj/effect/decal/cleanable/blood/tracks{ + desc = "Your instincts say you shouldn't be following these."; + dir = 8; + icon_state = "ltrails_1" }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron{ - dir = 8; - icon_state = "floorscorched1" + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) -"jw" = ( -/obj/machinery/vending/snack, -/obj/structure/sign/poster/contraband/eat{ - pixel_y = 32 +"FL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/turf/open/floor/iron{ - dir = 8; - icon_state = "floorscorched2" +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"FO" = ( +/obj/structure/sign/warning/vacuum{ + desc = "A warning sign which reads 'HOSTILE ATMOSPHERE AHEAD'"; + name = "\improper HOSTILE ATMOSPHERE AHEAD" }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, /area/awaymission/moonoutpost19/arrivals) -"jB" = ( -/obj/structure/grille, -/turf/open/floor/plating{ +"FU" = ( +/obj/structure/alien/weeds/node, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/asteroid{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/area/awaymission/moonoutpost19/arrivals) -"jC" = ( -/obj/effect/spawner/structure/window/reinforced, +/area/awaymission/moonoutpost19/hive) +"FV" = ( +/obj/effect/decal/cleanable/blood/tracks{ + desc = "Your instincts say you shouldn't be following these."; + dir = 6; + icon_state = "ltrails_1" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"Ge" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, /turf/open/floor/plating{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" + broken = 1 }, -/area/awaymission/moonoutpost19/arrivals) -"jD" = ( -/obj/machinery/light/small{ +/area/awaymission/moonoutpost19/research) +"Gi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ dir = 8 }, -/turf/open/floor/iron, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, /area/awaymission/moonoutpost19/arrivals) -"jF" = ( +"Gk" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/research) +"Gm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"jG" = ( -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"jH" = ( -/obj/structure/cable{ - icon_state = "0-2" +/turf/open/floor/plating{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/obj/machinery/power/apc/highcap/fifteen_k{ - dir = 1; +/area/awaymission/moonoutpost19/syndicate) +"Gu" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ locked = 0; - name = "Worn-out APC"; - pixel_y = 23; - req_access = null; - start_charge = 100 + req_access_txt = "150" + }, +/obj/item/stack/spacecash/c50, +/turf/open/floor/wood, +/area/awaymission/moonoutpost19/syndicate) +"Gx" = ( +/obj/effect/decal/cleanable/blood/tracks{ + desc = "Your instincts say you shouldn't be following these."; + dir = 8; + icon_state = "ltrails_2" + }, +/turf/open/floor/plating{ + broken = 1; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"jI" = ( -/obj/machinery/airalarm/unlocked{ - pixel_y = 23; - req_access = null; - dir = 1 +"Gz" = ( +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/syndicate) +"GA" = ( +/turf/open/floor/iron/showroomfloor{ + initial_temperature = 273.15 }, -/turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"jJ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 +"GE" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/research{ + density = 0; + icon_state = "open"; + name = "Xenobiology Lab"; + opacity = 0; + req_access_txt = "201"; + set_obj_flags = "EMAGGED" }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"jK" = ( +/area/awaymission/moonoutpost19/research) +"GF" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, /obj/machinery/light/small{ - dir = 1 + dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"jL" = ( +/area/awaymission/moonoutpost19/syndicate) +"GI" = ( /obj/structure/noticeboard{ - pixel_y = 32 + dir = 1; + pixel_y = -32 }, -/obj/item/paper/fluff/awaymissions/moonoutpost19/food_specials, -/turf/open/floor/iron{ - dir = 8; - icon_state = "floorscorched1" +/obj/machinery/light/small/broken, +/obj/item/paper/fluff/awaymissions/moonoutpost19/research/evacuation, +/obj/machinery/camera/directional/south{ + c_tag = "Research Division"; + network = list("mo19","mo19r") }, -/area/awaymission/moonoutpost19/arrivals) -"jM" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/arrivals) -"jO" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "awaykitchen"; - name = "Serving Hatch" +/obj/effect/turf_decal/tile/purple{ + dir = 8 }, -/turf/open/floor/carpet, -/area/awaymission/moonoutpost19/arrivals) -"jP" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/barman_recipes{ - pixel_y = 5 +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"GO" = ( +/turf/open/floor/iron{ + dir = 8; + icon_state = "damaged2"; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/obj/item/reagent_containers/food/drinks/shaker, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/area/awaymission/moonoutpost19/syndicate) +"GP" = ( +/obj/effect/turf_decal/tile/red, +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/syndicate) +"GQ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 }, +/turf/open/floor/iron/white/corner, /area/awaymission/moonoutpost19/arrivals) -"jQ" = ( -/obj/structure/table, -/obj/item/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 +"GR" = ( +/obj/machinery/button/door{ + id = "awaydorm5"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_y = 25; + specialfunctions = 4 }, -/area/awaymission/moonoutpost19/arrivals) -"jR" = ( -/obj/machinery/vending/dinnerware, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/obj/structure/dresser, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/awaymission/moonoutpost19/syndicate) +"GX" = ( +/obj/machinery/shower{ + pixel_y = 16 }, +/turf/open/floor/iron/freezer, /area/awaymission/moonoutpost19/arrivals) -"jT" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light/small{ +"GY" = ( +/obj/structure/window/reinforced{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/l3closet/scientist, +/obj/structure/alien/weeds, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, /turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"jU" = ( -/obj/structure/cable{ - icon_state = "4-8" +/area/awaymission/moonoutpost19/research) +"Ha" = ( +/obj/structure/table, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 32 }, +/obj/item/plate, +/obj/item/cigbutt, +/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"jV" = ( +/area/awaymission/moonoutpost19/syndicate) +"He" = ( /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/research) +"Hg" = ( +/obj/item/kirbyplants{ + desc = "A plastic potted plant."; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 + }, /area/awaymission/moonoutpost19/arrivals) -"jX" = ( -/obj/structure/cable{ - icon_state = "4-8" +"Hi" = ( +/obj/structure/alien/weeds, +/obj/structure/alien/resin/wall, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/obj/item/cigbutt, +/area/awaymission/moonoutpost19/main) +"Hl" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"jY" = ( -/obj/machinery/light/small{ - dir = 1 +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/obj/structure/cable{ - icon_state = "4-8" +/turf/open/floor/iron{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/obj/machinery/airalarm/unlocked{ - pixel_y = 23; - req_access = null; - dir = 1 +/area/awaymission/moonoutpost19/syndicate) +"Hq" = ( +/obj/machinery/light/small{ + dir = 4 }, -/obj/effect/turf_decal/tile/purple{ +/obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/structure/sign/poster/contraband/hacking_guide{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/syndicate) +"Ht" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"jZ" = ( -/obj/structure/cable{ - icon_state = "4-8" +/area/awaymission/moonoutpost19/syndicate) +"Hx" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/suit/apron/surgical, +/obj/structure/alien/weeds, +/turf/open/floor/iron/white/side{ + dir = 1 }, -/obj/effect/turf_decal/tile/purple{ +/area/awaymission/moonoutpost19/research) +"Hz" = ( +/obj/machinery/computer/monitor/secret{ dir = 1 }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"ka" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/research) +"HC" = ( +/obj/structure/alien/weeds/node, +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple{ +/turf/open/floor/iron{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 + }, +/area/awaymission/moonoutpost19/syndicate) +"HE" = ( +/obj/structure/shuttle/engine/propulsion/burst/right{ dir = 4 }, -/turf/open/floor/iron, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" + }, /area/awaymission/moonoutpost19/arrivals) -"kb" = ( +"HI" = ( +/obj/structure/cable, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "0-2" }, -/obj/machinery/door/firedoor/closed{ - opacity = 0 +/obj/machinery/door/poddoor/preopen{ + desc = "A heavy duty blast door that opens mechanically. This one has been applied with an acid-proof coating."; + id = "Awaylab"; + name = "Acid-Proof Containment Chamber" }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"kc" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/research) +"HK" = ( +/obj/structure/closet/crate, +/obj/item/storage/box/lights/mixed, +/obj/item/poster/random_contraband, +/turf/open/floor/plating{ + broken = 1 }, -/turf/open/floor/iron{ - dir = 8; - icon_state = "floorscorched2"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/area/awaymission/moonoutpost19/research) +"HN" = ( +/obj/machinery/airalarm/directional/east{ + pixel_x = 23; + req_access = null; + req_access_txt = "150" }, -/area/awaymission/moonoutpost19/arrivals) -"kd" = ( -/obj/structure/cable{ - icon_state = "4-8" +/turf/open/floor/wood, +/area/awaymission/moonoutpost19/syndicate) +"HO" = ( +/obj/structure/rack, +/obj/item/clothing/suit/space/syndicate/orange, +/obj/item/clothing/mask/gas, +/obj/item/pickaxe/drill, +/obj/item/clothing/head/helmet/space/syndicate/orange, +/obj/effect/turf_decal/stripes/line{ + dir = 5 }, -/turf/open/floor/iron{ - dir = 8; - icon_state = "damaged1"; +/turf/open/floor/plating{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, -/area/awaymission/moonoutpost19/arrivals) -"ke" = ( +/area/awaymission/moonoutpost19/syndicate) +"HU" = ( /obj/structure/cable{ icon_state = "4-8" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, -/area/awaymission/moonoutpost19/arrivals) -"kf" = ( -/obj/machinery/light/small{ +/area/awaymission/moonoutpost19/syndicate) +"Ia" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron{ +/turf/open/floor/plating{ + icon_plating = "asteroidplating"; + icon_state = "asteroidplating"; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, -/area/awaymission/moonoutpost19/arrivals) -"kg" = ( +/area/awaymission/moonoutpost19/main) +"Ic" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/research) +"Ie" = ( /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, -/turf/open/floor/iron{ - dir = 8; - icon_state = "floorscorched1"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/light/small{ + dir = 8 }, -/area/awaymission/moonoutpost19/arrivals) -"ki" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/item/stock_parts/cell/high, +/obj/item/paper/fluff/awaymissions/moonoutpost19/engineering, +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/turf/open/floor/iron{ - dir = 8; - icon_state = "damaged3"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/syndicate) +"Ii" = ( +/turf/open/floor/iron/white/side, +/area/awaymission/moonoutpost19/research) +"Io" = ( +/obj/item/stack/ore/iron{ + pixel_x = 7; + pixel_y = -6 }, -/area/awaymission/moonoutpost19/arrivals) -"kj" = ( -/obj/structure/cable{ - icon_state = "4-8" +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor/closed{ - opacity = 0 +/area/awaymission/moonoutpost19/main) +"Ir" = ( +/obj/structure/alien/weeds, +/mob/living/simple_animal/hostile/alien, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"kk" = ( -/obj/machinery/light/small, +/area/awaymission/moonoutpost19/hive) +"Iu" = ( /obj/structure/cable{ - icon_state = "4-8" + icon_state = "2-4" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"kl" = ( -/obj/structure/cable{ - icon_state = "1-8" +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/research) +"Iw" = ( +/obj/structure/window/reinforced, +/obj/structure/closet/secure_closet{ + icon_state = "science"; + name = "scientist's locker"; + req_access_txt = "201" }, +/obj/item/clothing/suit/toggle/labcoat, +/obj/item/tank/internals/air, +/obj/item/clothing/mask/gas, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"km" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Diner" - }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"kn" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/reagent_containers/glass/rag{ - pixel_y = 5 - }, -/obj/machinery/door/poddoor/shutters{ - id = "awaykitchen"; - name = "Serving Hatch" +/area/awaymission/moonoutpost19/research) +"Iy" = ( +/obj/effect/decal/cleanable/blood/tracks{ + desc = "Your instincts say you shouldn't be following these."; + icon_state = "ltrails_2" }, -/turf/open/floor/carpet, -/area/awaymission/moonoutpost19/arrivals) -"ko" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/obj/machinery/camera/directional/west{ + c_tag = "Dormitories"; + network = list("mo19") }, -/area/awaymission/moonoutpost19/arrivals) -"kp" = ( -/obj/structure/table, -/obj/item/kitchen/rollingpin, -/obj/item/knife/kitchen, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/turf/open/floor/iron{ + dir = 8; + icon_state = "damaged1"; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) -"kq" = ( -/obj/structure/table, -/obj/item/book/manual/chef_recipes{ - pixel_x = 2; - pixel_y = 6 +"IA" = ( +/turf/open/floor/wood, +/area/awaymission/moonoutpost19/syndicate) +"IF" = ( +/obj/structure/shuttle/engine/propulsion/burst/left{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, /area/awaymission/moonoutpost19/arrivals) -"kr" = ( -/obj/effect/decal/cleanable/food/egg_smudge, -/turf/open/floor/iron/cafeteria{ - dir = 5 +"IN" = ( +/obj/structure/alien/weeds, +/obj/structure/alien/egg, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/area/awaymission/moonoutpost19/arrivals) -"ks" = ( -/obj/machinery/light{ +/area/awaymission/moonoutpost19/hive) +"IR" = ( +/obj/machinery/light/broken{ dir = 4 }, -/obj/machinery/processor, /obj/machinery/airalarm/unlocked{ dir = 4; pixel_x = 23; req_access = null }, -/turf/open/floor/iron/cafeteria{ +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"IW" = ( +/obj/structure/rack, +/obj/effect/turf_decal/stripes/line{ dir = 5 }, -/area/awaymission/moonoutpost19/arrivals) -"kt" = ( -/obj/structure/closet/crate/bin, -/obj/item/trash/candy, -/obj/item/trash/can, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white/corner, -/area/awaymission/moonoutpost19/arrivals) -"ku" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white/corner, -/area/awaymission/moonoutpost19/arrivals) -"kv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white/corner, -/area/awaymission/moonoutpost19/arrivals) -"kw" = ( -/obj/machinery/light/small, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Arrivals North"; - network = list("mo19") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white/corner, -/area/awaymission/moonoutpost19/arrivals) -"kx" = ( -/obj/structure/sign/poster/official/nanotrasen_logo{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white/corner, -/area/awaymission/moonoutpost19/arrivals) -"ky" = ( -/turf/open/floor/iron/white/corner{ - dir = 8 - }, -/area/awaymission/moonoutpost19/arrivals) -"kz" = ( -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"kA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor/closed{ - opacity = 0 - }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"kB" = ( +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"IZ" = ( +/obj/structure/table, +/obj/item/toy/cards/deck, /turf/open/floor/iron{ dir = 8; - icon_state = "damaged2"; + icon_state = "damaged1"; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) -"kC" = ( -/turf/open/floor/plating{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" +"Jd" = ( +/obj/structure/closet/l3closet, +/obj/machinery/light/small/broken, +/turf/open/floor/iron/white/side{ + dir = 1 }, +/area/awaymission/moonoutpost19/research) +"Je" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plating, /area/awaymission/moonoutpost19/arrivals) -"kD" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/remains/human{ - desc = "They look like human remains. The skeleton is curled up in fetal position with the hands placed near the throat." +"Jg" = ( +/obj/structure/cable{ + icon_state = "0-2" }, -/turf/open/floor/iron{ - dir = 8; - icon_state = "damaged4"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/obj/machinery/power/smes{ + charge = 1.5e+006; + input_level = 10000; + inputting = 0; + output_level = 15000 + }, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/research) +"Ji" = ( +/obj/machinery/newscaster{ + pixel_x = 30 }, +/turf/open/floor/carpet, /area/awaymission/moonoutpost19/arrivals) -"kE" = ( +"Jn" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, -/area/awaymission/moonoutpost19/arrivals) -"kF" = ( -/turf/open/floor/iron{ - dir = 8; - icon_state = "damaged5"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/area/awaymission/moonoutpost19/syndicate) +"Jq" = ( +/obj/machinery/light{ + dir = 4 }, -/area/awaymission/moonoutpost19/arrivals) -"kG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/syndicate) +"Ju" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) -"kH" = ( +"JC" = ( /obj/machinery/door/firedoor/closed{ opacity = 0 }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"kI" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"kJ" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 +/obj/effect/turf_decal/tile/neutral{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"kN" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 +"JE" = ( +/obj/structure/chair{ + dir = 1 }, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/research) +"JM" = ( +/obj/structure/table, /turf/open/floor/iron/white/corner{ dir = 1 }, -/area/awaymission/moonoutpost19/arrivals) -"kO" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, +/area/awaymission/moonoutpost19/research) +"JO" = ( +/obj/machinery/light/small, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"kP" = ( +"JQ" = ( /obj/item/stack/rods, /obj/structure/grille/broken, /obj/item/stack/rods, @@ -3840,779 +3829,552 @@ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, /area/awaymission/moonoutpost19/arrivals) -"kR" = ( -/obj/machinery/door/firedoor/closed{ - opacity = 0 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"kS" = ( -/obj/machinery/door/firedoor/closed{ - opacity = 0 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"kT" = ( -/obj/machinery/button/door{ - id = "awaydorm1"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_x = -25; - specialfunctions = 4 +"JU" = ( +/obj/structure/cable{ + icon_state = "0-2" }, -/turf/open/floor/carpet, -/area/awaymission/moonoutpost19/arrivals) -"kU" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ +/obj/machinery/power/apc/highcap/fifteen_k{ + dir = 1; locked = 0; - req_access_txt = "201" - }, -/obj/item/clothing/under/suit/navy, -/turf/open/floor/carpet, -/area/awaymission/moonoutpost19/arrivals) -"kV" = ( -/obj/machinery/door/airlock/maintenance, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/arrivals) -"lb" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Kitchen"; - network = list("mo19") - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/awaymission/moonoutpost19/arrivals) -"lc" = ( -/turf/closed/wall/mineral/titanium/interior, -/area/awaymission/moonoutpost19/arrivals) -"ld" = ( -/turf/closed/wall/mineral/titanium, -/area/awaymission/moonoutpost19/arrivals) -"lf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/awaymission/moonoutpost19/arrivals) -"lg" = ( -/obj/item/cigbutt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"lh" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"li" = ( -/obj/item/stack/rods, -/obj/item/shard{ - icon_state = "small" - }, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/main) -"lj" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/arrivals) -"lk" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 - }, -/area/awaymission/moonoutpost19/arrivals) -"lm" = ( -/obj/machinery/door/airlock{ - id_tag = "awaydorm1"; - name = "Dorm 1" - }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"ln" = ( -/turf/open/floor/carpet, -/area/awaymission/moonoutpost19/arrivals) -"lo" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/chair/wood/normal, -/obj/machinery/airalarm/unlocked{ - dir = 4; - pixel_x = 23; - req_access = null - }, -/turf/open/floor/carpet, -/area/awaymission/moonoutpost19/arrivals) -"lt" = ( -/obj/machinery/button/door{ - id = "awaykitchen"; - name = "Kitchen Shutters Control"; - pixel_x = -25 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/awaymission/moonoutpost19/arrivals) -"lu" = ( -/obj/machinery/door/airlock{ - name = "Kitchen Cold Room"; - req_access_txt = "201" - }, -/turf/open/floor/iron/showroomfloor, -/area/awaymission/moonoutpost19/arrivals) -"lv" = ( -/turf/open/floor/iron/showroomfloor{ - initial_temperature = 273.15 - }, -/area/awaymission/moonoutpost19/arrivals) -"lw" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/turf/open/floor/iron/showroomfloor{ - initial_temperature = 273.15 - }, -/area/awaymission/moonoutpost19/arrivals) -"lx" = ( -/obj/structure/closet/crate{ - desc = "It's a storage unit for kitchen clothes and equipment."; - name = "Kitchen Crate" - }, -/obj/item/storage/box/mousetraps, -/obj/item/clothing/under/suit/waiter, -/turf/open/floor/iron/showroomfloor{ - initial_temperature = 273.15 - }, -/area/awaymission/moonoutpost19/arrivals) -"ly" = ( -/obj/machinery/airalarm/directional/north{ + name = "Worn-out APC"; pixel_y = 23; req_access = null; - req_access_txt = "150" + start_charge = 100 }, -/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"JY" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/chair/stool, /turf/open/floor/iron, /area/awaymission/moonoutpost19/syndicate) -"lA" = ( -/obj/effect/spawner/structure/window/reinforced, +"JZ" = ( +/obj/machinery/door/airlock/maintenance, /turf/open/floor/plating, /area/awaymission/moonoutpost19/arrivals) -"lD" = ( -/obj/structure/shuttle/engine/heater{ - dir = 4 +"Kb" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + locked = 0; + req_access_txt = "201" }, -/obj/structure/window/reinforced{ +/obj/item/clothing/under/suit/navy, +/turf/open/floor/carpet, +/area/awaymission/moonoutpost19/arrivals) +"Kd" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 }, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/syndicate) +"Ke" = ( +/obj/structure/chair/stool, /turf/open/floor/plating{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 + broken = 1 }, -/area/awaymission/moonoutpost19/arrivals) -"lE" = ( -/obj/structure/shuttle/engine/propulsion/burst/right{ - dir = 4 +/area/awaymission/moonoutpost19/syndicate) +"Kf" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access_txt = "150" }, -/turf/open/floor/plating/asteroid{ +/obj/item/ammo_box/magazine/m10mm{ + icon_state = "9x19p-8" + }, +/obj/item/ammo_box/magazine/m10mm{ + icon_state = "9x19p-8" + }, +/obj/item/suppressor, +/turf/open/floor/wood{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/area/awaymission/moonoutpost19/arrivals) -"lF" = ( -/obj/effect/turf_decal/stripes/line{ +/area/awaymission/moonoutpost19/syndicate) +"Kg" = ( +/obj/machinery/gateway{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/syndicate) +"Kr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 8 }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"lG" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"lH" = ( -/obj/structure/table, -/obj/item/storage/fancy/cigarettes/dromedaryco, +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/syndicate) +"Ks" = ( +/obj/structure/table/reinforced, +/obj/structure/alien/weeds, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the contents of the xenobiology containment pen."; + dir = 8; + name = "xenobiology monitor"; + network = list("mo19x") + }, /obj/effect/turf_decal/stripes/line{ - dir = 6 + dir = 8 }, /turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"lI" = ( -/obj/effect/turf_decal/tile/neutral{ +/area/awaymission/moonoutpost19/research) +"Kt" = ( +/obj/machinery/light/small{ dir = 8 }, -/turf/open/floor/iron{ +/turf/open/floor/plating{ + icon_plating = "asteroidplating"; + icon_state = "asteroidplating"; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) -"lJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 - }, +"KK" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"lK" = ( +"KL" = ( /obj/structure/bed, /obj/item/bedsheet, /turf/open/floor/carpet, /area/awaymission/moonoutpost19/arrivals) -"lL" = ( -/obj/structure/table/wood, -/obj/item/lighter, -/obj/machinery/newscaster{ - pixel_x = 30 +"KM" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/carpet, -/area/awaymission/moonoutpost19/arrivals) -"lM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/arrivals) -"lN" = ( -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/arrivals) -"lO" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/arrivals) -"lQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Kitchen"; - req_access_txt = "201" +/turf/open/floor/iron{ + dir = 8; + icon_state = "damaged1"; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/turf/open/floor/iron/dark, -/area/awaymission/moonoutpost19/arrivals) -"lR" = ( -/turf/open/floor/iron/dark, -/area/awaymission/moonoutpost19/arrivals) -"lS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/awaymission/moonoutpost19/arrivals) -"lT" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/hooded/chaplain_hoodie, -/turf/open/floor/iron/dark, /area/awaymission/moonoutpost19/arrivals) -"lU" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/remains/human{ - desc = "They look like human remains. The skeleton is sitting upright with its legs tucked in and hands still holding onto its arms." +"KR" = ( +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/item/gun/ballistic/shotgun/sc_pump, -/turf/open/floor/iron/showroomfloor{ - initial_temperature = 273.15 +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + desc = "A heavy duty blast door that opens mechanically. This one has been applied with an acid-proof coating."; + id = "Awaylab"; + name = "Acid-Proof Containment Chamber" }, -/area/awaymission/moonoutpost19/arrivals) -"lV" = ( -/obj/structure/table, -/obj/item/paper/fluff/awaymissions/moonoutpost19/log/ivan, -/turf/open/floor/plating{ - broken = 1 +/obj/item/stack/cable_coil/cut/red{ + amount = 1 }, +/turf/open/floor/plating, /area/awaymission/moonoutpost19/research) -"lW" = ( -/obj/structure/table, -/obj/item/storage/lockbox, -/turf/open/floor/mineral/titanium/blue, -/area/awaymission/moonoutpost19/arrivals) -"lX" = ( -/obj/structure/table, -/obj/item/radio/off, -/turf/open/floor/mineral/titanium/yellow, -/area/awaymission/moonoutpost19/arrivals) -"lZ" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -32 - }, -/turf/open/floor/mineral/titanium/yellow, -/area/awaymission/moonoutpost19/arrivals) -"ma" = ( -/obj/structure/chair{ - dir = 8 +"KT" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/light/small{ - dir = 1 +/obj/machinery/door/firedoor/closed{ + opacity = 0 }, -/turf/open/floor/mineral/titanium/blue, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"mb" = ( -/turf/open/floor/mineral/titanium/blue, +"KY" = ( +/obj/structure/dresser, +/obj/item/paper/fluff/awaymissions/moonoutpost19/goodbye_note, +/turf/open/floor/carpet, /area/awaymission/moonoutpost19/arrivals) -"mc" = ( -/obj/structure/chair{ - dir = 8 +"La" = ( +/obj/effect/decal/cleanable/blood/tracks{ + desc = "Your instincts say you shouldn't be following these."; + dir = 8; + icon_state = "ltrails_1" }, -/turf/open/floor/mineral/titanium/blue, -/area/awaymission/moonoutpost19/arrivals) -"md" = ( -/obj/machinery/newscaster{ - pixel_y = 30 +/obj/item/mining_scanner, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/obj/machinery/light/small{ - dir = 1 +/area/awaymission/moonoutpost19/main) +"Lc" = ( +/obj/machinery/door/airlock{ + id_tag = "awaydorm2"; + name = "Dorm 2" }, -/turf/open/floor/mineral/titanium/blue, -/area/awaymission/moonoutpost19/arrivals) -"me" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/mineral/titanium/blue, +/obj/effect/decal/cleanable/blood/tracks{ + desc = "Your instincts say you shouldn't be following these."; + dir = 8; + icon_state = "ltrails_1" + }, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"mf" = ( -/obj/structure/shuttle/engine/propulsion/burst/left{ - dir = 4 +"Ld" = ( +/obj/structure/chair/wood/normal, +/obj/machinery/airalarm/directional/west{ + pixel_x = -23; + req_access = null; + req_access_txt = "150" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, +/area/awaymission/moonoutpost19/syndicate) +"Lh" = ( +/obj/structure/alien/weeds, +/obj/structure/alien/egg/burst, +/obj/effect/decal/cleanable/blood, /turf/open/floor/plating/asteroid{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, +/area/awaymission/moonoutpost19/hive) +"Li" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, /area/awaymission/moonoutpost19/arrivals) -"mg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 +"Lj" = ( +/obj/machinery/door/poddoor/preopen{ + desc = "A heavy duty blast door that opens mechanically. This one has been applied with an acid-proof coating."; + id = "Awaylab"; + name = "Acid-Proof Containment Chamber" }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"mh" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/obj/machinery/atmospherics/pipe/simple/general/visible{ + desc = "A one meter section of pipe. This one has been applied with an acid-proof coating."; + dir = 4; + name = "Acid-Proof Pipe" }, -/area/awaymission/moonoutpost19/arrivals) -"mi" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/decal/cleanable/dirt, -/obj/structure/window{ - dir = 1 +/obj/item/stack/rods, +/obj/item/stack/cable_coil{ + amount = 5 }, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/arrivals) -"ml" = ( -/obj/structure/table, -/obj/item/storage/backpack/satchel/leather/withwallet, -/turf/open/floor/iron/dark, -/area/awaymission/moonoutpost19/arrivals) -"mm" = ( -/obj/structure/closet/secure_closet{ - locked = 0; - name = "kitchen Cabinet"; - req_access_txt = "201" +/obj/item/shard{ + icon_state = "medium" }, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/sugar, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor{ - initial_temperature = 273.15 +/obj/structure/cable{ + icon_state = "1-2" }, -/area/awaymission/moonoutpost19/arrivals) -"mn" = ( -/obj/structure/closet/secure_closet/freezer{ - locked = 0; - name = "meat fridge"; - req_access_txt = "201" +/turf/open/floor/engine, +/area/awaymission/moonoutpost19/research) +"Ll" = ( +/obj/item/stack/ore/iron{ + pixel_x = -7; + pixel_y = -4 }, -/obj/item/food/meat/slab/monkey, -/obj/item/food/meat/slab/monkey, -/obj/item/food/meat/slab/monkey, -/obj/item/food/meat/slab/monkey, -/turf/open/floor/iron/showroomfloor{ - initial_temperature = 273.15 +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/area/awaymission/moonoutpost19/arrivals) -"mo" = ( -/obj/structure/closet/secure_closet/freezer{ - locked = 0; - name = "refrigerator"; +/area/awaymission/moonoutpost19/main) +"Ln" = ( +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/syndicate) +"Lp" = ( +/obj/machinery/vending/medical{ req_access_txt = "201" }, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/storage/fancy/egg_box, -/turf/open/floor/iron/showroomfloor{ - initial_temperature = 273.15 +/turf/open/floor/iron/white/side, +/area/awaymission/moonoutpost19/research) +"Lz" = ( +/turf/open/floor/iron{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/area/awaymission/moonoutpost19/arrivals) -"mp" = ( -/obj/structure/table, -/obj/item/storage/box/donkpockets, -/turf/open/floor/mineral/titanium/blue, -/area/awaymission/moonoutpost19/arrivals) -"mq" = ( -/obj/structure/chair{ - dir = 1 +/area/awaymission/moonoutpost19/syndicate) +"LA" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/light/small{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple{ dir = 4 }, -/turf/open/floor/mineral/titanium/yellow, -/area/awaymission/moonoutpost19/arrivals) -"mr" = ( -/turf/open/floor/mineral/titanium/yellow, -/area/awaymission/moonoutpost19/arrivals) -"ms" = ( -/obj/effect/landmark/awaystart, -/turf/open/floor/mineral/titanium/blue, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"mt" = ( -/obj/structure/chair{ +"LG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/blood/tracks{ + desc = "Your instincts say you shouldn't be following these."; + dir = 5; + icon_state = "ltrails_1" + }, +/obj/effect/turf_decal/tile/purple{ dir = 8 }, -/obj/effect/landmark/awaystart, -/turf/open/floor/mineral/titanium/blue, -/area/awaymission/moonoutpost19/arrivals) -"mu" = ( -/obj/machinery/light/small{ - dir = 4 +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"LZ" = ( +/obj/structure/alien/weeds, +/obj/effect/decal/cleanable/blood, +/mob/living/simple_animal/hostile/alien/drone{ + plants_off = 1 }, -/obj/structure/window/reinforced{ - dir = 1 +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/turf/open/floor/mineral/titanium/yellow, -/area/awaymission/moonoutpost19/arrivals) -"mv" = ( -/obj/structure/sign/warning/vacuum{ - desc = "A warning sign which reads 'HOSTILE ATMOSPHERE AHEAD'"; - name = "\improper HOSTILE ATMOSPHERE AHEAD" +/area/awaymission/moonoutpost19/hive) +"Mc" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "awaysyndie"; + name = "mining conveyor" }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/arrivals) -"mw" = ( -/obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ - dir = 4 + dir = 8 }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"mx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, -/area/awaymission/moonoutpost19/arrivals) -"my" = ( -/obj/structure/table/wood, -/obj/machinery/button/door{ - id = "awaydorm2"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_x = -25; - specialfunctions = 4 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/awaymission/moonoutpost19/arrivals) -"mz" = ( -/obj/structure/chair/wood/normal{ +/area/awaymission/moonoutpost19/syndicate) +"Mg" = ( +/obj/structure/chair/fancy/comfy{ + color = "#666666"; dir = 8 }, -/turf/open/floor/carpet, -/area/awaymission/moonoutpost19/arrivals) -"mA" = ( -/obj/structure/closet/emcloset, -/obj/structure/window, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/arrivals) -"mB" = ( -/obj/effect/spawner/randomarcade, -/turf/open/floor/iron/dark, -/area/awaymission/moonoutpost19/arrivals) -"mC" = ( -/obj/machinery/vending/cigarette, -/obj/structure/sign/poster/contraband/smoke{ - pixel_y = -32 - }, -/turf/open/floor/iron/dark, -/area/awaymission/moonoutpost19/arrivals) -"mD" = ( -/obj/machinery/light/small{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/structure/chair/fancy/comfy, -/turf/open/floor/iron/dark, +/turf/open/floor/iron{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 + }, /area/awaymission/moonoutpost19/arrivals) -"mE" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_x = -6; - pixel_y = 6 +"Mi" = ( +/obj/structure/alien/weeds/node, +/mob/living/simple_animal/hostile/alien/drone{ + plants_off = 1 }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 6; - pixel_y = 8 +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 3 +/area/awaymission/moonoutpost19/hive) +"Ml" = ( +/obj/structure/sign/warning/vacuum{ + desc = "A warning sign which reads 'HOSTILE ATMOSPHERE AHEAD'"; + name = "\improper HOSTILE ATMOSPHERE AHEAD"; + pixel_x = -32 }, -/turf/open/floor/iron/dark, -/area/awaymission/moonoutpost19/arrivals) -"mF" = ( -/obj/structure/chair/fancy/comfy, -/turf/open/floor/iron/dark, +/turf/open/floor/plating, /area/awaymission/moonoutpost19/arrivals) -"mG" = ( -/obj/machinery/computer/shuttle_flight{ +"Mo" = ( +/obj/machinery/airalarm/directional/east{ + pixel_x = 23; + req_access = null; + req_access_txt = "150" + }, +/obj/machinery/light/broken{ dir = 4 }, -/turf/open/floor/mineral/titanium/blue, -/area/awaymission/moonoutpost19/arrivals) -"mH" = ( -/obj/machinery/door/airlock/titanium{ - name = "Shuttle Cockpit" +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/turf/open/floor/mineral/titanium/yellow, -/area/awaymission/moonoutpost19/arrivals) -"mI" = ( -/obj/effect/landmark/awaystart, -/turf/open/floor/mineral/titanium/yellow, -/area/awaymission/moonoutpost19/arrivals) -"mJ" = ( -/obj/structure/sign/warning/vacuum{ - desc = "A beacon used by a teleporter."; - icon = 'icons/obj/device.dmi'; - icon_state = "beacon"; - name = "tracking beacon" +/area/awaymission/moonoutpost19/syndicate) +"Ms" = ( +/obj/structure/cable{ + icon_state = "2-4" }, -/obj/effect/landmark/awaystart, -/turf/open/floor/mineral/titanium/yellow, -/area/awaymission/moonoutpost19/arrivals) -"mK" = ( -/obj/machinery/door/airlock/titanium{ - name = "Shuttle Airlock" +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/research) +"Mx" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/research) +"Mz" = ( +/obj/structure/chair{ + dir = 1 }, -/turf/open/floor/mineral/titanium/blue, -/area/awaymission/moonoutpost19/arrivals) -"mL" = ( -/obj/machinery/door/airlock/external, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"MA" = ( +/obj/structure/toilet{ dir = 4 }, -/turf/open/floor/plating, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/iron/freezer, /area/awaymission/moonoutpost19/arrivals) -"mM" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ +"MJ" = ( +/obj/item/stack/rods, +/obj/item/shard, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" + }, +/area/awaymission/moonoutpost19/main) +"MK" = ( +/obj/machinery/light{ dir = 8 }, +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/syndicate) +"MT" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Post"; + req_access_txt = "201" + }, +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"MV" = ( +/obj/structure/grille/broken, +/obj/item/stack/rods, /turf/open/floor/plating, /area/awaymission/moonoutpost19/arrivals) -"mN" = ( +"MY" = ( /obj/machinery/light/small{ - dir = 4 + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/noticeboard{ +/obj/structure/table, +/obj/item/storage/box, +/obj/machinery/airalarm/unlocked{ dir = 8; - pixel_x = 32 - }, -/obj/item/paper/fluff/awaymissions/moonoutpost19/welcome, -/obj/machinery/camera/directional/east{ - c_tag = "Arrivals South"; - network = list("mo19") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 + pixel_x = -23; + req_access = null }, +/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"mO" = ( -/obj/machinery/light/small{ - dir = 8 +"Na" = ( +/obj/structure/table, +/obj/item/paper/fluff/awaymissions/moonoutpost19/log/ivan, +/turf/open/floor/plating{ + broken = 1 }, +/area/awaymission/moonoutpost19/research) +"Nb" = ( +/obj/structure/alien/weeds/node, /turf/open/floor/plating/asteroid{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/area/awaymission/moonoutpost19/arrivals) -"mP" = ( -/obj/machinery/light/small{ - dir = 8 +/area/awaymission/moonoutpost19/hive) +"Nc" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/item/radio/off, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/research) +"Nl" = ( +/obj/effect/decal/cleanable/oil, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/decal/cleanable/blood/tracks{ - desc = "Your instincts say you shouldn't be following these."; - dir = 9; - icon_state = "ltrails_1" +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/research) +"Nm" = ( +/obj/structure/closet/crate/bin, +/obj/item/clothing/gloves/color/latex, +/obj/item/trash/chips, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/broken{ + dir = 1 }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 +/turf/open/floor/iron/white/side, +/area/awaymission/moonoutpost19/research) +"Nn" = ( +/obj/structure/table, +/obj/item/newspaper, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"No" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "old sink"; + pixel_y = 28 }, -/turf/open/floor/iron{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/turf/open/floor/iron/showroomfloor{ + initial_temperature = 273.15 }, /area/awaymission/moonoutpost19/arrivals) -"mQ" = ( -/obj/effect/decal/cleanable/blood/tracks{ - desc = "Your instincts say you shouldn't be following these."; - dir = 8; - icon_state = "ltrails_1" +"Nq" = ( +/obj/structure/table, +/obj/item/storage/box/gloves, +/turf/open/floor/iron/white/corner{ + dir = 8 }, -/turf/open/floor/iron{ - dir = 8; - icon_state = "floorscorched2"; +/area/awaymission/moonoutpost19/research) +"Ns" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_plating = "asteroidplating"; + icon_state = "asteroidplating"; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) -"mR" = ( -/obj/machinery/door/airlock{ - id_tag = "awaydorm2"; - name = "Dorm 2" - }, -/obj/effect/decal/cleanable/blood/tracks{ - desc = "Your instincts say you shouldn't be following these."; - dir = 8; - icon_state = "ltrails_1" +"Nv" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/glass/rag{ + pixel_y = 5 }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"mS" = ( -/obj/effect/decal/cleanable/blood/tracks{ - desc = "Your instincts say you shouldn't be following these."; - dir = 5; - icon_state = "ltrails_1" +/obj/machinery/door/poddoor/shutters{ + id = "awaykitchen"; + name = "Serving Hatch" }, /turf/open/floor/carpet, /area/awaymission/moonoutpost19/arrivals) -"mT" = ( -/obj/machinery/light/small{ +"Nw" = ( +/obj/machinery/light{ dir = 4 }, -/obj/machinery/airalarm/unlocked{ - dir = 4; +/obj/machinery/airalarm/directional/east{ pixel_x = 23; - req_access = null - }, -/turf/open/floor/carpet, -/area/awaymission/moonoutpost19/arrivals) -"mU" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/arrivals) -"mV" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/pen, -/turf/open/floor/mineral/titanium/blue, -/area/awaymission/moonoutpost19/arrivals) -"mW" = ( -/obj/structure/chair, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/yellow, -/area/awaymission/moonoutpost19/arrivals) -"mY" = ( -/obj/machinery/light/small{ - dir = 4 + req_access = null; + req_access_txt = "150" }, -/obj/structure/window/reinforced, -/turf/open/floor/mineral/titanium/yellow, -/area/awaymission/moonoutpost19/arrivals) -"mZ" = ( -/obj/effect/decal/cleanable/blood/tracks{ - desc = "Your instincts say you shouldn't be following these."; - icon_state = "ltrails_1" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/syndicate) +"Nz" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/iron{ + amount = 12 }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/obj/structure/alien/weeds, +/obj/effect/turf_decal/bot{ + dir = 1 }, /turf/open/floor/iron{ + dir = 1; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, -/area/awaymission/moonoutpost19/arrivals) -"na" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/effect/decal/cleanable/blood, +/area/awaymission/moonoutpost19/syndicate) +"NE" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3 + }, +/obj/machinery/door/poddoor/shutters{ + id = "awaykitchen"; + name = "Serving Hatch" + }, /turf/open/floor/carpet, /area/awaymission/moonoutpost19/arrivals) -"nb" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ +"NG" = ( +/obj/structure/closet/secure_closet/freezer{ locked = 0; + name = "refrigerator"; req_access_txt = "201" }, -/obj/item/clothing/under/misc/assistantformal, -/turf/open/floor/carpet, -/area/awaymission/moonoutpost19/arrivals) -"nc" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/generic, -/obj/structure/window, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/arrivals) -"nf" = ( -/obj/structure/filingcabinet, -/turf/open/floor/mineral/titanium/blue, -/area/awaymission/moonoutpost19/arrivals) -"ng" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/open/floor/mineral/titanium/blue, -/area/awaymission/moonoutpost19/arrivals) -"nh" = ( -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/obj/machinery/light/small, -/turf/open/floor/mineral/titanium/blue, -/area/awaymission/moonoutpost19/arrivals) -"ni" = ( -/turf/open/floor/iron{ - dir = 8; - icon_state = "floorscorched2"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/storage/fancy/egg_box, +/turf/open/floor/iron/showroomfloor{ + initial_temperature = 273.15 }, /area/awaymission/moonoutpost19/arrivals) -"nj" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, +"NM" = ( /turf/open/floor/iron{ dir = 8; icon_state = "damaged2"; @@ -4620,487 +4382,581 @@ initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) -"nk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/candy, +"NQ" = ( +/obj/structure/grille/broken, +/obj/item/stack/rods, +/obj/item/stack/rods, +/obj/item/shard, /turf/open/floor/plating, +/area/awaymission/moonoutpost19/research) +"NT" = ( +/obj/machinery/airalarm/unlocked{ + pixel_y = 23; + req_access = null; + dir = 1 + }, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"nl" = ( -/obj/item/cigbutt, -/turf/open/floor/plating, +"NY" = ( +/obj/effect/decal/cleanable/xenoblood, +/obj/effect/decal/cleanable/xenoblood/xgibs, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"nm" = ( -/obj/structure/sign/warning/vacuum{ - desc = "A warning sign which reads 'HOSTILE ATMOSPHERE AHEAD'"; - name = "\improper HOSTILE ATMOSPHERE AHEAD"; - pixel_y = 32 +"NZ" = ( +/obj/structure/cable{ + icon_state = "1-2" }, +/turf/open/floor/plating{ + broken = 1 + }, +/area/awaymission/moonoutpost19/research) +"Oa" = ( +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/generic, +/obj/structure/window, /turf/open/floor/plating, /area/awaymission/moonoutpost19/arrivals) -"no" = ( +"Od" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 + }, +/area/awaymission/moonoutpost19/syndicate) +"Og" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/research) +"Om" = ( +/obj/structure/closet/l3closet, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/awaymission/moonoutpost19/research) +"Op" = ( +/obj/structure/closet/l3closet/scientist, +/obj/structure/window/reinforced, +/obj/structure/alien/weeds, /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"np" = ( -/obj/machinery/light/small{ - dir = 4 +/area/awaymission/moonoutpost19/research) +"Or" = ( +/obj/structure/alien/weeds, +/obj/structure/alien/resin/wall, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, +/area/awaymission/moonoutpost19/hive) +"Os" = ( +/obj/structure/alien/weeds/node, +/mob/living/simple_animal/hostile/alien, /turf/open/floor/plating/asteroid{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/area/awaymission/moonoutpost19/arrivals) -"nq" = ( -/obj/effect/decal/cleanable/blood/tracks{ - desc = "Your instincts say you shouldn't be following these."; - icon_state = "ltrails_2" +/area/awaymission/moonoutpost19/hive) +"OD" = ( +/obj/structure/sink{ + pixel_y = 28 }, -/obj/machinery/camera/directional/west{ - c_tag = "Dormitories"; - network = list("mo19") +/obj/machinery/light/small{ + dir = 8 }, -/turf/open/floor/iron{ - dir = 8; - icon_state = "damaged1"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, +/area/awaymission/moonoutpost19/syndicate) +"OF" = ( +/obj/machinery/gateway{ + dir = 1 }, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/syndicate) +"OJ" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + locked = 0; + req_access_txt = "201" + }, +/obj/item/clothing/under/misc/assistantformal, +/turf/open/floor/carpet, /area/awaymission/moonoutpost19/arrivals) -"ns" = ( -/obj/structure/grille/broken, -/obj/item/stack/rods, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/arrivals) -"nt" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/arrivals) -"nu" = ( -/obj/machinery/light/small{ - dir = 8 +"OK" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 }, /turf/open/floor/plating{ - icon_plating = "asteroidplating"; - icon_state = "asteroidplating"; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, +/area/awaymission/moonoutpost19/syndicate) +"OL" = ( +/obj/structure/table/wood, +/obj/machinery/button/door{ + id = "awaydorm2"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_x = -25; + specialfunctions = 4 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/carpet, /area/awaymission/moonoutpost19/arrivals) -"ny" = ( -/obj/machinery/airalarm/unlocked{ - dir = 4; - pixel_x = 23; - req_access = null +"OO" = ( +/obj/structure/chair, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"OQ" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock{ + density = 0; + icon_state = "open"; + id_tag = "awaydorm4"; + name = "Dorm 1"; + opacity = 0; + set_obj_flags = "EMAGGED" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" + }, +/area/awaymission/moonoutpost19/syndicate) +"OR" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/external{ + density = 0; + icon_state = "open"; + opacity = 0; + req_access_txt = "150"; + set_obj_flags = "EMAGGED" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" + }, +/area/awaymission/moonoutpost19/syndicate) +"OS" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron{ + dir = 8; + icon_state = "damaged3"; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) -"nz" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "201" - }, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/arrivals) -"nA" = ( -/obj/machinery/light/small{ +"OU" = ( +/turf/open/floor/iron/white/corner{ dir = 8 }, -/turf/open/floor/plating, /area/awaymission/moonoutpost19/arrivals) -"nB" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, +"OW" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" + }, +/turf/open/floor/iron/freezer, /area/awaymission/moonoutpost19/arrivals) -"nC" = ( -/obj/item/stack/rods, -/obj/item/shard{ - icon_state = "small" +"Pa" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 }, -/obj/effect/decal/cleanable/blood/tracks{ - desc = "Your instincts say you shouldn't be following these."; - dir = 9; - icon_state = "ltrails_1" +/obj/item/multitool, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 }, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"Pd" = ( +/obj/structure/alien/weeds, +/obj/structure/alien/egg/burst, +/obj/effect/decal/cleanable/blood/gibs, /turf/open/floor/plating/asteroid{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/area/awaymission/moonoutpost19/main) -"nF" = ( -/obj/effect/decal/cleanable/blood/tracks{ - desc = "Your instincts say you shouldn't be following these."; - dir = 8; - icon_state = "ltrails_1" +/area/awaymission/moonoutpost19/hive) +"Pf" = ( +/obj/machinery/light/small{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 32 }, -/area/awaymission/moonoutpost19/arrivals) -"nG" = ( -/obj/effect/decal/cleanable/blood/tracks{ - desc = "Your instincts say you shouldn't be following these."; - dir = 6; - icon_state = "ltrails_1" +/obj/item/paper/fluff/awaymissions/moonoutpost19/welcome, +/obj/machinery/camera/directional/east{ + c_tag = "Arrivals South"; + network = list("mo19") }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"nH" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/machinery/button/door{ - id = "awaydorm3"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_x = -25; - specialfunctions = 4 - }, -/obj/effect/decal/remains/human{ - desc = "They look like human remains. The skeleton is laid out on its side and there seems to have been no sign of struggle." +"Pl" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" }, -/turf/open/floor/carpet, -/area/awaymission/moonoutpost19/arrivals) -"nI" = ( -/obj/structure/dresser, -/obj/item/paper/fluff/awaymissions/moonoutpost19/goodbye_note, -/turf/open/floor/carpet, +/turf/open/floor/iron/freezer, /area/awaymission/moonoutpost19/arrivals) -"nK" = ( -/obj/structure/sign/warning/vacuum{ - desc = "A warning sign which reads 'HOSTILE ATMOSPHERE AHEAD'"; - name = "\improper HOSTILE ATMOSPHERE AHEAD"; - pixel_x = -32 +"Pm" = ( +/obj/machinery/light/small, +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/arrivals) -"nL" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/open/floor/plating, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"nM" = ( -/obj/structure/chair/fancy/comfy{ - color = "#666666"; - dir = 8 +"Pn" = ( +/obj/machinery/mineral/processing_unit{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/turf/open/floor/iron{ +/turf/open/floor/plating{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, -/area/awaymission/moonoutpost19/arrivals) -"nO" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock{ - id_tag = "awaydorm3"; - name = "Dorm 3" +/area/awaymission/moonoutpost19/syndicate) +"Po" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small, +/obj/effect/turf_decal/stripes/line{ + dir = 6 }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"nP" = ( -/obj/item/pen, -/obj/item/storage/pill_bottle{ - pixel_y = 6 +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"Ps" = ( +/obj/structure/table/wood, +/obj/item/lighter, +/obj/machinery/newscaster{ + pixel_x = 30 }, /turf/open/floor/carpet, /area/awaymission/moonoutpost19/arrivals) -"nQ" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/arrivals) -"nR" = ( -/obj/structure/closet, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/arrivals) -"nS" = ( -/obj/structure/table, -/obj/item/toy/cards/deck, +"Pt" = ( +/obj/machinery/vending/snack, +/obj/structure/sign/poster/contraband/eat{ + pixel_y = 32 + }, /turf/open/floor/iron{ dir = 8; - icon_state = "damaged1"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 + icon_state = "floorscorched2" }, /area/awaymission/moonoutpost19/arrivals) -"nT" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - locked = 0; - req_access_txt = "201" +"Pw" = ( +/obj/structure/table, +/turf/open/floor/iron/white/side{ + dir = 8 }, -/obj/item/clothing/under/suit/burgundy, -/turf/open/floor/carpet, -/area/awaymission/moonoutpost19/arrivals) -"nU" = ( -/obj/machinery/newscaster{ - pixel_x = 30 +/area/awaymission/moonoutpost19/research) +"PB" = ( +/obj/item/stack/rods, +/obj/item/shard{ + icon_state = "small" }, -/turf/open/floor/carpet, -/area/awaymission/moonoutpost19/arrivals) -"nV" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/structure/window/reinforced, +/obj/effect/decal/cleanable/blood/tracks{ + desc = "Your instincts say you shouldn't be following these."; + dir = 9; + icon_state = "ltrails_1" + }, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" + }, +/area/awaymission/moonoutpost19/main) +"PD" = ( +/obj/structure/grille, /turf/open/floor/plating, /area/awaymission/moonoutpost19/arrivals) -"nW" = ( -/obj/machinery/light/small{ +"PG" = ( +/obj/structure/table/optable, +/obj/structure/alien/weeds, +/turf/open/floor/iron/white/side{ dir = 1 }, -/turf/open/floor/plating{ - icon_plating = "asteroidplating"; - icon_state = "asteroidplating"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/area/awaymission/moonoutpost19/research) +"PH" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -32 }, -/area/awaymission/moonoutpost19/arrivals) -"nX" = ( -/obj/structure/chair/fancy/comfy{ - color = "#666666"; +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 8 }, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/research) +"PI" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/remains/human{ + desc = "They look like human remains. The skeleton is curled up in fetal position with the hands placed near the throat." + }, /turf/open/floor/iron{ dir = 8; - icon_state = "floorscorched2"; + icon_state = "damaged4"; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) -"nY" = ( -/obj/machinery/light/small{ - dir = 4 +"PK" = ( +/obj/effect/decal/cleanable/blood/tracks{ + desc = "Your instincts say you shouldn't be following these."; + dir = 6; + icon_state = "ltrails_1" }, -/obj/effect/decal/cleanable/generic, -/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) -"nZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_plating = "asteroidplating"; - icon_state = "asteroidplating"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 - }, -/area/awaymission/moonoutpost19/main) -"oa" = ( -/obj/structure/chair/fancy/comfy{ - color = "#666666" - }, -/turf/open/floor/plating{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/arrivals) -"oc" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_plating = "asteroidplating"; - icon_state = "asteroidplating"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 - }, -/area/awaymission/moonoutpost19/main) -"od" = ( -/obj/item/shard{ - icon_state = "small" - }, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" - }, -/area/awaymission/moonoutpost19/main) -"oe" = ( -/obj/item/trash/candy, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" +"PP" = ( +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + desc = "A heavy duty blast door that opens mechanically. This one has been applied with an acid-proof coating."; + id = "Awaylab"; + name = "Acid-Proof Containment Chamber" }, -/area/awaymission/moonoutpost19/main) -"oT" = ( -/obj/structure/closet/secure_closet{ - icon_state = "science"; - locked = 0; - name = "scientist's locker"; - req_access_txt = "201" +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/item/clothing/suit/toggle/labcoat, -/turf/open/floor/iron, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, /area/awaymission/moonoutpost19/research) -"oU" = ( -/obj/structure/window/reinforced, -/obj/structure/closet/secure_closet{ - icon_state = "science"; - name = "scientist's locker"; - req_access_txt = "201" +"PQ" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/obj/item/clothing/suit/toggle/labcoat, -/obj/item/tank/internals/air, -/obj/item/clothing/mask/gas, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/research) -"pg" = ( -/obj/item/radio/off, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/structure/sign/poster/official/safety_report{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 +/obj/machinery/camera/directional/east{ + c_tag = "Bar"; + network = list("mo19") }, +/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, -/area/awaymission/moonoutpost19/research) -"pM" = ( +/area/awaymission/moonoutpost19/arrivals) +"PS" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/syndicate) +"PU" = ( /obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/awaymission/moonoutpost19/syndicate) -"qb" = ( -/obj/machinery/airalarm/directional/east{ - pixel_x = 23; - req_access = null; - req_access_txt = "150" - }, -/obj/machinery/light/broken{ - dir = 4 +"PV" = ( +/obj/machinery/gateway{ + dir = 8 }, -/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/syndicate) +"PX" = ( +/obj/structure/alien/weeds, +/obj/effect/turf_decal/tile/red/anticorner/contrasted, /turf/open/floor/iron{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) -"ql" = ( +"PY" = ( /obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/research) -"qo" = ( -/obj/machinery/light/small, +/obj/item/cigbutt, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"qv" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating{ - broken = 1 - }, +"PZ" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/detective, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"qw" = ( -/turf/open/floor/plating{ - broken = 1 +"Qc" = ( +/obj/structure/sink{ + pixel_y = 28 }, -/area/awaymission/moonoutpost19/arrivals) -"qI" = ( -/obj/machinery/gateway{ +/obj/machinery/light/small{ dir = 8 }, +/turf/open/floor/iron/freezer, +/area/awaymission/moonoutpost19/research) +"Qf" = ( +/obj/machinery/gateway{ + dir = 5 + }, /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron/dark, /area/awaymission/moonoutpost19/syndicate) -"rd" = ( -/obj/structure/filingcabinet, -/obj/item/paper/fluff/awaymissions/moonoutpost19/log/kenneth, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ +"Qr" = ( +/obj/machinery/computer/operating{ + dir = 8 + }, +/obj/structure/alien/weeds, +/turf/open/floor/iron/white/side{ dir = 1 }, -/turf/open/floor/iron, /area/awaymission/moonoutpost19/research) -"rY" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"sb" = ( -/obj/machinery/button/door{ - id = "Awaybiohazard"; - name = "Biohazard Shutter Control"; - pixel_x = -25; - req_access_txt = "201" +"Qx" = ( +/obj/structure/grille/broken, +/obj/item/stack/rods, +/obj/item/stack/rods, +/obj/item/shard{ + icon_state = "medium" }, -/obj/machinery/light/small{ - dir = 8 +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/research) +"QK" = ( +/obj/effect/decal/cleanable/robot_debris, +/obj/effect/decal/cleanable/oil, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" }, -/obj/machinery/computer/security{ - desc = "Used to access the various cameras on the outpost."; - dir = 4; - network = list("mo19r","mo19") +/obj/item/healthanalyzer{ + pixel_x = 6; + pixel_y = -5 }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 +/obj/item/assembly/prox_sensor{ + pixel_x = -5; + pixel_y = -2 }, -/turf/open/floor/iron, +/obj/item/bodypart/l_arm/robot, +/turf/open/floor/iron/white, /area/awaymission/moonoutpost19/research) -"so" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/east{ - c_tag = "Bar"; - network = list("mo19") - }, +"QN" = ( +/obj/structure/table, +/obj/item/trash/raisins, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"sQ" = ( -/obj/machinery/power/port_gen/pacman/super{ - name = "S.U.P.E.R.P.A.C.M.A.N.-type portable generator" +"QQ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, +/area/awaymission/moonoutpost19/arrivals) +"QW" = ( /obj/structure/cable{ - icon_state = "0-2" + icon_state = "1-4" }, /turf/open/floor/plating{ broken = 1 }, /area/awaymission/moonoutpost19/research) -"tf" = ( -/obj/structure/cable{ - icon_state = "4-8" +"QX" = ( +/obj/structure/closet/secure_closet{ + locked = 0; + name = "kitchen Cabinet"; + req_access_txt = "201" }, -/turf/open/floor/plating{ - burnt = 1 +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/showroomfloor{ + initial_temperature = 273.15 + }, +/area/awaymission/moonoutpost19/arrivals) +"Rb" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/awaymission/moonoutpost19/syndicate) +"Rd" = ( +/obj/item/storage/bag/ore, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, +/area/awaymission/moonoutpost19/main) +"Re" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/airalarm/directional/north{ + pixel_y = 23; + req_access = null; + req_access_txt = "150" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/syndicate) +"Rf" = ( +/turf/open/floor/iron, /area/awaymission/moonoutpost19/research) -"tU" = ( +"Rj" = ( +/obj/structure/chair/stool, +/turf/open/floor/carpet, +/area/awaymission/moonoutpost19/arrivals) +"Rm" = ( /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plating{ - broken = 1 +/turf/open/floor/iron{ + dir = 8; + icon_state = "floorscorched1"; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 + }, +/area/awaymission/moonoutpost19/arrivals) +"Rn" = ( +/obj/structure/closet/secure_closet{ + icon_state = "sec"; + name = "security officer's locker"; + req_access_txt = "201" + }, +/obj/item/clothing/suit/armor/vest, +/obj/item/reagent_containers/peppercloud_deployer, +/obj/item/grenade/flashbang, +/obj/item/storage/belt/security, +/obj/item/reagent_containers/food/drinks/beer{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/machinery/airalarm/unlocked{ + pixel_y = 23; + req_access = null; + dir = 1 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 }, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/research) -"uI" = ( -/obj/item/kirbyplants{ - desc = "A plastic potted plant."; - pixel_y = 3 +"Ro" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_plating = "asteroidplating"; + icon_state = "asteroidplating"; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ +/area/awaymission/moonoutpost19/main) +"Rr" = ( +/obj/effect/turf_decal/tile/neutral{ dir = 8 }, /turf/open/floor/iron{ @@ -5108,56 +4964,103 @@ initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) -"vq" = ( +"Ru" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 - }, -/area/awaymission/moonoutpost19/syndicate) -"vM" = ( -/obj/structure/closet/crate/bin, -/obj/machinery/light/small{ - dir = 8 +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/obj/item/trash/cheesie, -/obj/item/trash/can, -/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"vN" = ( +"Rv" = ( +/obj/machinery/light/small, +/obj/structure/closet/toolcloset, +/obj/item/clothing/gloves/color/yellow, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/research) +"Rw" = ( /obj/effect/decal/cleanable/blood/tracks{ desc = "Your instincts say you shouldn't be following these."; dir = 8; - icon_state = "ltrails_2" + icon_state = "ltrails_1" }, -/turf/open/floor/plating{ - broken = 1; +/turf/open/floor/iron{ + dir = 8; + icon_state = "floorscorched2"; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) -"vV" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ +"Rx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 4 }, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"RC" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/port_gen/pacman/super{ + name = "S.U.P.E.R.P.A.C.M.A.N.-type portable generator" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/syndicate) +"RH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/candy, /turf/open/floor/plating, /area/awaymission/moonoutpost19/arrivals) -"wp" = ( -/obj/item/cigbutt, +"RU" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"wP" = ( -/obj/machinery/gateway{ - dir = 10 +"Sb" = ( +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/research) +"Sd" = ( +/obj/structure/rack, +/obj/item/paicard{ + pixel_x = 4 }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron/dark, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"Sl" = ( +/obj/structure/closet/crate/bin, +/obj/item/trash/syndi_cakes, +/obj/item/trash/sosjerky, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/syndicate) -"wX" = ( +"Sm" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "201" + }, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/arrivals) +"Sq" = ( +/obj/structure/table, +/obj/item/storage/firstaid/fire, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 28 + }, +/turf/open/floor/iron/white/side{ + dir = 8 + }, +/area/awaymission/moonoutpost19/research) +"St" = ( +/obj/item/stack/rods, +/obj/item/shard{ + icon_state = "small" + }, +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"Sv" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating{ broken = 1; @@ -5165,197 +5068,228 @@ initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) -"xg" = ( -/obj/item/cigbutt, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/syndicate) -"xG" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"xH" = ( -/obj/structure/chair{ +"Sz" = ( +/obj/machinery/shower{ dir = 1 }, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, +/turf/open/floor/iron/freezer, /area/awaymission/moonoutpost19/arrivals) -"xK" = ( -/obj/structure/closet/crate, -/obj/item/storage/box/lights/mixed, -/obj/item/poster/random_contraband, -/turf/open/floor/plating{ - broken = 1 +"SL" = ( +/obj/machinery/light/small{ + dir = 8 }, -/area/awaymission/moonoutpost19/research) -"xO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"yh" = ( -/obj/effect/decal/cleanable/xenoblood, -/obj/effect/decal/remains/xeno{ - desc = "They look like the remains of something... alien. The front of skull appears to have been completely obliterated." +"SR" = ( +/obj/machinery/atmospherics/components/unary/portables_connector{ + dir = 4 }, -/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/portable_atmospherics/canister, +/obj/structure/alien/weeds, /turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"yy" = ( -/obj/structure/chair/stool, +/area/awaymission/moonoutpost19/research) +"SX" = ( +/obj/structure/table, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/awaymission/moonoutpost19/research) +"Te" = ( /turf/open/floor/plating{ - broken = 1 + broken = 1; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) -"yC" = ( -/obj/machinery/light/small{ - dir = 8 - }, +"Th" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/structure/alien/weeds, /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/space_cube{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, -/area/awaymission/moonoutpost19/syndicate) -"yT" = ( -/obj/structure/closet/emcloset, -/obj/structure/window/reinforced{ - dir = 8 +/area/awaymission/moonoutpost19/research) +"Tr" = ( +/obj/structure/closet/crate/bin, +/obj/item/plate, +/obj/item/food/badrecipe, +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 +/area/awaymission/moonoutpost19/arrivals) +"Ts" = ( +/obj/machinery/door/airlock/medical{ + name = "Research Division"; + req_access_txt = "201" }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/syndicate) -"yU" = ( -/obj/structure/chair/stool, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"Tv" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"zl" = ( -/obj/effect/decal/cleanable/dirt, +"Tx" = ( +/obj/item/cigbutt, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"zT" = ( +"Ty" = ( +/obj/machinery/light/small{ + dir = 1 + }, /obj/structure/cable{ icon_state = "4-8" }, -/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, -/area/awaymission/moonoutpost19/syndicate) -"zZ" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/area/awaymission/moonoutpost19/arrivals) +"TF" = ( +/obj/structure/closet/secure_closet/freezer{ + locked = 0; + name = "meat fridge"; + req_access_txt = "201" + }, +/obj/item/food/meat/slab/monkey, +/obj/item/food/meat/slab/monkey, +/obj/item/food/meat/slab/monkey, +/obj/item/food/meat/slab/monkey, +/turf/open/floor/iron/showroomfloor{ + initial_temperature = 273.15 + }, +/area/awaymission/moonoutpost19/arrivals) +"TG" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/research) +"TN" = ( +/obj/item/trash/candy, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" + }, +/area/awaymission/moonoutpost19/main) +"TT" = ( +/obj/structure/closet, +/obj/item/storage/box/lights/mixed, /turf/open/floor/plating, /area/awaymission/moonoutpost19/arrivals) -"Al" = ( -/obj/structure/table, -/obj/item/storage/box/donkpockets, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/syndicate) -"Bn" = ( +"TZ" = ( /obj/structure/table, -/obj/item/trash/plate, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"Bs" = ( -/obj/structure/cable{ - icon_state = "1-2" +/obj/item/storage/secure/briefcase, +/obj/item/taperecorder{ + pixel_x = -3 }, -/obj/item/stack/rods, -/turf/open/floor/plating{ - broken = 1 +/obj/effect/turf_decal/stripes/line{ + dir = 6 }, +/turf/open/floor/iron/white, /area/awaymission/moonoutpost19/research) -"Bv" = ( -/obj/structure/grille/broken, -/obj/item/stack/rods, -/obj/item/shard, -/obj/effect/decal/cleanable/blood/tracks{ - desc = "Your instincts say you shouldn't be following these."; - dir = 8; - icon_state = "ltrails_2" +"Uc" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -30 }, -/turf/open/floor/plating{ - broken = 1; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 }, -/area/awaymission/moonoutpost19/arrivals) -"CF" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -32 +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/research) +"Uh" = ( +/obj/machinery/light/small/broken{ + dir = 4 }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/research) +"Uj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, /turf/open/floor/iron, /area/awaymission/moonoutpost19/research) -"CJ" = ( -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron/dark, -/area/awaymission/moonoutpost19/syndicate) -"CL" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 +"Ut" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/item/multitool, -/obj/effect/turf_decal/tile/blue/half/contrasted{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/research) +"UJ" = ( +/obj/effect/turf_decal/tile/purple{ dir = 8 }, +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"UL" = ( +/obj/machinery/airalarm/directional/north{ + pixel_y = 23; + req_access = null; + req_access_txt = "150" + }, +/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"DN" = ( -/obj/structure/closet/crate, -/obj/item/storage/bag/ore, +/area/awaymission/moonoutpost19/syndicate) +"UN" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, /obj/structure/alien/weeds, -/obj/item/mining_scanner, -/obj/item/shovel, -/obj/item/pickaxe, -/turf/open/floor/plating{ - broken = 1; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"UU" = ( +/obj/machinery/light/small{ + dir = 8 }, -/area/awaymission/moonoutpost19/syndicate) -"DR" = ( -/obj/machinery/light/small/broken{ - dir = 4 +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/arrivals) +"UV" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/arrivals) +"UY" = ( +/obj/machinery/button/door{ + id = "Awaybiohazard"; + name = "Biohazard Shutter Control"; + pixel_x = -25; + req_access_txt = "201" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/obj/machinery/light/small{ + dir = 8 }, -/area/awaymission/moonoutpost19/syndicate) -"DU" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -30 +/obj/machinery/computer/security{ + desc = "Used to access the various cameras on the outpost."; + dir = 4; + network = list("mo19r","mo19") }, /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 }, /turf/open/floor/iron, /area/awaymission/moonoutpost19/research) -"Ek" = ( +"Vb" = ( +/obj/machinery/light/small, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" + }, +/area/awaymission/moonoutpost19/research) +"Vd" = ( /obj/structure/chair{ dir = 4 }, @@ -5367,373 +5301,449 @@ }, /turf/open/floor/iron, /area/awaymission/moonoutpost19/research) -"El" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/syndicate) -"Ey" = ( -/obj/structure/chair{ - dir = 1 - }, +"Vf" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"EA" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 +/turf/open/floor/wood{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/obj/machinery/light/small{ +/area/awaymission/moonoutpost19/syndicate) +"Vg" = ( +/obj/machinery/power/terminal{ dir = 4 }, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/syndicate) -"EH" = ( -/obj/structure/chair, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"EU" = ( -/obj/structure/sign/departments/science{ - pixel_y = 32 +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ +/obj/machinery/airalarm/unlocked{ + pixel_y = 23; + req_access = null; dir = 1 }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"FJ" = ( -/obj/structure/table, -/obj/machinery/computer/security/telescreen/entertainment{ +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/research) +"Vi" = ( +/obj/item/storage/secure/safe{ pixel_x = 32 }, -/obj/item/trash/plate, -/obj/item/cigbutt, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/syndicate) -"FN" = ( -/obj/item/stack/rods, -/obj/item/shard{ - icon_state = "small" +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/pen, +/obj/item/paper/crumpled/awaymissions/moonoutpost19/hastey_note, +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"Vk" = ( /obj/effect/decal/cleanable/blood/tracks{ desc = "Your instincts say you shouldn't be following these."; - dir = 8; + dir = 5; icon_state = "ltrails_1" }, -/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/carpet, +/area/awaymission/moonoutpost19/arrivals) +"Vr" = ( +/obj/structure/closet/crate/freezer, +/obj/structure/alien/weeds, +/obj/item/clothing/mask/facehugger/impregnated, +/obj/item/xenos_claw, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/awaymission/moonoutpost19/research) -"Go" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 +"Vt" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/glass{ + amount = 10 + }, +/obj/structure/alien/weeds, +/obj/effect/turf_decal/bot{ + dir = 1 }, /turf/open/floor/iron{ + dir = 1; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) -"GN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +"Vw" = ( +/obj/machinery/shieldwallgen{ + locked = 0; + req_access = null }, -/area/awaymission/moonoutpost19/arrivals) -"Hc" = ( -/obj/machinery/light/small{ +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/research) +"Vy" = ( +/obj/structure/alien/weeds, +/obj/effect/turf_decal/tile/purple{ dir = 8 }, -/obj/structure/table, -/obj/item/storage/box, -/obj/machinery/airalarm/unlocked{ - dir = 8; - pixel_x = -23; - req_access = null +/turf/open/floor/iron/white, +/area/awaymission/moonoutpost19/research) +"VC" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "Awaylab"; + name = "Containment Chamber Blast Doors"; + pixel_x = 4; + pixel_y = -2; + req_access_txt = "201" + }, +/obj/machinery/button/ignition{ + id = "awayxenobio"; + pixel_x = 4; + pixel_y = 8 + }, +/obj/structure/alien/weeds, +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"Hv" = ( +/area/awaymission/moonoutpost19/research) +"VE" = ( /obj/structure/cable{ - icon_state = "2-8" + icon_state = "0-8" }, -/turf/open/floor/plating{ - burnt = 1 +/obj/machinery/shieldwallgen{ + locked = 0; + req_access = null }, -/area/awaymission/moonoutpost19/syndicate) -"HG" = ( -/obj/structure/closet/secure_closet{ - icon_state = "sec"; - name = "security officer's locker"; - req_access_txt = "201" +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/item/clothing/suit/armor/vest, -/obj/item/reagent_containers/peppercloud_deployer, -/obj/item/grenade/flashbang, -/obj/item/storage/belt/security, -/obj/item/reagent_containers/food/drinks/beer{ - pixel_x = -3; - pixel_y = -2 +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/research) +"VM" = ( +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_y = -32 }, -/obj/machinery/airalarm/unlocked{ - pixel_y = 23; - req_access = null; - dir = 1 +/obj/effect/turf_decal/tile/blue{ + dir = 8 }, -/obj/effect/turf_decal/tile/red/half/contrasted{ +/turf/open/floor/iron/white/corner, +/area/awaymission/moonoutpost19/arrivals) +"VN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 4 }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/research) -"HV" = ( -/obj/structure/closet/crate/bin, -/obj/item/trash/plate, -/obj/item/food/badrecipe, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/syndicate) +"VP" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 }, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"Ik" = ( -/obj/structure/cable{ - icon_state = "4-8" +"VR" = ( +/obj/structure/alien/weeds, +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/decal/cleanable/blood, +/obj/item/clothing/mask/facehugger/impregnated, +/obj/item/clothing/under/syndicate, +/obj/item/clothing/glasses/night, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/turf/open/floor/plating{ - broken = 1; +/area/awaymission/moonoutpost19/hive) +"Wb" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/tracks{ + desc = "Your instincts say you shouldn't be following these."; + dir = 9; + icon_state = "ltrails_1" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) -"In" = ( -/obj/machinery/gateway{ - dir = 5 +"Wg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"WC" = ( +/obj/structure/alien/weeds, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron/dark, +/area/awaymission/moonoutpost19/main) +"WI" = ( +/obj/structure/alien/weeds, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" + }, +/area/awaymission/moonoutpost19/hive) +"WJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/syndicate) +"WS" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"WX" = ( +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, /area/awaymission/moonoutpost19/syndicate) -"Iz" = ( +"WY" = ( /obj/structure/cable{ icon_state = "1-4" }, -/turf/open/floor/plating{ - broken = 1 +/obj/structure/cable{ + icon_state = "4-8" }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, /area/awaymission/moonoutpost19/research) -"IH" = ( -/obj/structure/grille/broken, -/obj/item/stack/rods, -/turf/open/floor/plating{ - broken = 1; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +"Xc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"II" = ( -/obj/machinery/gateway{ - dir = 9 +"Xe" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron/dark, -/area/awaymission/moonoutpost19/syndicate) -"Jc" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/obj/structure/urinal{ + pixel_y = 29 + }, +/obj/structure/mirror{ + pixel_x = 28 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, /area/awaymission/moonoutpost19/arrivals) -"Jk" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ +"Xg" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"Xh" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/decal/cleanable/dirt, +/obj/structure/window{ dir = 1 }, -/turf/open/floor/iron{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/arrivals) +"Xk" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/highsecurity{ + name = "Gateway"; + req_access_txt = "150" }, -/area/awaymission/moonoutpost19/syndicate) -"JH" = ( -/obj/structure/closet/crate/bin, -/obj/item/trash/syndi_cakes, -/obj/item/trash/sosjerky, -/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/awaymission/moonoutpost19/syndicate) -"KQ" = ( +"Xl" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 +/obj/machinery/door/firedoor/closed{ + opacity = 0 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"KX" = ( -/obj/machinery/washing_machine, -/obj/effect/turf_decal/tile/blue/opposingcorners{ +"Xo" = ( +/obj/structure/chair{ dir = 1 }, -/turf/open/floor/iron/cafeteria{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/obj/machinery/light/small{ + dir = 4 }, -/area/awaymission/moonoutpost19/arrivals) -"LE" = ( -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/syndicate) -"LQ" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"LV" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 +"Xx" = ( +/obj/structure/alien/weeds, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ +/area/awaymission/moonoutpost19/hive) +"Xy" = ( +/obj/machinery/airalarm/unlocked{ + dir = 8; + pixel_x = -23; + req_access = null + }, +/obj/machinery/light/small{ dir = 8 }, -/turf/open/floor/iron, +/turf/open/floor/iron/freezer, /area/awaymission/moonoutpost19/arrivals) -"Mm" = ( -/obj/machinery/door/airlock/medical{ - name = "Research Division"; - req_access_txt = "201" +"XA" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 +/turf/open/floor/iron{ + dir = 8; + icon_state = "floorscorched1" + }, +/area/awaymission/moonoutpost19/arrivals) +"XC" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/stripes/line{ + dir = 5 }, /turf/open/floor/iron/white, /area/awaymission/moonoutpost19/research) -"MU" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 +"XT" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock{ + id_tag = "awaydorm3"; + name = "Dorm 3" }, /turf/open/floor/iron, -/area/awaymission/moonoutpost19/syndicate) -"Nf" = ( -/obj/structure/cable, -/obj/machinery/power/apc/highcap/fifteen_k{ - name = "Worn-out APC"; - pixel_y = -23; - req_access = null; - req_access_txt = "150"; - start_charge = 0 +/area/awaymission/moonoutpost19/arrivals) +"XX" = ( +/obj/machinery/light/small{ + dir = 4 }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 +/obj/effect/decal/remains/human{ + desc = "They look like human remains. The skeleton is sitting upright with its legs tucked in and hands still holding onto its arms." }, -/turf/open/floor/iron{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 +/obj/item/gun/ballistic/shotgun/sc_pump, +/turf/open/floor/iron/showroomfloor{ + initial_temperature = 273.15 }, -/area/awaymission/moonoutpost19/syndicate) -"NJ" = ( -/obj/structure/alien/weeds, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/area/awaymission/moonoutpost19/arrivals) +"XY" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet, +/area/awaymission/moonoutpost19/arrivals) +"Yc" = ( +/obj/structure/alien/weeds/node, +/obj/structure/alien/resin/wall, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" + }, +/area/awaymission/moonoutpost19/main) +"Yj" = ( +/obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, -/area/awaymission/moonoutpost19/syndicate) -"Ot" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, +/area/awaymission/moonoutpost19/arrivals) +"Yk" = ( /turf/open/floor/iron{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 + dir = 8; + icon_state = "floorscorched2" }, -/area/awaymission/moonoutpost19/syndicate) -"Oy" = ( +/area/awaymission/moonoutpost19/arrivals) +"Ym" = ( /obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating{ - broken = 1 + icon_state = "4-8" }, +/turf/open/floor/iron, /area/awaymission/moonoutpost19/research) -"OT" = ( -/obj/machinery/gateway{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron/dark, -/area/awaymission/moonoutpost19/syndicate) -"Pq" = ( -/obj/machinery/gateway{ +"Yp" = ( +/obj/machinery/light/small{ dir = 4 }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron/dark, -/area/awaymission/moonoutpost19/syndicate) -"QH" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, +/obj/effect/decal/cleanable/generic, +/obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, -/area/awaymission/moonoutpost19/syndicate) -"QP" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating{ - broken = 1 +/area/awaymission/moonoutpost19/arrivals) +"Yq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, +/turf/open/floor/iron/white, /area/awaymission/moonoutpost19/research) -"Rz" = ( -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 +"Yr" = ( +/obj/structure/sign/warning/biohazard{ + pixel_y = 32 + }, +/obj/structure/alien/weeds/node, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 }, /turf/open/floor/iron{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) -"RA" = ( -/obj/effect/turf_decal/tile/red/half/contrasted, +"Ys" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"Yz" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, -/area/awaymission/moonoutpost19/syndicate) -"RD" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 +/area/awaymission/moonoutpost19/arrivals) +"YA" = ( +/obj/item/pen, +/obj/item/storage/pill_bottle{ + pixel_y = 6 }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/research) -"RI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 +/turf/open/floor/carpet, +/area/awaymission/moonoutpost19/arrivals) +"YK" = ( +/obj/machinery/light/small, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 }, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/syndicate) -"Se" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ +/obj/machinery/camera/directional/south{ + c_tag = "Arrivals North"; + network = list("mo19") + }, +/obj/effect/turf_decal/tile/blue{ dir = 8 }, -/turf/open/floor/iron/dark, -/area/awaymission/moonoutpost19/syndicate) -"Td" = ( +/turf/open/floor/iron/white/corner, +/area/awaymission/moonoutpost19/arrivals) +"YM" = ( /obj/structure/table, /obj/machinery/recharger{ pixel_y = 4 @@ -5741,120 +5751,103 @@ /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron, /area/awaymission/moonoutpost19/research) -"TM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/awaymission/moonoutpost19/syndicate) -"TX" = ( +"YT" = ( +/obj/structure/closet/crate, +/obj/item/storage/bag/ore, +/obj/structure/alien/weeds, +/obj/item/mining_scanner, +/obj/item/shovel, +/obj/item/pickaxe, /turf/open/floor/plating{ broken = 1; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) -"Ul" = ( -/obj/effect/decal/cleanable/xenoblood, -/obj/effect/decal/cleanable/xenoblood/xgibs, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/arrivals) -"Um" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/alien/weeds, -/obj/effect/turf_decal/tile/red/half/contrasted, +"YX" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, /turf/open/floor/iron{ - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - initial_temperature = 251 + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, /area/awaymission/moonoutpost19/syndicate) -"Uo" = ( -/obj/machinery/gateway{ - dir = 6 +"YZ" = ( +/obj/structure/window/reinforced{ + dir = 1 }, +/obj/structure/table, +/obj/item/storage/firstaid/regular, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron/dark, -/area/awaymission/moonoutpost19/syndicate) -"Ux" = ( -/turf/open/floor/plating{ - broken = 1 +/obj/effect/turf_decal/stripes/line{ + dir = 10 }, -/area/awaymission/moonoutpost19/research) -"UZ" = ( -/obj/structure/chair/stool, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/awaymission/moonoutpost19/syndicate) -"Wf" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 +"Zl" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/plating, -/area/awaymission/moonoutpost19/arrivals) -"WB" = ( -/obj/structure/table, -/obj/item/trash/raisins, -/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"WM" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/item/clothing/neck/tie/black, -/obj/item/clothing/under/suit/black, -/obj/effect/turf_decal/tile/blue/opposingcorners{ +"Zo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 }, -/turf/open/floor/iron/cafeteria{ +/turf/open/floor/iron{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; initial_temperature = 251 }, -/area/awaymission/moonoutpost19/arrivals) -"Xd" = ( +/area/awaymission/moonoutpost19/syndicate) +"Zp" = ( /obj/structure/chair{ dir = 1 }, -/obj/machinery/light/small{ - dir = 4 - }, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/awaymission/moonoutpost19/arrivals) -"Yx" = ( -/obj/machinery/gateway, +"ZH" = ( /obj/structure/cable{ - icon_state = "0-2" + icon_state = "1-4" }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron/dark, +/turf/open/floor/plating, +/area/awaymission/moonoutpost19/research) +"ZM" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/moonoutpost19/arrivals) +"ZN" = ( +/obj/structure/bed, +/obj/item/bedsheet/syndie, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, /area/awaymission/moonoutpost19/syndicate) -"YH" = ( -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ +"ZQ" = ( +/obj/structure/toilet{ dir = 4 }, -/turf/open/floor/iron, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/iron/freezer, /area/awaymission/moonoutpost19/arrivals) -"ZB" = ( -/obj/structure/table, -/obj/item/cigbutt, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, +"ZW" = ( +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, /area/awaymission/moonoutpost19/arrivals) -"ZC" = ( -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/awaymission/moonoutpost19/research) (1,1,1) = {" aa @@ -6113,7 +6106,264 @@ aa aa aa "} -(2,1,1) = {" +(2,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(3,1,1) = {" aa aa aa @@ -6370,7 +6620,7 @@ aa aa aa "} -(3,1,1) = {" +(4,1,1) = {" aa aa aa @@ -6627,7 +6877,7 @@ aa aa aa "} -(4,1,1) = {" +(5,1,1) = {" aa aa aa @@ -6884,7 +7134,7 @@ aa aa aa "} -(5,1,1) = {" +(6,1,1) = {" aa aa aa @@ -7141,7 +7391,7 @@ aa aa aa "} -(6,1,1) = {" +(7,1,1) = {" aa aa aa @@ -7398,7 +7648,7 @@ aa aa aa "} -(7,1,1) = {" +(8,1,1) = {" aa aa aa @@ -7655,7 +7905,7 @@ aa aa aa "} -(8,1,1) = {" +(9,1,1) = {" aa aa aa @@ -7912,7 +8162,7 @@ aa aa aa "} -(9,1,1) = {" +(10,1,1) = {" aa aa aa @@ -8169,7 +8419,7 @@ aa aa aa "} -(10,1,1) = {" +(11,1,1) = {" aa aa aa @@ -8426,7 +8676,7 @@ aa aa aa "} -(11,1,1) = {" +(12,1,1) = {" aa aa aa @@ -8683,7 +8933,7 @@ aa aa aa "} -(12,1,1) = {" +(13,1,1) = {" aa aa aa @@ -8940,7 +9190,7 @@ aa aa aa "} -(13,1,1) = {" +(14,1,1) = {" aa aa aa @@ -9197,7 +9447,7 @@ aa aa aa "} -(14,1,1) = {" +(15,1,1) = {" aa aa aa @@ -9454,7 +9704,7 @@ aa aa aa "} -(15,1,1) = {" +(16,1,1) = {" aa aa aa @@ -9711,7 +9961,7 @@ aa aa aa "} -(16,1,1) = {" +(17,1,1) = {" aa aa aa @@ -9968,7 +10218,7 @@ aa aa aa "} -(17,1,1) = {" +(18,1,1) = {" aa aa aa @@ -10225,7 +10475,7 @@ aa aa aa "} -(18,1,1) = {" +(19,1,1) = {" aa aa aa @@ -10482,7 +10732,7 @@ aa aa aa "} -(19,1,1) = {" +(20,1,1) = {" aa aa aa @@ -10739,7 +10989,7 @@ aa aa aa "} -(20,1,1) = {" +(21,1,1) = {" aa aa aa @@ -10996,7 +11246,7 @@ aa aa aa "} -(21,1,1) = {" +(22,1,1) = {" aa aa aa @@ -11253,7 +11503,7 @@ aa aa aa "} -(22,1,1) = {" +(23,1,1) = {" aa aa aa @@ -11510,7 +11760,7 @@ aa aa aa "} -(23,1,1) = {" +(24,1,1) = {" aa aa aa @@ -11767,7 +12017,7 @@ aa aa aa "} -(24,1,1) = {" +(25,1,1) = {" aa aa aa @@ -12024,7 +12274,7 @@ aa aa aa "} -(25,1,1) = {" +(26,1,1) = {" aa aa aa @@ -12281,7 +12531,7 @@ aa aa aa "} -(26,1,1) = {" +(27,1,1) = {" aa aa aa @@ -12538,7 +12788,7 @@ aa aa aa "} -(27,1,1) = {" +(28,1,1) = {" aa aa aa @@ -12795,7 +13045,7 @@ aa aa aa "} -(28,1,1) = {" +(29,1,1) = {" aa aa aa @@ -13052,7 +13302,7 @@ aa aa aa "} -(29,1,1) = {" +(30,1,1) = {" aa aa aa @@ -13309,7 +13559,7 @@ aa aa aa "} -(30,1,1) = {" +(31,1,1) = {" aa aa aa @@ -13566,7 +13816,7 @@ aa aa aa "} -(31,1,1) = {" +(32,1,1) = {" aa aa aa @@ -13823,7 +14073,7 @@ aa aa aa "} -(32,1,1) = {" +(33,1,1) = {" aa aa aa @@ -14080,7 +14330,7 @@ aa aa aa "} -(33,1,1) = {" +(34,1,1) = {" aa aa aa @@ -14337,7 +14587,7 @@ aa aa aa "} -(34,1,1) = {" +(35,1,1) = {" aa aa aa @@ -14594,7 +14844,7 @@ aa aa aa "} -(35,1,1) = {" +(36,1,1) = {" aa aa aa @@ -14851,7 +15101,7 @@ aa aa aa "} -(36,1,1) = {" +(37,1,1) = {" aa aa aa @@ -15108,7 +15358,7 @@ aa aa aa "} -(37,1,1) = {" +(38,1,1) = {" aa aa aa @@ -15365,7 +15615,7 @@ aa aa aa "} -(38,1,1) = {" +(39,1,1) = {" aa aa aa @@ -15622,7 +15872,7 @@ aa aa aa "} -(39,1,1) = {" +(40,1,1) = {" aa aa aa @@ -15879,7 +16129,7 @@ aa aa aa "} -(40,1,1) = {" +(41,1,1) = {" aa aa aa @@ -16136,7 +16386,7 @@ aa aa aa "} -(41,1,1) = {" +(42,1,1) = {" aa aa aa @@ -16393,7 +16643,7 @@ aa aa aa "} -(42,1,1) = {" +(43,1,1) = {" aa aa aa @@ -16650,7 +16900,7 @@ aa aa aa "} -(43,1,1) = {" +(44,1,1) = {" aa aa aa @@ -16907,7 +17157,7 @@ aa aa aa "} -(44,1,1) = {" +(45,1,1) = {" aa aa aa @@ -17164,7 +17414,7 @@ aa aa aa "} -(45,1,1) = {" +(46,1,1) = {" aa aa aa @@ -17421,7 +17671,7 @@ aa aa aa "} -(46,1,1) = {" +(47,1,1) = {" aa aa aa @@ -17678,7 +17928,7 @@ aa aa aa "} -(47,1,1) = {" +(48,1,1) = {" aa aa aa @@ -17935,7 +18185,7 @@ aa aa aa "} -(48,1,1) = {" +(49,1,1) = {" aa aa aa @@ -18192,7 +18442,7 @@ aa aa aa "} -(49,1,1) = {" +(50,1,1) = {" aa aa aa @@ -18449,7 +18699,7 @@ aa aa aa "} -(50,1,1) = {" +(51,1,1) = {" aa aa aa @@ -18706,7 +18956,7 @@ aa aa aa "} -(51,1,1) = {" +(52,1,1) = {" aa aa aa @@ -18963,7 +19213,7 @@ aa aa aa "} -(52,1,1) = {" +(53,1,1) = {" aa aa aa @@ -19220,7 +19470,7 @@ aa aa aa "} -(53,1,1) = {" +(54,1,1) = {" aa aa aa @@ -19477,7 +19727,7 @@ aa aa aa "} -(54,1,1) = {" +(55,1,1) = {" aa aa aa @@ -19734,7 +19984,7 @@ aa aa aa "} -(55,1,1) = {" +(56,1,1) = {" aa aa aa @@ -19991,7 +20241,7 @@ aa aa aa "} -(56,1,1) = {" +(57,1,1) = {" aa aa aa @@ -20248,7 +20498,7 @@ aa aa aa "} -(57,1,1) = {" +(58,1,1) = {" aa aa aa @@ -20505,7 +20755,7 @@ aa aa aa "} -(58,1,1) = {" +(59,1,1) = {" aa aa aa @@ -20762,7 +21012,7 @@ aa aa aa "} -(59,1,1) = {" +(60,1,1) = {" aa aa aa @@ -21019,7 +21269,89 @@ aa aa aa "} -(60,1,1) = {" +(61,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -21193,6 +21525,8 @@ aa aa aa aa +"} +(62,1,1) = {" aa aa aa @@ -21275,8 +21609,6 @@ aa aa aa aa -"} -(61,1,1) = {" aa aa aa @@ -21450,6 +21782,8 @@ aa aa aa aa +"} +(63,1,1) = {" aa aa aa @@ -21532,8 +21866,6 @@ aa aa aa aa -"} -(62,1,1) = {" aa aa aa @@ -21707,6 +22039,8 @@ aa aa aa aa +"} +(64,1,1) = {" aa aa aa @@ -21789,8 +22123,6 @@ aa aa aa aa -"} -(63,1,1) = {" aa aa aa @@ -21964,6 +22296,8 @@ aa aa aa aa +"} +(65,1,1) = {" aa aa aa @@ -22046,8 +22380,6 @@ aa aa aa aa -"} -(64,1,1) = {" aa aa aa @@ -22221,6 +22553,8 @@ aa aa aa aa +"} +(66,1,1) = {" aa aa aa @@ -22303,8 +22637,6 @@ aa aa aa aa -"} -(65,1,1) = {" aa aa aa @@ -22478,6 +22810,8 @@ aa aa aa aa +"} +(67,1,1) = {" aa aa aa @@ -22560,8 +22894,6 @@ aa aa aa aa -"} -(66,1,1) = {" aa aa aa @@ -22735,6 +23067,8 @@ aa aa aa aa +"} +(68,1,1) = {" aa aa aa @@ -22817,8 +23151,6 @@ aa aa aa aa -"} -(67,1,1) = {" aa aa aa @@ -22992,6 +23324,8 @@ aa aa aa aa +"} +(69,1,1) = {" aa aa aa @@ -23069,59 +23403,118 @@ aa aa aa aa -aa -aa -aa -aa -aa -"} -(68,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab aa aa aa @@ -23188,6 +23581,8 @@ aa aa aa aa +"} +(70,1,1) = {" aa aa aa @@ -23265,6 +23660,118 @@ aa aa aa aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab aa aa aa @@ -23332,7 +23839,7 @@ aa aa aa "} -(69,1,1) = {" +(71,1,1) = {" aa aa aa @@ -23589,7 +24096,7 @@ aa aa aa "} -(70,1,1) = {" +(72,1,1) = {" aa aa aa @@ -23846,7 +24353,7 @@ aa aa aa "} -(71,1,1) = {" +(73,1,1) = {" aa aa aa @@ -24103,7 +24610,7 @@ aa aa aa "} -(72,1,1) = {" +(74,1,1) = {" aa aa aa @@ -24360,7 +24867,7 @@ aa aa aa "} -(73,1,1) = {" +(75,1,1) = {" aa aa aa @@ -24617,7 +25124,7 @@ aa aa aa "} -(74,1,1) = {" +(76,1,1) = {" aa aa aa @@ -24702,104 +25209,104 @@ ab ab ab ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab +ac +ac +ac +ac +ac +ac +ac +Or +Or +Or +Or +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ab ab ab @@ -24874,7 +25381,7 @@ aa aa aa "} -(75,1,1) = {" +(77,1,1) = {" aa aa aa @@ -24959,104 +25466,104 @@ ab ab ab ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab +ac +ac +ac +ac +ac +Or +Or +Or +IN +FF +Or +Or +Or +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ab ab ab @@ -25131,7 +25638,7 @@ aa aa aa "} -(76,1,1) = {" +(78,1,1) = {" aa aa aa @@ -25221,15 +25728,15 @@ ac ac ac ac -ac -ac -ad -ad -ad -ad -ac -ac -ac +Or +Xx +FF +FF +Xx +IN +Xx +Or +Or ac ac ac @@ -25388,7 +25895,7 @@ aa aa aa "} -(77,1,1) = {" +(79,1,1) = {" aa aa aa @@ -25477,16 +25984,16 @@ ac ac ac ac -ac -ad -ad -ad -hk -ag -ad -ad -ad -ac +Or +Or +IN +Xx +Xx +IN +Bq +Xx +FF +Or ac ac ac @@ -25645,7 +26152,7 @@ aa aa aa "} -(78,1,1) = {" +(80,1,1) = {" aa aa aa @@ -25734,16 +26241,16 @@ ac ac ac ac -ac -ad -ai -ag -ag -ai -hk -ai -ad -ad +Or +Xx +Xx +kZ +uA +Xx +Xx +kZ +Xx +Or ac ac ac @@ -25902,7 +26409,7 @@ aa aa aa "} -(79,1,1) = {" +(81,1,1) = {" aa aa aa @@ -25991,16 +26498,16 @@ ac ac ac ac -ad -ad -hk -ai -ai -hk -aM -ai -ag -ad +Or +Xx +Xx +uA +Xx +AA +WI +VR +xp +Or ac ac ac @@ -26159,7 +26666,7 @@ aa aa aa "} -(80,1,1) = {" +(82,1,1) = {" aa aa aa @@ -26247,71 +26754,71 @@ ab ac ac ac -ac -ad -ai -ai -aD -aj -ai -ai -aD -ai -ad -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +ac +Or +FF +uE +Xx +Xx +Xx +xp +WI +Xx +Or +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dA +dA +dA +dA +dA +dA +dA +dA +dA +dA +dA +dA +dA +dA +dA +dA +dA +dA ac ac ac @@ -26416,7 +26923,7 @@ aa aa aa "} -(81,1,1) = {" +(83,1,1) = {" aa aa aa @@ -26505,42 +27012,16 @@ ac ac ac ac -ad -ai -ai -aj -ai -aT -av -bj -bc -ad -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +Or +uA +WI +Xx +Xx +Nb +Xx +uE +FF +Or ac ac ac @@ -26573,6 +27054,32 @@ ac ac ac ac +dA +dA +dA +dA +dA +dA +dA +dA +dA +dA +dA +dA +dA +dA +dA +dA +dA +dA +dA +dA +dA +dA +dA +dA +dA +dA ac ac ac @@ -26673,7 +27180,7 @@ aa aa aa "} -(82,1,1) = {" +(84,1,1) = {" aa aa aa @@ -26762,22 +27269,16 @@ ac ac ac ac -ad -ag -au -ai -ai -ai -bc -av -ai -ad -ac -ac -ac -ac -ac -ac +Or +En +FU +Xx +Xx +Xx +Xx +FF +Xx +Or ac ac ac @@ -26816,6 +27317,20 @@ dA dA dA dA +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -26823,14 +27338,6 @@ dA dA dA dA -dA -dA -dA -ac -ac -ac -ac -ac ac ac ac @@ -26930,7 +27437,7 @@ aa aa aa "} -(83,1,1) = {" +(85,1,1) = {" aa aa aa @@ -27019,18 +27526,16 @@ ac ac ac ac -ad -aj -av -ai -ai -am -ai -au -ag -ad -ac -ac +Or +Xx +WI +Or +Xx +Xx +Xx +kZ +FF +Or ac ac ac @@ -27060,27 +27565,33 @@ ac ac ac ac -ac -dA -dA -dA -dA -dA -dA -dA -dA -dA -dA -dA -dA -dA -dA -dA dA dA dA dA dA +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -27109,10 +27620,6 @@ ac ac ac ac -ac -ac -ac -ac ab ab ab @@ -27187,7 +27694,7 @@ aa aa aa "} -(84,1,1) = {" +(86,1,1) = {" aa aa aa @@ -27276,18 +27783,16 @@ ac ac ac ac -ad -ap -aw -ai -ai -ai -ai -ag -ai -ad -ac -ac +Or +Or +Xx +Xx +Xx +Xx +Xx +Xx +Xx +Or ac ac ac @@ -27300,6 +27805,10 @@ ac ac ac ac +Or +Or +Or +Or ac ac ac @@ -27311,45 +27820,43 @@ ac ac ac ac -ac -ac -ac -ac -ac -dA -dA -dA dA dA dA dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA dA dA dA -dA -ac -ac -ac -ac -ac ac ac ac @@ -27444,7 +27951,7 @@ aa aa aa "} -(85,1,1) = {" +(87,1,1) = {" aa aa aa @@ -27533,25 +28040,16 @@ ac ac ac ac -ad -ai -av -ad -ai -ai -ai -aD -ag -ad -ac -ac -ac -ac -ac -ac -ac -ac ac +Or +FF +Xx +Xx +Xx +Xx +Xx +Xx +Or ac ac ac @@ -27563,6 +28061,12 @@ ac ac ac ac +Or +Or +tk +uA +Or +Or ac ac ac @@ -27571,35 +28075,41 @@ ac ac ac ac -ac -dA dA dA dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba dA +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -27624,9 +28134,6 @@ ac ac ac ac -ac -ac -ac ab ab ab @@ -27701,7 +28208,7 @@ aa aa aa "} -(86,1,1) = {" +(88,1,1) = {" aa aa aa @@ -27790,18 +28297,16 @@ ac ac ac ac -ad -ad -ai -ai -ai -ai -ai -ai -ai -ad -ac ac +Or +Or +Xx +Xx +Nb +Xx +Xx +Or +Or ac ac ac @@ -27812,60 +28317,62 @@ ac ac ac ac -ad -ad -ad -ad +Or +Or +FF +WI +LZ +Xx +Or ac ac ac ac ac ac -ac -ac -ac -ac -ac -dA dA dA dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba dA +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA dA -dA -ac -ac ac ac ac @@ -27958,7 +28465,7 @@ aa aa aa "} -(87,1,1) = {" +(89,1,1) = {" aa aa aa @@ -28048,17 +28555,14 @@ ac ac ac ac -ad -ag -ai -ai -ai -ai -ai -ai -ad -ac ac +Or +Or +Xx +Xx +Xx +Or +Or ac ac ac @@ -28068,62 +28572,65 @@ ac ac ac ac -ad -ad -dO -aj -ad -ad ac ac +Or +uA +Xx +Nb +Xx +FF +Or ac ac ac ac ac -ac -dA dA dA dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA dA -dA -ac -ac ac ac ac @@ -28215,7 +28722,7 @@ aa aa aa "} -(88,1,1) = {" +(90,1,1) = {" aa aa aa @@ -28305,17 +28812,13 @@ ac ac ac ac -ad -ad -ai -ai -am -ai -ai -ad -ad ac ac +Or +Or +Or +Or +Or ac ac ac @@ -28324,15 +28827,17 @@ ac ac ac ac -ad -ad -ag -av -dS -ai -ad ac ac +Or +Or +Or +Xx +Xx +Xx +uA +Or +Or ac ac ac @@ -28340,49 +28845,51 @@ ac dA dA dA +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -dA dA dA -dA -ac -ac -ac ac ac ac @@ -28472,7 +28979,7 @@ aa aa aa "} -(89,1,1) = {" +(91,1,1) = {" aa aa aa @@ -28563,14 +29070,11 @@ ac ac ac ac -ad -ad -ai -ai -ai -ad -ad ac +Or +Nb +Nb +Or ac ac ac @@ -28581,59 +29085,65 @@ ac ac ac ac -ad -aj -ai -am -ai -ag -ad +Or +Or +Xx +Ir +Xx +FF +Or +Or +Or ac ac ac ac -ac -dA dA dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -28652,9 +29162,6 @@ ac ac ac ac -ac -ac -ac ab ab ab @@ -28729,7 +29236,7 @@ aa aa aa "} -(90,1,1) = {" +(92,1,1) = {" aa aa aa @@ -28821,30 +29328,27 @@ ac ac ac ac -ad -ad -ad -ad -ad -ac -ac -ac -ac -ac -ac -ac +Or +Xx +Xx +Or +Or ac -ac -ac -ad -ad -ad -ai -ai -ai -aj -ad -ad +Or +Or +Or +Or +Or +Or +Or +Or +Or +Xx +Xx +Or +Or +Or +Or ac ac ac @@ -28852,53 +29356,56 @@ ac dA dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +dA +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA dA -ac -ac ac ac ac @@ -28986,7 +29493,7 @@ aa aa aa "} -(91,1,1) = {" +(93,1,1) = {" aa aa aa @@ -29078,11 +29585,24 @@ ac ac ac ac -ad -am -am -ad -ac +Or +Xx +Xx +Xx +Or +Or +Or +Xx +Xx +Xx +Xx +Xx +Xx +Or +Or +Xx +Or +Or ac ac ac @@ -29090,67 +29610,56 @@ ac ac ac ac -ac -ac -ad -ad -ai -ak -ai -ag -ad -ad -ad -ac -ac -ac -ac dA dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -29167,8 +29676,6 @@ ac ac ac ac -ac -ac ab ab ab @@ -29243,7 +29750,7 @@ aa aa aa "} -(92,1,1) = {" +(94,1,1) = {" aa aa aa @@ -29335,81 +29842,82 @@ ac ac ac ac -ad -ai -ai -ad -ad +Or +Or +Xx +Xx +Xx +Or +Xx +Xx +Xx +Xx +Xx +Xx +Nb +Xx +Xx +Xx +Or +ac +ac +ac ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ad -ad -ad -ad ac ac ac ac dA dA -dA -dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -dA +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -29425,7 +29933,6 @@ ac ac ac ac -ac ab ab ab @@ -29500,7 +30007,7 @@ aa aa aa "} -(93,1,1) = {" +(95,1,1) = {" aa aa aa @@ -29586,30 +30093,29 @@ ab ab ab ac +Or +Or +Or +Or ac ac ac -ac -ac -ac -ad -ai -ai -ai -ad -ad -ad -ai -ai -ai -ai -ai -ai -ad -ad -ai -ad -ad +Or +Or +Xx +Nb +Xx +Xx +Xx +Or +Or +Or +Or +Xx +Xx +Xx +Or +Or ac ac ac @@ -29620,53 +30126,56 @@ ac dA dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -29681,8 +30190,6 @@ ac ac ac ac -ac -ac ab ab ab @@ -29757,7 +30264,7 @@ aa aa aa "} -(94,1,1) = {" +(96,1,1) = {" aa aa aa @@ -29842,31 +30349,29 @@ ab ab ab ab -ac -ac -ac -ac -ac -ac -ac -ad -ad -ai -ai -ai -ad -ai -ai -ai -ai -ai -ai -am -ai -ai -ai -ad -ac +Or +Or +FF +uA +Or +Or +Or +Or +Or +Or +Xx +Xx +Xx +Xx +Or +Or +bl +bl +Or +Or +Xx +Xx +Or ac ac ac @@ -29876,60 +30381,62 @@ ac ac dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +dA +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA -ac -ac ac ac ac @@ -30014,7 +30521,7 @@ aa aa aa "} -(95,1,1) = {" +(97,1,1) = {" aa aa aa @@ -30099,30 +30606,29 @@ ab ab ab ab -ac -ad -ad -ad -ad -ac -ac -ac -ad -ad -ai -am -ai -ai -ai -ad -ad -ad -ad -ai -ai -ai -ad -ad +Or +FF +Xx +Ir +Xx +Or +Or +Xx +Xx +Xx +Xx +Xx +Xx +Or +Or +bl +bl +bl +Or +Xx +Xx +Xx +Or ac ac ac @@ -30132,58 +30638,59 @@ ac ac dA dA -dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -dA +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -30271,7 +30778,7 @@ aa aa aa "} -(96,1,1) = {" +(98,1,1) = {" aa aa aa @@ -30356,92 +30863,92 @@ ab ab ab ab -ad -ad -ag -aj -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ad -ad +Or +FF +Xx +FF +Nb +Xx +Xx +Xx +Or +Or +Xx +Or +Or +Or bl bl -ad -ad -ai -ai -ad -ac -ac -ac -ac -ac -ac -ac -dA -dA -dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -dA +bl +bl +Or +Xx +Xx +Or +Or +ac +ac +ac +ac +ac +ac +dA +dA +dA +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +lc +lA +lA +lA +lc +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA ac @@ -30528,7 +31035,7 @@ aa aa aa "} -(97,1,1) = {" +(99,1,1) = {" aa aa aa @@ -30613,91 +31120,92 @@ ab ab ab ab -ad -ag -ai -ak -ai -ad -ad -ai -ai -ai -ai -ai -ai -ad -ad +Or +Or +Or +uA +uA +Or +Or +Or +Or +Or +Xx +Or bl bl bl -ad -ai -ai -ai -ad -ac -ac -ac -ac -ac -ac -ac -dA -dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +bl +bl +bl +Or +Xx +Xx +Or +ac +ac +ac +ac +ac +ac +dA +dA +dA +dA +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +lc +lc +mp +mG +mV +lc +lc +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -30710,7 +31218,6 @@ ac ac ac ac -ac ab ab ab @@ -30785,7 +31292,7 @@ aa aa aa "} -(98,1,1) = {" +(100,1,1) = {" aa aa aa @@ -30870,95 +31377,95 @@ ab ab ab ab -ad -ag -ai -ag -am -ai -ai -ai -ad -ad -ai -ad -ad -ad +ac +ac +Or +Or +Or +Or +ac +ac +ac +Or +Bq +Or +Or bl bl bl bl -ad -ai -ai -ad -ad -ac -ac -ac -ac -ac -ac -dA -dA -dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -lc -lA -lA -lA -lc -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +bl +Or +Xx +Mi +Or +Or +Or +ac +ac +ac +dA +dA +dA +Hi +WC +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +ld +lW +mb +mc +mb +nf +ld +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +dA dA dA -ac ac ac ac @@ -31042,7 +31549,7 @@ aa aa aa "} -(99,1,1) = {" +(101,1,1) = {" aa aa aa @@ -31127,93 +31634,93 @@ ab ab ab ab -ad -ad -ad -aj -aj -ad -ad -ad -ad -ad -ai -ad -bl +ac +ac +ac +ac +ac +ac +ac +ac +ac +Or +Xx +Xx +Or bl bl bl bl bl -ad -ai -ai -ad -ac -ac -ac -ac -ac -ac -dA -dA -dA -dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -lc -lc -mp -mG -mV -lc -lc -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -dA +Or +Xx +Xx +Xx +Xx +Or +Or +Or +ac +dA +dA +Hi +Hi +WC +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +eI +eJ +eJ +eJ +eI +eI +eI +eJ +eI +tn +tn +ld +lX +mq +mr +mW +lX +ld +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA ac @@ -31299,7 +31806,7 @@ aa aa aa "} -(100,1,1) = {" +(102,1,1) = {" aa aa aa @@ -31386,90 +31893,91 @@ ab ab ac ac -ad -ad -ad -ad ac ac ac -ad -aM -ad -ad -bl +ac +ac +Or +Or +Or +Xx +Xx +Or +Or bl bl bl bl -ad -ai -dd -ad -ad -ad -ac -ac -ac -dA -dA -dA -dP -dT -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +Or +Or +Xx +Xx +Xx +Xx +Xx +Or +Or +Hi +Hi +Yc +WC +WC +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +eI +eI +eI +eJ +eI +eJ +eJ +tn +tn +tn +eJ +HK +Ms +BB +He +BB +Mx +QW +eI +tn +tn +ld ld -lW -mb -mc -mb -nf ld -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +mH +ld +ld +ld +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -31481,7 +31989,6 @@ ac ac ac ac -ac ab ab ab @@ -31556,7 +32063,7 @@ aa aa aa "} -(101,1,1) = {" +(103,1,1) = {" aa aa aa @@ -31647,90 +32154,90 @@ ac ac ac ac -ac -ac -ac -ad -ai -ai -ad -bl -bl +Or +Or +Pd +Xx +Xx +Nb +FF +Or bl bl bl -ad -ai -ai -ai -ai -ad -ad -ad -ac -dA -dA -dP -dP -dT -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +Or +Or +Xx +Xx +Or +Or +Xx +Xx +Xx +Or +sK +WC +WC +WC +WC +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn eI -eJ -eJ +rU +ZH +Gk +Gk +Nc eJ eI +eJ eI eI +qz +Ej +ea +ea +dZ +dZ +bM eJ -eI -ba -ba +tn +tn ld -lX -mq +lZ mr -mW -lX +mr +mr +lZ ld -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +dA dA dA -ac ac ac ac @@ -31813,7 +32320,7 @@ aa aa aa "} -(102,1,1) = {" +(104,1,1) = {" aa aa aa @@ -31904,88 +32411,88 @@ ac ac ac ac -ac -ad -ad -ad -ai -ai -ad -ad -bl +Or +gO +Lh +Ir +Xx +FF +uA +Or bl bl bl -ad -ad -ai -ai -ai -ai -ai -ad -ad -dP -dP -dV -dT -dT -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -eI -eI -eI +Or +Xx +Xx +Or +Or +Or +Or +Xx +Nb +Or +sK +WC +WC +WC +WC +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn eJ +Cb +WY +wV +Am +Na eI +Iu +BB +uu +NZ +BB +uY +dZ +Qc +xW +dZ +xJ eJ -eJ -ba -ba -ba -eJ -xK -eX -fu -iE -fu -jp -Iz -eI -ba -ba -ld -ld -ld -mH -ld +hI +tn ld +ma +mc +mr +mc +ng ld -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -dA +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA ac @@ -32070,7 +32577,7 @@ aa aa aa "} -(103,1,1) = {" +(105,1,1) = {" aa aa aa @@ -32161,88 +32668,88 @@ ac ac ac ac -ad -ad -aJ -ai -ai -am -ag -ad +Or +uA +WI +Xx +uA +uA +Or +Or bl bl bl -ad -ad -ai -ai -ad -ad -ai -ai -ai -ad -dQ -dT -dT -dT -dT -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -eI -eS -fq -fL -fL -gw -eJ -eI +Or +Xx +Or +Or +ac +ac +Or +Or +Or +Or +Hi +Yc +WC +WC +WC +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn eJ +le +bM +wz +wz +Rv eI -eI -hL -tf +bM ea ea dZ dZ -fb -eJ -ba -ba -ld -lZ -mr -mr -mr -lZ -ld -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -dA +ea +ea +rN +dZ +ea +uf +Ed +hI +tn +lA +mb +ms +mI +ms +mb +lA +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA ac @@ -32327,7 +32834,7 @@ aa aa aa "} -(104,1,1) = {" +(106,1,1) = {" aa aa aa @@ -32418,88 +32925,88 @@ ac ac ac ac -ad -aE -aK -ak -ai -ag -aj -ad +Or +Or +Or +Xx +Or +Or +Or +bl bl bl bl -ad -ai -ai -ad -ad -ad -ad -ai -am -ad -dQ -dT -dT -dT -dT -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +Or +Xx +Or +Or +ac +ac +ac +ac +ac +dA +dA +Hi +WC +WC +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn eJ -sQ -fr -fM -gf -lV +Vg +ax +Sb +ox +rQ eI -hd -fu -Oy -QP -fu -hf -dZ -iF -iZ -dZ -fQ -eJ -hI -ba +bM +ea +hq +hB +hB +hB +hB +hC +ea +an +Zl +GQ +lA +tn ld -ma mc -mr +mt +mJ +mt mc -ng ld -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA ac @@ -32584,7 +33091,7 @@ aa aa aa "} -(105,1,1) = {" +(107,1,1) = {" aa aa aa @@ -32675,91 +33182,91 @@ ac ac ac ac -ad -aj -av -ai -aj -aj -ad -ad +ac +ac +Or +Xx +Or bl bl bl -ad -ai -ad -ad -ac -ac -ad -ad -ad -ad -dP -dV -dT -dT -dT -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -eJ -eU -fb -fN -fN -gy +bl +bl +bl +Or +Xx +Xx +Or +ac +ac +ac +ac +ac +dA +dA +Hi +WC +WC +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn eI -fb -ea -ea -dZ -dZ -ea +Jg +NZ +zv +Nl +Hz +eJ +pN ea -iG +hr +hB +hC +hX +ip +hB dZ -ea -jT -kt -hI -ba +wA +Zl +ww lA -mb +tn +ld +md ms mI ms -mb -lA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +nh +ld +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +dA dA dA -ac ac ac ac @@ -32841,7 +33348,7 @@ aa aa aa "} -(106,1,1) = {" +(108,1,1) = {" aa aa aa @@ -32932,91 +33439,91 @@ ac ac ac ac -ad -ad -ad -ai -ad -ad -ad +ac +ac +Or +Xx +Or bl bl bl bl -ad -ai -ad -ad -ac +bl +bl +Or +Or +Nb +Or ac ac ac ac dA dA -dP -dT -dT -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +Hi +Hi +WC +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +eJ +eI +eJ +xJ +eJ eJ -eV -fs -fO -Ux -gz eI -fb +bM ea -hq -hB -hB -hB +hs hB -hC +hM +hY +iq +iH ea -jq -jU -ku -io -ba -ld +pa +vE +GQ +lA +tn +lA mc -mt -mJ -mt mc -ld -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +mr +mc +mc +lA +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +dA dA dA -ac ac ac ac @@ -33098,7 +33605,7 @@ aa aa aa "} -(107,1,1) = {" +(109,1,1) = {" aa aa aa @@ -33191,86 +33698,86 @@ ac ac ac ac -ad -ai -ad +Or +Nb +Or bl bl bl bl bl bl -ad -ai -ai -ad -ac +bl +Or +Xx +Or ac ac ac ac dA dA -dP -dT -dT -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +Hi +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn eI -eW -QP -fP -gh -gA -eJ -he -ea -hr -hB +Ms +BB +Dg +BB +BB +EW +uY +dZ +ht hC -hX -ip hB -dZ -jr -jU -kv -io -ba +hZ +hC +iI +ea +Nn +vE +YK +hI +lc ld -md -ms -mI -ms -nh +me +mb +mr +mb +me ld -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +lc +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -33355,7 +33862,7 @@ aa aa aa "} -(108,1,1) = {" +(110,1,1) = {" aa aa aa @@ -33448,86 +33955,86 @@ ac ac ac ac -ad -ai -ad +Or +Xx +Or bl bl bl bl bl bl -ad -ad -am -ad +bl +Or +Xx +Or ac ac ac ac dA dA -dP -dP -dT -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -eJ -eI -eJ -fQ -eJ -eJ +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn eI -fb +tB ea -hs +ea +ea +dZ +dZ +ea +ea +Fm +hD +Fm +ia hB -hM -hY -iq -iH +iJ ea -js -jV -ku -io -ba +OO +Zl +GQ lA -mc -mc +ld +lD +lD +mu mr -mc -mc -lA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +mY +lD +lD +ld +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -33612,7 +34119,7 @@ aa aa aa "} -(109,1,1) = {" +(111,1,1) = {" aa aa aa @@ -33705,87 +34212,87 @@ ac ac ac ac -ad -am -ad +Or +Xx +Or bl bl bl bl bl bl -bl -ad -ai -ad +Or +Or +Xx +Or ac ac ac ac dA dA -dP -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn eI -eX -fu -fR -fu -fu -Bs -hf -dZ -ht -hC -hB -hZ -hC -iI +Ge ea -jt -jV -kw -hI +cF +Uc +Vd +UY +PH +TG +pf +UJ +Fm +fS +Yq +rs +dZ +wA +vE +ww +lA lc +HE +IF ld -me -mb -mr -mb -me +mK ld +HE +IF lc -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -dA +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA ac @@ -33869,7 +34376,7 @@ aa aa aa "} -(110,1,1) = {" +(112,1,1) = {" aa aa aa @@ -33962,87 +34469,87 @@ ac ac ac ac -ad -ai -ad -bl -bl +Or +Xx +Or bl bl bl bl bl -ad -ai -ad +Or +Or +Xx +Xx +Or ac ac ac ac dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -eI -eY -ea -ea -ea -dZ +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +eJ +Dc dZ +Rn +Rf +Ic +pd +tv +TG +pf +UJ +Fm +Sd +AH +xa ea -ea -hu -hD -hu -ia -hB -iJ -ea -ju -jU -ku -io -ld -lD -lD -mu -mr -mY -lD -lD -ld -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -dA +XA +vE +ww +lA +tn +tn +tn +lA +jj +lA +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA ac @@ -34126,7 +34633,7 @@ aa aa aa "} -(111,1,1) = {" +(113,1,1) = {" aa aa aa @@ -34218,91 +34725,91 @@ ac ac ac ac -ac -ad -ai -ad -bl -bl -bl -bl -bl -bl -ad -ad -ai -ad -ac +Or +Or +Xx +Or +Or +Or +Or +Or +Or +Or +Xx +Xx +Or +Or ac ac ac dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -eI -tU -ea -rd -DU -Ek -sb -CF -fV -hv -gR -hu -ib -ir -iK +dA +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dZ -jr -jV -kv -io -lc -lE -mf -ld -mK -ld -lE -mf -lc -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +dZ +ea +ea +bM +ea +pK +AP +bi +YM +Ct +TG +pf +UJ +Fm +IW +Vi +TZ +ea +Pt +un +GQ +hI +tn +tn +tn +FO +th +lA +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +dA dA dA -ac ac ac ac @@ -34383,7 +34890,7 @@ aa aa aa "} -(112,1,1) = {" +(114,1,1) = {" aa aa aa @@ -34474,92 +34981,92 @@ ac ac ac ac -ac -ac -ad -ai -ad -bl -bl -bl -bl -bl -ad -ad -ai -ai -ad +Or +Or +Xx +Xx +FF +Or +Or +Xx +Xx +Os +Xx +Xx +Or +Or ac ac ac ac dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -eJ -fa +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +ea +ed +et +ea +cb +ea +TG +MT +NQ +TG +TG +TG +pf +GI +eI +ea +dZ dZ -HG -eu -gC -gP -RD -fV -hv -gR -hu -ic -is -iL ea -jv -jV -kv -io -ba -ba -ba -io -mL -io -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +hJ +AZ +VM +hI +hI +lA +lA +lA +rf +lA +lA +lA +hI +hI +hI +hI +Ns +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +dA dA dA -ac ac ac ac @@ -34640,7 +35147,7 @@ aa aa aa "} -(113,1,1) = {" +(115,1,1) = {" aa aa aa @@ -34731,89 +35238,89 @@ ac ac ac ac +Or +uA +Bq +Xx +Xx +Xx +Xx +Xx +Or +Or +Or +Or +Or +ac ac -ad -ad -ai -ad -ad -ad -ad -ad -ad -ad -ai -ai -ad -ad ac ac ac dA dA -dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -dZ -dZ -ea -ea -fb -ea -pg -ZC -FN -Td -ql -fV -hv -gR -hu -id -it -iM +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +wi +qK +Rf +Ii +LG +qD +Vy +rb +FV +UJ +UJ +UJ +fk +fk +An ea -jw -jX -ku -hI -ba -ba -ba -mv -lM -io -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tE +ah +eI +DI +ZM +OU +ru +Gi +Xc +Xc +Xc +Ao +Xc +Xc +ye +vL +UU +Ml +ao +kX +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -34897,7 +35404,7 @@ aa aa aa "} -(114,1,1) = {" +(116,1,1) = {" aa aa aa @@ -34987,605 +35494,91 @@ ac ac ac ac +Or +Or +FF +Xx +Nb +Xx +FF +Or +Or +Or ac -ad -ad -ai -ai -ag -ad -ad -ai -ai -bW -ai -ai -ad -ad ac ac ac ac -dA -dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ea -ed -et -ea -fc -ea -fV -gk -gE -fV -fV -fV -hv -hE -eI -ea -dZ -dZ -ea -hJ -jY -kx -hI -hI -io -io -io -mM -io -io -io -hI -hI -hI -hI -nW -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -dA -dA -dA -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(115,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ad -aj -aM -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ac ac ac ac ac dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -eb -ee -eu -eK -fd -fv -fW -gl -gF -gR -gR -gR +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +wi +JE +Uh +pJ +vb +UN +wj +Fy +iC +IR fk -hj -hN -ea -iu -iN -eI -EU -jZ -ky -kN -lf -lF -lF -lF -jG -lF -lF -no -zZ -nA -nK -Wf -dM -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -dA -dA -dA -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(116,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ad -ad -ag -ai -am -ai -ag -ad -ad -ad -ac -ac -ac -ac -ac -ac -ac -ac -ac -dA -dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -eb -ef -ev -eL -fe -fw -fX -gm -gG -gS -hj -hj -hj -hF -hN -ie -hj -hj -Mm -xO -jU -jF -jG -lg -lG -mg -mw -mN -mg -mg -mg -zZ -lM -lN -Wf -dM -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +fk +fk +ER +An +Ts +fk +fk +zt +Rx +Zl +Wg +Ao +rj +al +FL +Ru +Pf +FL +FL +FL +vL +th +wh +ao +kX +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA ac @@ -35758,14 +35751,14 @@ ac ac ac ac -ad -ag -ai -ai -aj -aj -ad -ad +Or +FF +Xx +Xx +uA +uA +Or +Or ac ac ac @@ -35779,70 +35772,70 @@ ac ac dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -dY +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +Vb ea ea dZ ea ea -fx +GE dZ ea dZ dZ -oT -oU -hw -hw -hN +tb +Iw +tx +tx +An ea -iv -iO +XC +Po eI -YH -ka -jF -kO -lh -lH -io -io +vI +LA +Wg +wg +Aj +zo +lA +lA hI -io -io -io +lA +lA +lA hI -nB -nL +FG +Je hI -nW -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +Ns +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA ac @@ -36015,13 +36008,13 @@ ac ac ac ac -as -ad -ad -ad -ad -ad -ad +ys +Or +Or +Or +Or +Or +Or ac ac ac @@ -36036,70 +36029,70 @@ ac ac dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn ea -ff -fy -eu -gn +Th +Ut +Rf +cA gH dZ ea -fV -hx -hG +TG +Qx +mX eI dZ ea ea ea hI -jZ -kz +ZM +JO hJ hJ hJ -io -ba -mO -ba -ba -ba +lA +tn +SL +tn +tn +tn hI hI hI hI -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA ac @@ -36293,70 +36286,70 @@ ac ac dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn ea -fg -fy -eu -go +ry +Ut +Rf +wE fk -gT +PG ea -hm -hy -hj -hj -if +Lp +St +fk +fk +Om dZ -ba -ba +tn +tn hJ -kb -kA +KT +uv hI -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA ac @@ -36550,70 +36543,70 @@ ac ac dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dZ -fh -fz -ee -gp +rF +Ym +qK +pw fk -gU +Qr dZ -hn -hj -hj -hj -ig +Nm +fk +fk +fk +Jd dZ -ba -ba -io -kc -kB -jC -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +lA +tg +NM +pz +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -36807,70 +36800,70 @@ ac ac dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dZ dZ ea ea -fi -fz -ee -gq +Vr +Ym +qK +pn gI -gV +Hx ea -eK -hz -hj -hF -ih +Ii +QK +fk +ER +SX ea -ba -ba -io -kd -kC -kP -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +lA +KM +ew +JQ +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -37064,70 +37057,70 @@ ac ac dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn ea -eg -eg +SR +SR eI -fj -fA -fZ +Og +Uj +Fj eJ eI eJ ea -ho -hA -hH -hO -ii +Nq +Sq +zd +Pw +JM ea -ba -ba -io -ke -kD -IH -li -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +lA +Et +PI +AS +AO +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -37321,24 +37314,24 @@ ac ac dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dZ -eh -eh -eM +qU +qU +Cu fk fB fk @@ -37352,39 +37345,39 @@ ea ea dZ ea -ba -hV +tn +Df hI -kf -kE +Ty +Yz hI -lj -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +QQ +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -37578,20 +37571,20 @@ ac ac dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dZ ei ex @@ -37603,45 +37596,45 @@ fk fk gX dZ -ba -ba -ba -ba -ba -ba -ba -ba -wX -kg -kE -io -ba -ba -ba -ba -ba -ba -ba -np -ba -nC -ja -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +Sv +Rm +Yz +lA +tn +tn +tn +tn +tn +tn +tn +aq +tn +PB +MJ +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -37835,70 +37828,70 @@ ac ac dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn ea -ej -ey -eO -fm -fD -ga -gs -gK -gY +xP +Ks +VC +Op +wI +GY +zn +vW +gB dZ -ba -ba -ba -ba -ba -ba -ba -ja -jB -Ik -kF -io -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +MJ +Do +yR +ze +lA +tn +tn +tn +tn +tn +tn +tn hI -jC -Bv -jC -jC -jC -jC -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +pz +qO +pz +pz +pz +pz +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -38093,69 +38086,69 @@ ac dA dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dZ -ek -ez -ez -fn -fE -gb -gt -gL -gZ +VE +uU +uU +HI +Lj +KR +vx +PP +Vw ea -ba -ba -ba -ba -ba -ba -ba -ba -jC -ki -kG -io -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +pz +OS +tA +lA +tn +tn +tn +tn +tn +tn +tn hI -KX -vN -nM -nS -nX -jC -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +gQ +Gx +Mg +IZ +Cw +pz +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -38350,19 +38343,19 @@ ac ac dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn ea ea eA @@ -38374,17 +38367,17 @@ gu eA ea ea -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn hJ hI hI -kj -kH +Xl +Cx hJ hJ hJ @@ -38394,25 +38387,25 @@ hI hI hJ hJ -WM -nF -kE -kB -kC -jC -jC -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +Av +FK +Yz +NM +ew +pz +pz +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -38592,34 +38585,34 @@ ac ac ac aU -bv -bF +OD +pl aU -bX -bX -cC -bX -bX -de -dl +wO +wO +Pn +wO +wO +yL +AT aU ac ac dA dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn ea el er @@ -38631,45 +38624,45 @@ gv gM ha ea -ba -ba -ba -ba -ba -hV +tn +tn +tn +tn +tn +Df hJ -jb -jD -jU -jF -kS -lk -lI -lI -lI -mP -mZ -ni -nq -kG -nG -kE -kE -kE -oa -jC -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +wL +zB +Zl +Wg +JC +EF +Rr +Rr +Rr +Wb +qm +zE +Iy +tA +PK +Yz +Yz +Yz +tW +pz +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -38849,34 +38842,34 @@ ac aU aU aU -bw +xv aU aU -bY -cn +ro +wb cD -cn -cn +wb +wb df -dm +Od aU aU aU aU dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn ea em eB @@ -38888,45 +38881,45 @@ en eB eq ea -ba -ba -ba -ba -ba -ba -io -jc -jF -jV -jG -kR -GN -lJ -mh -mx -mQ -kF -nj -mh -ny -mx -Jc -lJ -nY -uI -jC -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +lA +PZ +Wg +vE +Ao +fT +wQ +rG +Yj +sn +Rw +ze +aW +Yj +AB +sn +Ju +rG +Yp +Hg +pz +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -39105,35 +39098,35 @@ ac ac aU bd -yC -LE -JH +Du +iD +Sl aU -bZ -co -cE -cQ -cV -cE -dn +sc +CZ +Hl +Mc +HC +Hl +vJ aU -dw -dB +oN +AG aU -dL -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +qH +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn ea en en @@ -39145,45 +39138,45 @@ eq en eq ea -ba -ba -ba -ba -ba -ba -io -jd -jF -jU +tn +tn +tn +tn +tn +tn +lA +fU +Wg +Zl hI hI -lm +oM hJ hI hI -mR +Lc hJ hJ -kV +JZ hI hJ -nO +XT hJ hI hI hJ -lj -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +QQ +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -39362,35 +39355,35 @@ ac ac aU be -xg -LE -El -bO -ca -cp -ca -cR -cW -ca -ca -du -dx -TX -dI -dM -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +dX +iD +Ht +CB +Jn +Lz +Jn +Dq +GO +Jn +Jn +OR +Gm +Te +qN +kX +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn ec eo eq @@ -39402,45 +39395,45 @@ eq en hb ec -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn hJ -je -jG -jU +Yk +Ao +Zl hJ -kT -ln -lK +Bj +Co +KL hJ -my -mS -na +OL +Vk +XY hJ -lM +th hJ -nH -nP -nT +FA +YA +Fe hI -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -39619,35 +39612,35 @@ ac ac aU aU -ly -UZ -pM -bP -Um -RA -vq -qb -cX -vq -do +UL +PU +tj +ar +bI +oQ +wM +Mo +cI +wM +uj aU -dy -dD +HO +OK aU dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn ea ep eq @@ -39659,45 +39652,45 @@ eq eQ hc ea -ba -ba +tn +tn hI hI hJ hJ hJ jf -jF -jU +Wg +Zl hI -kU -lo -lL +Kb +hh +Ps hJ -mz -mT -nb +xR +iR +OJ hJ -qw +Cd hI -nI -ln -nU +KY +Co +Ji hJ -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -39876,35 +39869,35 @@ ac ac ac aU -EA -FJ -Al +GF +Ha +bN aU -bP -cr -cG +ar +Ce +on aU -cY -dg -DN +Nz +Vt +YT aU aU aU aU dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn ea eq eF @@ -39916,16 +39909,16 @@ eq en eq ea -ba -ba +tn +tn hI -hP +ZQ hJ -iw +MA hJ jg -jF -kk +Wg +Pm hI hJ hJ @@ -39935,26 +39928,26 @@ hJ hJ hJ hI -qw +Cd hI hJ hJ hJ hJ -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA ac @@ -40137,9 +40130,9 @@ at at at at -Ot -Jk -Rz +Zo +ya +ym aU aU aU @@ -40150,18 +40143,18 @@ ac dA dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn ea er em @@ -40173,45 +40166,45 @@ en eB eq ea -ba -ba +tn +tn hJ -hQ +Pl hI -ix +rI hJ hI -jH -kl -kI -kV -qw -lM -lN -lN -lN -lO -nk -ns +JU +uw +KK +JZ +Cd +th +wh +wh +wh +Cy +RH +MV hJ -lM -lN +th +wh hI -dM -ba -ba -ba -dM -dM -dM -od -ba -ba -ba -ba -ba -ba -ba +kX +tn +tn +tn +kX +kX +kX +yr +tn +tn +tn +tn +tn +tn +tn dA dA ac @@ -40385,40 +40378,40 @@ ac ac ac at -fY -aF -aN -aV -Se -bq -bA -MU +rE +oY +MK +wn +Kr +wB +JY +Kd at -cd -ca -Go +wl +Jn +tS aU -cZ -dh -dq +Cj +Ld +rw aU ac ac ac dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn ea el eH @@ -40430,45 +40423,45 @@ eH eq eq ea -ba -ba +tn +tn hI -hR -ij -im -iz -jh -jF -jG -kJ +aQ +Xy +pu +Li +OW +Wg +Ao +Ys hJ hJ -lN -mi -mA -mU -nc -nl -nt -nz -lN -nQ -nV -nZ -nZ -nZ -nZ -nZ -oc -dM -ba -ba -ba -ba -ba -ba -ba -ba +wh +Xh +rv +wW +Oa +zc +PD +Sm +wh +UV +Bx +Ro +Ro +Ro +Ro +Ro +Ia +kX +tn +tn +tn +tn +tn +tn +tn +tn dA dA ac @@ -40642,40 +40635,40 @@ ac ac ac at -az -II -qI -wP -aV -br -bB -RI +PS +Af +PV +vB +wn +pb +Aw +Fc at -ce -ca -QH -cT -da -di -dr +Yr +Jn +sB +OQ +Vf +Ds +Kf aU ac ac ac dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn ea ea ea @@ -40687,45 +40680,45 @@ ea ea ea ea -ba -ba +tn +tn hI -hS -ik -im -im +Xe +vC +pu +pu hJ -jI -jG -jF -rY +NT +Ao +Wg +WS hJ -lO +Cy hI hJ hI hI -vV +qk hI hI -qv -nR +lr +TT hJ -dM -ba -ba -ba -dM -dM -dM -ba -oe -ba -ba -ba -ba -ba -ba +kX +tn +tn +tn +kX +kX +kX +tn +TN +tn +tn +tn +tn +tn +tn dA dA ac @@ -40899,18 +40892,18 @@ ac ac ac at -aA -OT -aP -Yx -bg -bs -bC -bC -bQ -cf -ct -Nf +Gz +OF +xx +uL +yZ +tL +vD +vD +Xk +DG +YX +EE aU aU aU @@ -40922,67 +40915,67 @@ ac dA dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn hI hI hI -iy +pG hJ hI -jJ -jG -jG -CL +nw +Ao +Ao +Pa hI -lM +th hI -ba -ba +tn +tn hI -nm -qw +xm +Cd hI hJ hJ hJ -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA ac @@ -41156,22 +41149,22 @@ ac ac ac at -aB -In -Pq -Uo -bh -bt -bD -yT +Fv +Qf +Kg +yo +Em +YZ +Ln +kQ at -cg -cu -Go -cU -db -dj -ds +Bi +jk +tS +zM +IA +Rb +ZN aU ac ac @@ -41179,67 +41172,67 @@ ac ac dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn hI -hT -il -iz -iP +GX +EQ +Li +Sz hI -jK -jF -jF -LV +vF +Wg +Wg +VP hJ -qw +Cd hI -ba -ba +tn +tn hI -mM +rf hI hI -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA ac @@ -41413,22 +41406,22 @@ ac ac ac at -TM -aB -aR -aZ -CJ -bu -bE -eP +VN +Fv +Jq +GP +zi +up +Nw +bo at -DR -zT -NJ +nE +HU +PX aU -dc -dk -dt +GR +HN +Gu aU ac ac @@ -41436,67 +41429,67 @@ ac ac dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn hI -hU -im -im -iP +ZW +pu +pu +Sz hI -jL -jF -jG -KQ +kL +Wg +Ao +CC hJ -lN +wh hJ -ba -ba -dM -dM -nu -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +kX +kX +Kt +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA ac @@ -41680,7 +41673,7 @@ at at at at -cw +rh at at aU @@ -41693,66 +41686,66 @@ ac ac dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn hI hI -in -iA +EN +os hI hI -jM -km -km -jM +EM +yH +yH +EM hJ -kV +JZ hJ hJ hJ -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -41935,10 +41928,10 @@ ac ac ac at -bR -ci -cx -cM +pt +Ie +yP +pD at ac ac @@ -41949,67 +41942,67 @@ ac ac ac dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn hI hJ hJ hJ -vM -LQ -LQ -LQ -EH -Hc -LQ -yU +yV +Tv +Tv +Tv +lB +MY +Tv +oq mB hJ -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -42192,10 +42185,10 @@ ac ac ac at -bS -yy -cy -cN +xE +Ke +px +eG at ac ac @@ -42206,67 +42199,67 @@ ac ac ac ac -ba -dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -io -Bn -xH -zl -LQ -LQ -LQ -wp -xG -zl -yU +tn +dA +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +lA +EV +Zp +RU +Tv +Tv +Tv +Tx +Xg +RU +oq mB hI -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA ac @@ -42449,10 +42442,10 @@ ac ac ac at -bT -ck -cz -cO +lz +sP +WJ +RC at ac ac @@ -42462,68 +42455,68 @@ ac ac ac ac -ba -ba -dA -dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -io -ZB -Ey -zl -LQ -LQ -Ul -LQ -LQ -LQ -zl +tn +tn +dA +dA +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +lA +PY +Mz +RU +Tv +Tv +NY +Tv +Tv +Tv +RU mC hI -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA ac @@ -42706,10 +42699,10 @@ ac ac ac at -bU -cl -Hv -cN +Re +Ay +op +eG at ac ac @@ -42719,68 +42712,68 @@ ac ac ac ac -ba +tn ac dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -io -WB -Xd -LQ -wp -LQ -yh -LQ -so -LQ -qo +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +lA +QN +Xo +Tv +Tx +Tv +Cg +Tv +PQ +Tv +tN hI hJ -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA ac @@ -42963,10 +42956,10 @@ ac ac ac at -bV -cm -cB -cP +zj +Hq +WX +uZ at ac ac @@ -42975,69 +42968,69 @@ ac ac ac ac -ba -ba +tn +tn ac dA dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -hV +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +Df hJ hJ iT -jl -jl -jl -jl -jl +Rj +Rj +Rj +Rj +Rj hJ lQ hJ hJ -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA ac @@ -43231,69 +43224,69 @@ ac ac ac ac -ba -ba +tn +tn ac ac ac dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn hJ hJ -jm -jO -kn -jO -jO +NE +yv +Nv +yv +yv hJ lR lR hJ hJ -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -43487,8 +43480,8 @@ ac ac ac ac -ba -ba +tn +tn ac ac ac @@ -43496,29 +43489,29 @@ ac dA dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn hJ iU iX @@ -43530,27 +43523,27 @@ lt lR lS mD -io -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +lA +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA ac @@ -43743,8 +43736,8 @@ ac ac ac ac -ba -ba +tn +tn ac ac ac @@ -43753,31 +43746,31 @@ ac ac dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn hI -iV +kh jn jP kp @@ -43787,26 +43780,26 @@ iX lS lR mE -io -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +lA +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -44000,7 +43993,7 @@ ac ac ac ac -ba +tn ac ac ac @@ -44011,30 +44004,30 @@ ac dA dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn hI -iW +AE iX jQ kq @@ -44044,26 +44037,26 @@ iX lR lR mF -io -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +lA +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA ac @@ -44256,8 +44249,8 @@ ac ac ac ac -ba -ba +tn +tn ac ac ac @@ -44268,28 +44261,28 @@ ac ac dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn hJ iX iX @@ -44302,24 +44295,24 @@ lT ml hI hI -lj -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +QQ +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -44508,14 +44501,14 @@ ac ac ac ac -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn ac ac ac @@ -44526,57 +44519,57 @@ ac dA dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn hI iY jo jR ks -HV +Tr hJ -lu +nN hJ hJ hI -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA ac @@ -44768,11 +44761,11 @@ ac ac ac ac -ba -ba +tn +tn ac ac -ba +tn ac ac ac @@ -44784,54 +44777,54 @@ ac dA dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn hJ hJ hI -io +lA hJ hJ hJ -lv -lv -mm +GA +GA +QX hJ -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -45024,12 +45017,12 @@ ac ac ac ac -ba -ba +tn +tn ac ac ac -ba +tn ac ac ac @@ -45041,53 +45034,53 @@ ac dA dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn hI -lw -lv -mn +No +GA +TF hJ -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -45271,7 +45264,7 @@ ac ac ac ac -ba +tn ac ac ac @@ -45279,14 +45272,14 @@ ac ac ac ac -ba -ba -ba +tn +tn +tn ac ac ac ac -ba +tn ac ac ac @@ -45299,52 +45292,52 @@ ac dA dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn hI -lx -lU -mo +AF +XX +NG hI -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA ac @@ -45527,23 +45520,23 @@ ac ac ac ac -aS -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +Io +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn ac ac ac ac -ba -ba +tn +tn ac ac ac @@ -45556,50 +45549,50 @@ ac ac dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn hJ hJ hJ hI hI -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -45790,7 +45783,7 @@ ac ac ac ac -ba +tn ac ac ac @@ -45799,8 +45792,8 @@ ac ac ac ac -ba -dE +tn +xz ac ac ac @@ -45814,47 +45807,47 @@ ac dA dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -46047,7 +46040,7 @@ ac ac ac ac -ba +tn ac ac ac @@ -46056,8 +46049,8 @@ ac ac ac ac -ba -dF +tn +cS ac ac ac @@ -46072,44 +46065,44 @@ dA dA dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -46304,7 +46297,7 @@ ac ac ac ac -ba +tn ac ac ac @@ -46313,9 +46306,9 @@ ac ac ac ac -ba -ba -ba +tn +tn +tn ac ac ac @@ -46330,41 +46323,41 @@ ac dA dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -46561,7 +46554,7 @@ ac ac ac ac -ba +tn ac ac ac @@ -46570,10 +46563,10 @@ ac ac ac ac -ba -ba -ba -dN +tn +tn +tn +Ll ac ac ac @@ -46588,38 +46581,38 @@ dA dA dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -46826,12 +46819,12 @@ ac ac ac ac -ba -ba -dE -ba -ba -ba +tn +tn +xz +tn +tn +tn ac ac ac @@ -46848,33 +46841,33 @@ dA dA dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -47083,12 +47076,12 @@ ac ac ac ac -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn ac ac ac @@ -47111,20 +47104,20 @@ dA dA dA dA -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn +tn dA dA dA @@ -47340,12 +47333,12 @@ ac ac ac ac -dv -ba -dG -ba -ba -ba +oL +tn +La +tn +tn +tn ac ac ac @@ -47598,11 +47591,11 @@ ac ac ac ac -dz -dH -dJ -ba -ba +DP +zI +Rd +tn +tn ac ac ac @@ -47856,8 +47849,8 @@ ac ac ac ac -ba -dK +tn +zF ac ac ac diff --git a/_maps/RandomZLevels/undergroundoutpost45.dmm b/_maps/RandomZLevels/undergroundoutpost45.dmm index b07ed2c46f8bb..8e823527c10bc 100644 --- a/_maps/RandomZLevels/undergroundoutpost45.dmm +++ b/_maps/RandomZLevels/undergroundoutpost45.dmm @@ -5,13 +5,6 @@ "ab" = ( /turf/closed/indestructible/riveted, /area/awaymission/undergroundoutpost45/caves) -"ac" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron{ - dir = 8; - icon_state = "damaged2" - }, -/area/awaymission/undergroundoutpost45/central) "ad" = ( /turf/closed/mineral/random/labormineral, /area/awaymission/undergroundoutpost45/caves) @@ -24,91 +17,70 @@ "ag" = ( /turf/closed/wall/mineral/titanium, /area/awaymission/undergroundoutpost45/central) -"aj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron{ - dir = 8; - icon_state = "damaged1" - }, -/area/awaymission/undergroundoutpost45/central) -"an" = ( -/turf/closed/wall/r_wall/rust, -/area/awaymission/undergroundoutpost45/central) -"ao" = ( -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/central) -"ap" = ( -/obj/machinery/light/small/broken{ - dir = 4 +"ah" = ( +/obj/structure/cable{ + icon_state = "1-4" }, -/turf/open/floor/iron{ - dir = 8; - icon_state = "floorscorched2" +/obj/structure/disposalpipe/segment{ + dir = 5 }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"ai" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, /area/awaymission/undergroundoutpost45/central) -"aq" = ( -/obj/machinery/button/door{ - desc = "A remote control-switch for the elevator doors."; - id = "UO45_Elevator"; - name = "Elevator Doors"; - pixel_x = 6; - pixel_y = -24 - }, -/obj/machinery/button/door{ - desc = "A remote control-switch to call the elevator to your level."; - id = "UO45_useless"; - name = "B1"; - pixel_x = -6; - pixel_y = -24 +"ak" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + broken = 1 }, -/obj/machinery/button/door{ - desc = "A remote control-switch to call the elevator to your level."; - id = "UO45_useless"; - name = "B2"; - pixel_x = -6; - pixel_y = -34 +/area/awaymission/undergroundoutpost45/crew_quarters) +"al" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/iron{ - dir = 8; - icon_state = "damaged4" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/awaymission/undergroundoutpost45/central) -"ar" = ( -/turf/open/floor/iron{ - dir = 8; - icon_state = "damaged3" +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/area/awaymission/undergroundoutpost45/central) -"as" = ( -/obj/machinery/door/poddoor{ - id = "UO45_Elevator" +/turf/open/floor/plating{ + burnt = 1 }, -/obj/effect/turf_decal/delivery, +/area/awaymission/undergroundoutpost45/research) +"am" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"an" = ( +/turf/closed/wall/r_wall/rust, /area/awaymission/undergroundoutpost45/central) -"at" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, +"av" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"au" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/breath, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/central) -"aw" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Bar"; - network = list("uo45") +/area/awaymission/undergroundoutpost45/engineering) +"az" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, +/turf/open/floor/plating, /area/awaymission/undergroundoutpost45/crew_quarters) -"ax" = ( -/obj/effect/landmark/awaystart, -/turf/open/floor/iron, +"aA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"aB" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, /area/awaymission/undergroundoutpost45/central) "aC" = ( /turf/closed/wall, @@ -116,258 +88,150 @@ "aD" = ( /turf/closed/wall/rust, /area/awaymission/undergroundoutpost45/central) -"aF" = ( +"aE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"aG" = ( -/obj/machinery/button/door{ - desc = "A remote control-switch to call the elevator to your level."; - id = "UO45_useless"; - name = "Call Elevator"; - pixel_x = -6; - pixel_y = 24 - }, -/obj/machinery/button/door{ - desc = "A remote control-switch for the elevator doors."; - id = "UO45_Elevator"; - name = "Elevator Doors"; - pixel_x = 6; - pixel_y = 24 - }, -/turf/open/floor/iron, +/turf/open/floor/iron/dark, /area/awaymission/undergroundoutpost45/central) -"aH" = ( -/obj/structure/sign/poster/official/nanotrasen_logo{ - pixel_y = 32 +"aL" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/crew_quarters) +"aT" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Office"; + req_access_txt = "201" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"aI" = ( -/obj/effect/decal/cleanable/dirt, +/area/awaymission/undergroundoutpost45/engineering) +"aV" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"aJ" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/central) -"aK" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/breath, -/obj/structure/sign/poster/official/safety_internals{ - pixel_x = -32 - }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/central) -"aM" = ( -/obj/machinery/vending/cola, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/central) -"aN" = ( -/obj/machinery/light{ +/turf/open/floor/iron/white/side{ dir = 8 }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"aO" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"aP" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"aQ" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 +/area/awaymission/undergroundoutpost45/research) +"aW" = ( +/obj/machinery/gateway/centeraway{ + calibrated = 0 }, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"aX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"aR" = ( -/obj/machinery/light{ - dir = 4 +/area/awaymission/undergroundoutpost45/crew_quarters) +"ba" = ( +/obj/machinery/airalarm/all_access{ + dir = 4; + pixel_x = -23 }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"aS" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"aU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/closet/secure_closet/personal/cabinet{ - locked = 0; - req_access_txt = "201" +/area/awaymission/undergroundoutpost45/mining) +"bb" = ( +/obj/structure/toilet{ + dir = 1 }, -/obj/item/clothing/under/misc/pj/blue, -/turf/open/floor/carpet, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/iron/freezer, /area/awaymission/undergroundoutpost45/central) -"aZ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ +"bc" = ( +/obj/machinery/light/small{ dir = 8 }, -/obj/structure/closet/secure_closet/personal/cabinet{ - locked = 0; - req_access_txt = "201" +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" }, -/obj/item/clothing/under/suit/black/skirt, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/central) +/area/awaymission/undergroundoutpost45/research) "bd" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/space, /area/awaymission/undergroundoutpost45/central) -"bi" = ( -/obj/structure/sink{ - pixel_y = 25 - }, -/turf/open/floor/iron/freezer, -/area/awaymission/undergroundoutpost45/central) -"bj" = ( -/obj/structure/sink{ - pixel_y = 25 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/freezer, -/area/awaymission/undergroundoutpost45/central) -"bk" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"bp" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating{ - broken = 1 +"be" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Office"; + req_access_txt = "201" }, +/turf/open/floor/iron/white, /area/awaymission/undergroundoutpost45/research) -"bq" = ( -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"br" = ( -/obj/machinery/door/airlock/maintenance, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"bs" = ( +"bg" = ( +/obj/structure/closet/crate, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/freezer, -/area/awaymission/undergroundoutpost45/central) -"bt" = ( -/obj/machinery/light/small, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -23 +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 }, -/turf/open/floor/iron/freezer, -/area/awaymission/undergroundoutpost45/central) -"bu" = ( -/turf/open/floor/iron/freezer, +/obj/item/multitool, +/turf/open/floor/plating, /area/awaymission/undergroundoutpost45/central) -"bv" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" +"bl" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 }, -/turf/open/floor/iron/freezer, -/area/awaymission/undergroundoutpost45/central) -"bx" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/obj/effect/turf_decal/tile/purple{ + dir = 4 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"by" = ( -/obj/machinery/door/airlock{ - name = "Unit 2" +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"bm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/meter{ + name = "Mixed Air Tank Out" }, -/turf/open/floor/iron/freezer, -/area/awaymission/undergroundoutpost45/central) -"bz" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/engineering) +"bn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/open/floor/iron/freezer, -/area/awaymission/undergroundoutpost45/central) -"bA" = ( -/obj/machinery/light{ - dir = 8 + id_tag = "awaydorm2"; + name = "Dorm 2" }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) -"bB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, +"bw" = ( +/obj/machinery/vending/hydronutrients, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron/dark, /area/awaymission/undergroundoutpost45/central) -"bG" = ( +"bC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"bH" = ( -/obj/machinery/light{ dir = 4 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"bI" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/iron/freezer, -/area/awaymission/undergroundoutpost45/central) -"bJ" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/freezer, -/area/awaymission/undergroundoutpost45/central) -"bK" = ( -/obj/structure/sign/poster/official/nanotrasen_logo{ - pixel_y = -32 +/obj/structure/cable{ + icon_state = "4-8" }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"bL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/area/awaymission/undergroundoutpost45/mining) +"bD" = ( +/obj/machinery/airalarm/all_access{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"bM" = ( +/area/awaymission/undergroundoutpost45/mining) +"bE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) -"bN" = ( +"bF" = ( +/obj/structure/closet/l3closet, /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/official/nanotrasen_logo{ - pixel_y = -32 +/turf/open/floor/iron/white/side{ + dir = 1 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) +/area/awaymission/undergroundoutpost45/research) "bO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 @@ -392,17 +256,6 @@ }, /turf/closed/wall, /area/awaymission/undergroundoutpost45/central) -"bS" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"bT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) "bU" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 @@ -415,1012 +268,490 @@ }, /turf/closed/wall, /area/awaymission/undergroundoutpost45/central) -"bW" = ( -/obj/structure/glowshroom/single, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 351.9; - name = "Cave Floor" +"ck" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 }, -/area/awaymission/undergroundoutpost45/caves) -"bX" = ( -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 351.9; - name = "Cave Floor" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/awaymission/undergroundoutpost45/research) +"cl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 }, -/area/awaymission/undergroundoutpost45/caves) -"bY" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"cn" = ( +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"co" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/rust, /area/awaymission/undergroundoutpost45/central) -"ca" = ( +"cp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, +/turf/closed/wall, /area/awaymission/undergroundoutpost45/central) -"cb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, +"cr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/rust, /area/awaymission/undergroundoutpost45/central) -"cc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, +"cy" = ( +/obj/structure/table, +/obj/item/book/manual/hydroponics_pod_people, +/obj/item/paper/guides/jobs/hydroponics, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron/dark, /area/awaymission/undergroundoutpost45/central) -"cd" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 +"cC" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, +/obj/machinery/door/airlock/command{ + name = "Gateway Chamber"; + req_access_txt = "201" + }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/gateway) +"cF" = ( +/obj/effect/landmark/awaystart, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) -"cf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +"cG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"cO" = ( +/obj/structure/cable{ + icon_state = "1-2" }, +/obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"cg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/turf/open/floor/plating{ + burnt = 1 }, -/obj/machinery/door/airlock/maintenance, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"ch" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/area/awaymission/undergroundoutpost45/research) +"cR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"cV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall/rust, /area/awaymission/undergroundoutpost45/central) -"ci" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +"dd" = ( +/obj/machinery/computer/monitor/secret{ + dir = 1; + name = "primary power monitoring console" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"cj" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 +/area/awaymission/undergroundoutpost45/engineering) +"de" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/turf/open/floor/plating, +/turf/closed/wall, /area/awaymission/undergroundoutpost45/central) -"cm" = ( +"df" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"co" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall/rust, /area/awaymission/undergroundoutpost45/central) -"cp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/awaymission/undergroundoutpost45/central) -"cq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"cr" = ( +"di" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/rust, -/area/awaymission/undergroundoutpost45/central) -"cs" = ( -/obj/machinery/light/small{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 8 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"ct" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/area/awaymission/undergroundoutpost45/mining) +"dj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "UO45_Engineering"; + name = "engineering Security Door" + }, /turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/engineering) +"dp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, /area/awaymission/undergroundoutpost45/central) -"cu" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"cv" = ( -/obj/structure/closet, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"cw" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/central) -"cx" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 23; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/central) -"cA" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 23; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/central) -"cB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table/wood, -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/central) -"cD" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/breath, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"cE" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"cH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "awaydorm2"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_y = -25; - specialfunctions = 4 - }, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/central) -"cI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/central) -"cJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/central) -"cK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/central) -"cL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "awaydorm1"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_y = -25; - specialfunctions = 4 - }, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/central) -"cM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"cN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"cP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"cQ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"cS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/structure/window{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"cT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"cU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"cV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall/rust, -/area/awaymission/undergroundoutpost45/central) -"cW" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"cX" = ( -/obj/item/stack/rods, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"cY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/grille, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"cZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock{ - id_tag = "awaydorm2"; - name = "Dorm 2" - }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"da" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"db" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock{ - id_tag = "awaydorm1"; - name = "Dorm 1" - }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"dc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/closet, -/obj/item/poster/random_contraband, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"de" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/awaymission/undergroundoutpost45/central) -"df" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/rust, -/area/awaymission/undergroundoutpost45/central) -"dg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/stack/rods, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"dh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"dk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"dl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"dm" = ( -/obj/machinery/firealarm{ - pixel_y = 24 +"dr" = ( +/obj/structure/alien/weeds, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" }, +/area/awaymission/undergroundoutpost45/caves) +"ds" = ( /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"dn" = ( -/obj/machinery/light{ - dir = 1 - }, +/area/awaymission/undergroundoutpost45/gateway) +"dt" = ( /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"do" = ( -/obj/item/kirbyplants, +/area/awaymission/undergroundoutpost45/engineering) +"du" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"dp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/awaymission/undergroundoutpost45/central) +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/research) "dv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall/r_wall, /area/awaymission/undergroundoutpost45/central) -"dw" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/iron{ - dir = 8; - icon_state = "floorscorched1" - }, -/area/awaymission/undergroundoutpost45/central) -"dx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 +"dD" = ( +/obj/structure/cable{ + icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"dy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"dz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"dA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"dG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/obj/machinery/atmospherics/pipe/simple/supply/visible{ dir = 4 }, -/turf/open/floor/plating{ - broken = 1 - }, -/area/awaymission/undergroundoutpost45/central) -"dO" = ( -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/storage/fancy/egg_box, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/freezer{ - locked = 0; - name = "refrigerator"; - req_access_txt = "201" - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/awaymission/undergroundoutpost45/crew_quarters) -"dR" = ( -/obj/machinery/door/airlock/security{ - name = "Security Checkpoint"; - req_access_txt = "201" - }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"dS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 +/area/awaymission/undergroundoutpost45/engineering) +"dE" = ( +/obj/structure/sink{ + pixel_y = 25 }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, +/turf/open/floor/iron/freezer, /area/awaymission/undergroundoutpost45/central) -"dV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ +"dF" = ( +/obj/structure/chair/wood/normal{ dir = 8 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"dW" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"dY" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Hydroponics"; - req_access_txt = "201" - }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"dZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"ea" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"eb" = ( -/obj/machinery/hydroponics/constructable, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/central) -"ec" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"ed" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/command{ - name = "Gateway Chamber"; - req_access_txt = "201" - }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/gateway) -"ee" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/crew_quarters) +"dH" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 }, /turf/open/floor/plating, /area/awaymission/undergroundoutpost45/central) -"ef" = ( +"dI" = ( +/obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/door/airlock/maintenance{ - name = "Security Checkpoint Maintenance"; - req_access_txt = "201" - }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"eh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"ej" = ( -/obj/effect/turf_decal/tile/red{ +/obj/effect/turf_decal/tile/neutral{ dir = 8 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"el" = ( -/obj/effect/spawner/structure/window, +/area/awaymission/undergroundoutpost45/crew_quarters) +"dJ" = ( +/obj/machinery/door/airlock/external, /turf/open/floor/plating, /area/awaymission/undergroundoutpost45/central) -"en" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"eo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Hydroponics"; - req_access_txt = "201" - }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"ep" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 +"dK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"eq" = ( +/obj/item/stack/rods, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/crew_quarters) +"dL" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"dM" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"es" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/closed/wall, -/area/awaymission/undergroundoutpost45/central) -"eu" = ( -/turf/open/floor/plating{ - icon_plating = "asteroidplating"; - icon_state = "asteroidplating"; - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9 - }, -/area/awaymission/undergroundoutpost45/caves) -"ev" = ( -/obj/item/clothing/under/misc/pj, -/obj/structure/closet/secure_closet/personal/cabinet{ - locked = 0; - req_access_txt = "201" +/area/awaymission/undergroundoutpost45/engineering) +"dN" = ( +/obj/item/kirbyplants, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"dP" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster{ + pixel_y = -28 }, +/obj/item/pen, /turf/open/floor/carpet, /area/awaymission/undergroundoutpost45/crew_quarters) -"ex" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/machinery/door/window/southleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Security Checkpoint"; - req_access_txt = "201" - }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"eA" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/awaymission/undergroundoutpost45/central) -"eB" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass, -/area/awaymission/undergroundoutpost45/central) -"eD" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, +"dT" = ( +/obj/effect/turf_decal/tile/green, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) -"eF" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"eG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +"dU" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 4 }, -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"eH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"eI" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"eJ" = ( /turf/open/floor/plating/asteroid{ initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; initial_temperature = 363.9; name = "Cave Floor" }, /area/awaymission/undergroundoutpost45/caves) -"eM" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder/red, -/obj/machinery/door/window/southleft{ - dir = 8; - name = "Security Checkpoint"; - req_access_txt = "201" +"eg" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Engineering Hallway"; + network = list("uo45") }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"eO" = ( +/area/awaymission/undergroundoutpost45/crew_quarters) +"ei" = ( /obj/structure/flora/ausbushes/ywflowers, /turf/open/floor/grass, /area/awaymission/undergroundoutpost45/central) -"eP" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"eQ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/southleft{ - dir = 4; - name = "Hydroponics Desk"; +"ek" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/external{ + name = "Mining External Airlock"; req_access_txt = "201" }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"eR" = ( -/obj/structure/chair/stool, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"eS" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"eV" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/breath, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"eZ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"fb" = ( -/obj/effect/turf_decal/tile/green, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"fd" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/southleft{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Hydroponics Desk"; - req_access_txt = "201" +/area/awaymission/undergroundoutpost45/mining) +"em" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/crew_quarters) +"er" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "N2 Outlet Pump" }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"fg" = ( -/obj/machinery/light/small/broken{ +/area/awaymission/undergroundoutpost45/engineering) +"es" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, -/turf/open/floor/plating{ - broken = 1 - }, -/area/awaymission/undergroundoutpost45/central) -"fm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall/rust, +/turf/closed/wall, /area/awaymission/undergroundoutpost45/central) -"fn" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" +"et" = ( +/obj/structure/cable, +/obj/machinery/power/apc/highcap/fifteen_k{ + locked = 0; + name = "UO45 Mining APC"; + pixel_y = -23; + start_charge = 100 }, -/area/awaymission/undergroundoutpost45/central) -"fo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/awaymission/undergroundoutpost45/central) -"fp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/tile/neutral{ +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"fr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 +/obj/structure/closet/secure_closet/engineering_personal{ + icon_state = "mining"; + locked = 0; + name = "miner's equipment"; + req_access = null; + req_access_txt = "201" }, +/obj/item/storage/backpack/satchel/eng, +/obj/item/clothing/gloves/fingerless, +/obj/effect/turf_decal/tile/brown, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"ft" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/shovel/spade, -/obj/item/wrench, -/obj/item/screwdriver, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/central) -"fu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/central) -"fw" = ( -/obj/structure/disposalpipe/segment{ +/area/awaymission/undergroundoutpost45/mining) +"ew" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/computer/station_alert{ dir = 4 }, -/obj/structure/cable{ - icon_state = "1-4" +/obj/effect/turf_decal/tile/yellow{ + dir = 8 }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/central) -"fx" = ( +/turf/open/floor/iron/checker, +/area/awaymission/undergroundoutpost45/engineering) +"ey" = ( /obj/structure/cable{ icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/door/airlock/maintenance{ - name = "Hydroponics Maintenance"; - req_access_txt = "201" +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 }, /turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"fy" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, +/area/awaymission/undergroundoutpost45/research) +"ez" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"eK" = ( +/obj/effect/spawner/structure/window/reinforced, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"fA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/chair/wood/normal, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/central) -"fB" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/central) -"fC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "awaydorm3"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_y = 25; - specialfunctions = 4 - }, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/central) -"fD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock{ - id_tag = "awaydorm3"; - name = "Dorm 3" - }, +/area/awaymission/undergroundoutpost45/crew_quarters) +"eL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) -"fE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +"eN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"fF" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, +/area/awaymission/undergroundoutpost45/gateway) +"eT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"fG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 +/area/awaymission/undergroundoutpost45/crew_quarters) +"eU" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"fH" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 +/area/awaymission/undergroundoutpost45/engineering) +"eW" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/cigarettes{ + pixel_x = -2 }, +/obj/item/lighter{ + pixel_x = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"fI" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 +/area/awaymission/undergroundoutpost45/engineering) +"eY" = ( +/obj/machinery/airalarm/all_access{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Gateway Chamber"; + network = list("uo45","uo45r") }, /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/eat{ - pixel_x = 32 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/gateway) +"fa" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 8 }, -/obj/effect/turf_decal/tile/green{ - dir = 4 +/obj/machinery/meter/atmos{ + id_tag = "UO45_waste_meter"; + name = "Waste Loop" }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"fJ" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/area/awaymission/undergroundoutpost45/engineering) +"fc" = ( +/obj/structure/ore_box, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"fh" = ( /turf/open/floor/plating/asteroid{ initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; initial_temperature = 363.9; name = "Cave Floor" }, -/area/awaymission/undergroundoutpost45/central) -"fK" = ( -/turf/closed/wall/r_wall, -/area/awaymission/undergroundoutpost45/crew_quarters) -"fL" = ( -/obj/machinery/smartfridge, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"fM" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/eastleft{ - dir = 1; - name = "Hydroponics Desk"; - req_access_txt = "201" - }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/crew_quarters) -"fN" = ( -/turf/closed/wall/rust, -/area/awaymission/undergroundoutpost45/crew_quarters) -"fO" = ( -/turf/closed/wall, -/area/awaymission/undergroundoutpost45/crew_quarters) -"fQ" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/central) -"fR" = ( -/obj/machinery/light/small, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -23 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/dresser, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/central) -"fS" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/central) -"fT" = ( -/obj/item/kirbyplants, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"fU" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 +/area/awaymission/undergroundoutpost45/caves) +"fj" = ( +/obj/structure/table/glass, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/micro_laser, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white/side{ + dir = 8 }, -/obj/machinery/camera/directional/south{ - c_tag = "Central Hallway"; - network = list("uo45") +/area/awaymission/undergroundoutpost45/research) +"fk" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"fV" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -28 +/obj/machinery/light/small{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/all_access{ + dir = 4; + pixel_x = 23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"fW" = ( -/obj/machinery/vending/snack, +/area/awaymission/undergroundoutpost45/engineering) +"fl" = ( +/obj/machinery/gateway, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"fm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall/rust, /area/awaymission/undergroundoutpost45/central) -"fX" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/iron/dark, +"fo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, /area/awaymission/undergroundoutpost45/central) -"fY" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 +"fs" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 }, -/obj/structure/sign/warning/deathsposal{ - desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'"; - name = "\improper DISPOSAL: LEADS TO EXTERIOR"; - pixel_y = -32 +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/central) -"fZ" = ( -/turf/open/floor/iron/showroomfloor, +/area/awaymission/undergroundoutpost45/research) +"fv" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"ga" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/turf/open/floor/iron/showroomfloor, +"fK" = ( +/turf/closed/wall/r_wall, /area/awaymission/undergroundoutpost45/crew_quarters) -"gb" = ( -/obj/structure/cable{ - icon_state = "1-2" +"fN" = ( +/turf/closed/wall/rust, +/area/awaymission/undergroundoutpost45/crew_quarters) +"fO" = ( +/turf/closed/wall, +/area/awaymission/undergroundoutpost45/crew_quarters) +"fP" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mining Maintenance"; + req_access_txt = "201" }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) +/area/awaymission/undergroundoutpost45/mining) "gc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 @@ -1433,104 +764,27 @@ }, /turf/closed/wall/r_wall, /area/awaymission/undergroundoutpost45/central) -"ge" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"gf" = ( -/obj/structure/glowshroom/single, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" - }, -/area/awaymission/undergroundoutpost45/caves) "gg" = ( /turf/closed/wall/r_wall/rust, /area/awaymission/undergroundoutpost45/crew_quarters) -"gh" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/awaymission/undergroundoutpost45/crew_quarters) -"gi" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Kitchen Maintenance"; - req_access_txt = "201" - }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/crew_quarters) -"gj" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 +"gk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"gl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"gm" = ( -/obj/structure/closet/crate{ - desc = "It's a storage unit for kitchen clothes and equipment."; - name = "Kitchen Crate" - }, -/obj/item/storage/box/mousetraps, -/obj/item/clothing/under/suit/waiter, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/showroomfloor, -/area/awaymission/undergroundoutpost45/crew_quarters) -"gn" = ( -/obj/item/tank/internals/air, -/obj/item/clothing/mask/gas, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/research) -"go" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"gq" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 +"gp" = ( +/obj/machinery/light/small{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"gr" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/crew_quarters) -"gs" = ( -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"gt" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"gu" = ( -/obj/machinery/door/airlock{ - name = "Kitchen Cold Room"; - req_access_txt = "201" - }, -/turf/open/floor/iron/showroomfloor, -/area/awaymission/undergroundoutpost45/crew_quarters) "gv" = ( /turf/closed/wall/r_wall, /area/awaymission/undergroundoutpost45/gateway) @@ -1546,227 +800,101 @@ "gz" = ( /turf/closed/wall/r_wall, /area/awaymission/undergroundoutpost45/research) -"gA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"gB" = ( -/obj/machinery/light/small, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" - }, -/area/awaymission/undergroundoutpost45/crew_quarters) -"gC" = ( -/obj/machinery/vending/dinnerware, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/awaymission/undergroundoutpost45/crew_quarters) -"gD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/awaymission/undergroundoutpost45/crew_quarters) -"gE" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/awaymission/undergroundoutpost45/crew_quarters) -"gF" = ( -/obj/structure/table, -/obj/item/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/awaymission/undergroundoutpost45/crew_quarters) -"gG" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/awaymission/undergroundoutpost45/crew_quarters) -"gH" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"gI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"gJ" = ( -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) "gK" = ( /turf/closed/wall, /area/awaymission/undergroundoutpost45/gateway) "gL" = ( /turf/closed/wall/rust, /area/awaymission/undergroundoutpost45/gateway) -"gM" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 16; - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/iron{ - amount = 23 - }, -/turf/open/floor/iron/white/side, -/area/awaymission/undergroundoutpost45/research) -"gN" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/iron/white/side, -/area/awaymission/undergroundoutpost45/research) -"gO" = ( -/turf/open/floor/iron/cafeteria{ - dir = 5 +"gQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" }, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"gP" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 +"gR" = ( +/obj/machinery/light/small{ + dir = 1 }, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/obj/structure/toilet{ + dir = 4 }, +/turf/open/floor/iron/freezer, /area/awaymission/undergroundoutpost45/crew_quarters) -"gU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/gateway) -"gV" = ( -/obj/structure/table, -/obj/item/folder/white, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"gW" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"gX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"gY" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 23; - dir = 1 - }, -/obj/machinery/light/small{ - dir = 1 +"gS" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 }, -/obj/machinery/camera/directional/north{ - c_tag = "Research Lab"; - network = list("uo45","uo45r") +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sink{ + pixel_y = 25 }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"gZ" = ( -/obj/machinery/firealarm{ - pixel_y = 24 +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"ha" = ( -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"hb" = ( +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"gT" = ( /obj/machinery/light/small{ - dir = 4 + dir = 8 }, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -3; - pixel_y = 3 +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 +/obj/item/multitool, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -32 }, -/obj/item/reagent_containers/dropper, -/turf/open/floor/iron/white/side{ - dir = 8 +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/area/awaymission/undergroundoutpost45/research) +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) "hc" = ( /turf/closed/wall/r_wall/rust, /area/awaymission/undergroundoutpost45/research) -"hd" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" +"hi" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/obj/item/reagent_containers/peppercloud_deployer, +/obj/structure/closet/secure_closet{ + icon_state = "sec"; + name = "security officer's locker"; + req_access_txt = "201" }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/research) -"he" = ( -/obj/machinery/light/small{ +"hj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/engineering) +"hk" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"hl" = ( +/obj/machinery/light{ dir = 4 }, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" - }, -/area/awaymission/undergroundoutpost45/crew_quarters) -"hf" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"hg" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = 23 +/area/awaymission/undergroundoutpost45/central) +"hm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Air to Distro" }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"hh" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" - }, -/area/awaymission/undergroundoutpost45/crew_quarters) -"hp" = ( +/area/awaymission/undergroundoutpost45/engineering) +"ho" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -25 }, @@ -1775,411 +903,349 @@ dir = 5 }, /area/awaymission/undergroundoutpost45/crew_quarters) -"hq" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/reagent_containers/food/condiment/enzyme, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/awaymission/undergroundoutpost45/crew_quarters) -"hr" = ( -/obj/structure/table, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/awaymission/undergroundoutpost45/crew_quarters) -"hs" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = 23 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Kitchen"; - network = list("uo45") - }, -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 +"hv" = ( +/obj/structure/bookcase/manuals/engineering, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"hy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 }, /turf/open/floor/iron/cafeteria{ dir = 5 }, -/area/awaymission/undergroundoutpost45/crew_quarters) -"hu" = ( -/obj/machinery/gateway/centeraway{ - calibrated = 0 - }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"hw" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"hx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"hz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/gateway) -"hA" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/gateway) -"hB" = ( -/obj/machinery/rnd/destructive_analyzer, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/research) -"hC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +"hI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/meter{ + name = "Mixed Air Tank In" }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/research) -"hD" = ( -/obj/machinery/rnd/production/protolathe, -/obj/effect/turf_decal/stripes/line{ +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/engineering) +"hJ" = ( +/obj/machinery/computer/station_alert{ dir = 1 }, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/research) -"hE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"hF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"hG" = ( -/obj/structure/table/glass, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/micro_laser, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white/side{ +/area/awaymission/undergroundoutpost45/engineering) +"hK" = ( +/obj/machinery/light/small{ dir = 8 }, -/area/awaymission/undergroundoutpost45/research) -"hH" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/research) -"hQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"hR" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 +"hL" = ( +/obj/machinery/firealarm{ + pixel_y = 24 }, -/area/awaymission/undergroundoutpost45/crew_quarters) -"hS" = ( -/obj/structure/table, -/obj/item/food/mint, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/obj/structure/tank_dispenser{ + pixel_x = -1 }, -/area/awaymission/undergroundoutpost45/crew_quarters) -"hT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"hM" = ( /turf/open/floor/iron/cafeteria{ dir = 5 }, -/area/awaymission/undergroundoutpost45/crew_quarters) -"hU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/area/awaymission/undergroundoutpost45/research) +"hN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"hO" = ( +/obj/machinery/light/small{ + dir = 8 }, -/obj/structure/table, -/obj/item/book/manual/chef_recipes, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"hY" = ( +/obj/machinery/light{ + dir = 1 }, -/area/awaymission/undergroundoutpost45/crew_quarters) -"hV" = ( +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"hZ" = ( +/obj/machinery/door/airlock/external, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"il" = ( +/obj/structure/alien/weeds, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" + }, +/area/awaymission/undergroundoutpost45/caves) +"im" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/crew_quarters) -"hW" = ( +/area/awaymission/undergroundoutpost45/gateway) +"in" = ( +/obj/effect/decal/cleanable/blood/gibs/up, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" + }, +/area/awaymission/undergroundoutpost45/caves) +"iF" = ( +/obj/structure/alien/weeds, +/obj/structure/bed/nest, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" + }, +/area/awaymission/undergroundoutpost45/caves) +"iH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "1-2" }, -/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"iI" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"hX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"ib" = ( -/obj/structure/chair{ dir = 8 }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"ic" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = 23 +/obj/structure/sign/departments/science{ + pixel_x = -32 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair{ +/obj/effect/turf_decal/tile/purple{ dir = 8 }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"id" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/gateway) -"ie" = ( -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/gateway) -"if" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/breath, -/turf/open/floor/plating, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"iV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, /area/awaymission/undergroundoutpost45/gateway) -"ig" = ( -/obj/machinery/computer/rdconsole/core{ - dir = 4; - req_access = null +"jc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 }, +/obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/research) -"ih" = ( -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/research) -"ii" = ( -/obj/machinery/rnd/production/circuit_imprinter, +/area/awaymission/undergroundoutpost45/central) +"jv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/research) -"ij" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"ik" = ( -/obj/structure/table/glass, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/matter_bin, -/turf/open/floor/iron/white/side{ - dir = 8 +/area/awaymission/undergroundoutpost45/central) +"jw" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, /area/awaymission/undergroundoutpost45/research) -"ip" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 +"jz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"jA" = ( +/obj/machinery/light/small{ + dir = 8 }, +/turf/open/floor/iron/showroomfloor, /area/awaymission/undergroundoutpost45/crew_quarters) -"iq" = ( -/obj/structure/table, -/obj/item/kitchen/rollingpin, -/turf/open/floor/iron/cafeteria{ - dir = 5 +"jB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, +/turf/closed/wall, /area/awaymission/undergroundoutpost45/crew_quarters) -"ir" = ( -/obj/machinery/light{ +"jC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/machinery/processor, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, +/turf/closed/wall/rust, /area/awaymission/undergroundoutpost45/crew_quarters) -"is" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"it" = ( -/obj/structure/window/reinforced, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"iu" = ( +"jD" = ( +/obj/machinery/door/firedoor, /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/door/window{ - name = "Gateway Chamber"; - req_access_txt = "201" - }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"iv" = ( -/obj/structure/window/reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"iw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 32 - }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"ix" = ( -/obj/machinery/door/airlock{ - name = "Emergency Supplies" +/obj/machinery/door/poddoor/preopen{ + id = "UO45_Engineering"; + name = "engineering Security Door" }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/gateway) -"iy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 + dir = 9 }, -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"jE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 }, -/obj/item/stock_parts/scanning_module{ - pixel_x = 2; - pixel_y = 3 +/turf/closed/wall/r_wall, +/area/awaymission/undergroundoutpost45/central) +"jH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/stock_parts/scanning_module, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -32 +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"jT" = ( +/obj/structure/cable{ + icon_state = "2-4" }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"iz" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"jU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple{ + dir = 4 }, /turf/open/floor/iron/white, /area/awaymission/undergroundoutpost45/research) -"iA" = ( -/obj/structure/disposalpipe/segment{ +"jV" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" + }, +/area/awaymission/undergroundoutpost45/caves) +"jW" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/structure/window/reinforced{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/tile/red{ dir = 4 }, -/obj/effect/turf_decal/stripes/line{ +/turf/open/floor/iron/white/corner{ dir = 1 }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"iB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/awaymission/undergroundoutpost45/engineering) +"kj" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"kq" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 }, -/turf/open/floor/iron/white, +/turf/open/floor/iron/dark, /area/awaymission/undergroundoutpost45/research) -"iC" = ( -/obj/structure/disposalpipe/segment{ +"kr" = ( +/obj/machinery/light/small, +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/mining) +"kt" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/gateway) +"ku" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"kv" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"iD" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"lh" = ( +/obj/structure/chair/fancy/comfy{ + dir = 4 }, -/turf/open/floor/iron/white/side{ - dir = 8 +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 }, -/area/awaymission/undergroundoutpost45/research) -"iE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"iJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 +"li" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"lj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 }, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"lk" = ( +/obj/structure/closet, +/obj/item/storage/belt/utility, +/turf/open/floor/plating{ + burnt = 1 }, /area/awaymission/undergroundoutpost45/crew_quarters) -"iK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 10 +"ll" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/iron/cafeteria{ +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"lm" = ( +/obj/machinery/light/small, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"iL" = ( +"ln" = ( +/turf/closed/wall/r_wall, +/area/awaymission/undergroundoutpost45/engineering) +"lS" = ( /obj/machinery/light/small{ dir = 1 }, @@ -2187,114 +1253,75 @@ /obj/structure/closet/emcloset, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/research) -"iN" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/structure/sign/warning/biohazard{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/gateway) -"iO" = ( -/obj/structure/table, -/obj/item/radio/off, -/obj/item/radio/off, -/turf/open/floor/iron{ - dir = 8; - icon_state = "floorscorched1" - }, -/area/awaymission/undergroundoutpost45/gateway) -"iP" = ( -/obj/structure/cable{ - icon_state = "1-2" +"lT" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/gateway) -"iQ" = ( -/obj/structure/table, -/obj/machinery/recharger, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/gateway) -"iR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ +/area/awaymission/undergroundoutpost45/central) +"lU" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet/grimy, +/area/awaymission/undergroundoutpost45/central) +"mJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall/rust, +/area/awaymission/undergroundoutpost45/research) +"mR" = ( +/obj/machinery/light{ dir = 4 }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"mS" = ( /obj/structure/table, -/obj/item/paper/pamphlet/gateway, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/clothing/glasses/hud/health, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/gateway) -"iS" = ( -/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/iron/white/corner, +/area/awaymission/undergroundoutpost45/research) +"nc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 + dir = 5 }, /turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/gateway) -"iT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/chair{ - dir = 8 +/area/awaymission/undergroundoutpost45/central) +"nd" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"iU" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/chair{ +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"nf" = ( +/obj/structure/filingcabinet, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 8 }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"iV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/awaymission/undergroundoutpost45/gateway) -"iW" = ( +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/research) +"ni" = ( +/turf/closed/wall/r_wall/rust, +/area/awaymission/undergroundoutpost45/engineering) +"no" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/gateway) -"iX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/gateway) -"iY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"iZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"ja" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"jd" = ( +"nt" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"nw" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 4 @@ -2302,947 +1329,1096 @@ /obj/structure/sign/warning/deathsposal{ desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'"; name = "\improper DISPOSAL: LEADS TO EXTERIOR"; - pixel_y = -32 + pixel_x = -32 }, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"nx" = ( +/obj/structure/cable{ + icon_state = "2-4" }, -/area/awaymission/undergroundoutpost45/crew_quarters) -"je" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/junction, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/obj/structure/disposalpipe/segment{ + dir = 6 }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"nA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, /area/awaymission/undergroundoutpost45/crew_quarters) -"jf" = ( -/obj/structure/closet/secure_closet{ - locked = 0; - name = "kitchen Cabinet"; - req_access_txt = "201" +"nD" = ( +/obj/structure/closet/crate{ + desc = "It's a storage unit for kitchen clothes and equipment."; + name = "Kitchen Crate" }, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/sugar, +/obj/item/storage/box/mousetraps, +/obj/item/clothing/under/suit/waiter, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, +/turf/open/floor/iron/showroomfloor, /area/awaymission/undergroundoutpost45/crew_quarters) -"jg" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Gateway Chamber"; - network = list("uo45","uo45r") +"nF" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/gateway) -"jh" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/central) +"nM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/awaymission/undergroundoutpost45/research) +"nT" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 + dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/gateway) -"ji" = ( +/area/awaymission/undergroundoutpost45/central) +"nV" = ( /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/gateway) -"jj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/gateway) -"jk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ dir = 4 }, -/obj/structure/chair/stool, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/gateway) -"jl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/gateway) -"jm" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"jn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/area/awaymission/undergroundoutpost45/crew_quarters) +"nW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"jo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/turf/closed/wall/r_wall, +/area/awaymission/undergroundoutpost45/research) +"nX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/machinery/door/airlock/research{ - name = "Gateway Observation"; - req_access_txt = "201" - }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"jp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/gateway) -"jq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light/small{ +/turf/closed/wall/r_wall, +/area/awaymission/undergroundoutpost45/research) +"nY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/gateway) -"jr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table, -/obj/item/folder/white, -/obj/item/disk/tech_disk, -/obj/item/disk/design_disk, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"js" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/iron/white, +/turf/closed/wall/r_wall/rust, /area/awaymission/undergroundoutpost45/research) -"jt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" +"ob" = ( +/obj/structure/glowshroom/single, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 351.9; + name = "Cave Floor" }, +/area/awaymission/undergroundoutpost45/caves) +"oc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/green/half/contrasted, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"ju" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" +/area/awaymission/undergroundoutpost45/central) +"od" = ( +/obj/structure/cable{ + icon_state = "1-8" }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"jB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/effect/turf_decal/stripes/corner{ + dir = 1 }, -/turf/closed/wall, -/area/awaymission/undergroundoutpost45/crew_quarters) -"jC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/engineering) +"ok" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/computer/atmos_control/tank{ + input_tag = "UO45_air_in"; + name = "Mixed Air Supply Control"; + output_tag = "UO45_air_out"; + sensors = list("UO45_air_sensor" = "Tank") }, -/turf/closed/wall/rust, -/area/awaymission/undergroundoutpost45/crew_quarters) -"jE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 }, -/turf/closed/wall/r_wall, -/area/awaymission/undergroundoutpost45/central) -"jF" = ( -/obj/structure/closet/l3closet/scientist, -/obj/effect/turf_decal/stripes/line{ +/turf/open/floor/iron/white/corner{ dir = 1 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/gateway) -"jG" = ( -/obj/structure/closet/l3closet/scientist, -/obj/effect/turf_decal/stripes/line{ - dir = 5 +/area/awaymission/undergroundoutpost45/engineering) +"ow" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/airalarm/all_access{ + dir = 4; + pixel_x = 23 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/gateway) -"jI" = ( +/area/awaymission/undergroundoutpost45/crew_quarters) +"oC" = ( +/obj/item/kirbyplants, /obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/green, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/gateway) -"jJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 +/area/awaymission/undergroundoutpost45/central) +"oF" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/gateway) -"jK" = ( /obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = 23 + pixel_y = 23; + dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/gateway) -"jL" = ( -/obj/machinery/light/small, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 }, -/area/awaymission/undergroundoutpost45/gateway) -"jM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/research) -"jN" = ( -/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"oK" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/research{ - name = "Research Lab"; - req_access_txt = "201" +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 }, /turf/open/floor/iron/white, /area/awaymission/undergroundoutpost45/research) -"jO" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/research) -"jP" = ( -/obj/machinery/light/small, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" +"oZ" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/engine/air, +/area/awaymission/undergroundoutpost45/engineering) +"pa" = ( +/obj/machinery/air_sensor{ + id_tag = "UO45_air_sensor" + }, +/turf/open/floor/engine/air, +/area/awaymission/undergroundoutpost45/engineering) +"pc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 }, -/area/awaymission/undergroundoutpost45/research) -"jQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 + dir = 4 }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) -"jR" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/breath, -/obj/structure/sign/poster/official/safety_internals{ - pixel_y = 32 +"ph" = ( +/obj/machinery/light/small{ + dir = 4 }, -/turf/open/floor/iron{ - dir = 8; - icon_state = "floorscorched1" +/obj/machinery/atmospherics/pipe/simple{ + dir = 9 + }, +/obj/structure/chair/office/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/research) +"pi" = ( +/obj/structure/cable{ + icon_state = "2-4" }, -/area/awaymission/undergroundoutpost45/crew_quarters) -"jY" = ( /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/disposalpipe/junction/flip{ + dir = 2 }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/door/airlock/maintenance, -/turf/open/floor/plating, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"jZ" = ( +"pk" = ( /obj/structure/cable{ icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"ka" = ( -/obj/structure/cable{ - icon_state = "4-8" +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"pl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/plasma{ + amount = 6 + }, +/turf/open/floor/iron{ + dir = 8; + icon_state = "floorscorched1" + }, +/area/awaymission/undergroundoutpost45/mining) +"pp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/rust, +/area/awaymission/undergroundoutpost45/crew_quarters) +"px" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/turf/closed/wall/rust, +/area/awaymission/undergroundoutpost45/engineering) +"py" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"kc" = ( -/obj/structure/cable{ - icon_state = "1-8" +/turf/closed/wall/r_wall, +/area/awaymission/undergroundoutpost45/engineering) +"pE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos{ + icon_state = "in"; + id_tag = "UO45_air_out"; + name = "air out" }, -/obj/structure/disposalpipe/segment{ - dir = 9 +/turf/open/floor/engine{ + initial_gas_mix = "n2=10580;o2=2644;TEMP=351.9"; + name = "air floor" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 +/area/awaymission/undergroundoutpost45/engineering) +"pF" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos{ + id = "UO45_air_in" }, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/air, +/area/awaymission/undergroundoutpost45/engineering) +"pH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/awaymission/undergroundoutpost45/research) +"pK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/awaymission/undergroundoutpost45/research) +"pL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/rust, +/area/awaymission/undergroundoutpost45/research) +"pN" = ( +/obj/item/stack/rods, /turf/open/floor/plating, /area/awaymission/undergroundoutpost45/central) -"kd" = ( -/obj/item/storage/backpack/satchel/tox, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/suit/toggle/labcoat/science, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet{ - icon_state = "rd"; - name = "research director's locker"; - req_access_txt = "201" - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 +"pO" = ( +/obj/machinery/atmospherics/components/binary/valve, +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, +/turf/open/floor/plating, /area/awaymission/undergroundoutpost45/research) -"kf" = ( +"pP" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/door/airlock/command/glass{ + name = "Chief Engineer"; + req_access_txt = "201" + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/gateway) -"kg" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"pS" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/closed/wall, +/area/awaymission/undergroundoutpost45/crew_quarters) +"pZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/gateway) -"kh" = ( -/obj/item/kirbyplants, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"ki" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple{ +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"qf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"kk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/purple{ - dir = 1 + dir = 4 }, /turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/gateway) +"qg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall/rust, /area/awaymission/undergroundoutpost45/research) -"kl" = ( -/obj/machinery/door/firedoor, +"qh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 4; + external_pressure_bound = 120; + name = "server vent" + }, +/turf/open/floor/circuit/telecomms/server, +/area/awaymission/undergroundoutpost45/research) +"qi" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 10 + }, +/turf/open/floor/iron/dark{ + initial_gas_mix = "n2=500,TEMP=80"; + name = "Server Walkway" + }, +/area/awaymission/undergroundoutpost45/research) +"qE" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"qF" = ( /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/machinery/light/small{ dir = 4 }, -/obj/machinery/door/airlock/command{ - name = "Gateway EVA"; - req_access_txt = "201" +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/gateway) -"km" = ( -/obj/item/clothing/under/suit/navy, -/obj/structure/closet/secure_closet/personal/cabinet{ - locked = 0; - req_access_txt = "201" - }, -/turf/open/floor/carpet, /area/awaymission/undergroundoutpost45/crew_quarters) -"kn" = ( -/obj/machinery/light{ - dir = 8 +"qI" = ( +/obj/machinery/computer/security{ + dir = 1; + network = list("uo45") }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/anticorner/contrasted, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"ko" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 23; - dir = 1 +/area/awaymission/undergroundoutpost45/central) +"qK" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" }, -/turf/open/floor/iron, +/turf/open/floor/iron/freezer, /area/awaymission/undergroundoutpost45/crew_quarters) -"kp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Diner" +"qP" = ( +/obj/machinery/light/small{ + dir = 8 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"kw" = ( -/obj/structure/closet/l3closet, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"kx" = ( -/obj/structure/closet/crate, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 +/obj/machinery/airalarm/server{ + dir = 4; + pixel_x = -22 }, -/obj/item/multitool, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/central) -"ky" = ( -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/clothing/head/utility/welding, -/obj/structure/sign/warning/biohazard{ - pixel_y = 32 +/obj/machinery/rnd/server{ + req_access = null }, -/obj/item/assembly/prox_sensor, -/obj/item/assembly/prox_sensor, -/obj/effect/turf_decal/stripes/line{ - dir = 4 +/turf/open/floor/circuit/telecomms/server, +/area/awaymission/undergroundoutpost45/research) +"qQ" = ( +/obj/machinery/atmospherics/pipe/manifold{ + dir = 8 + }, +/turf/open/floor/iron/dark{ + initial_gas_mix = "n2=500,TEMP=80"; + name = "Server Walkway" }, +/area/awaymission/undergroundoutpost45/research) +"qX" = ( +/obj/machinery/gateway{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron/dark, /area/awaymission/undergroundoutpost45/gateway) -"kz" = ( -/obj/structure/sign/warning/securearea{ - pixel_y = 32 +"ro" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/awaymission/undergroundoutpost45/engineering) +"rr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera/directional/east{ + c_tag = "Arrivals"; + network = list("uo45") + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"rz" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 9 + }, +/turf/open/floor/iron/dark{ + initial_gas_mix = "n2=500,TEMP=80"; + name = "Server Walkway" + }, +/area/awaymission/undergroundoutpost45/research) +"rK" = ( +/obj/machinery/vending/snack, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/central) +"rV" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/gateway) -"kA" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"rW" = ( +/obj/machinery/shower{ dir = 1 }, +/obj/item/bikehorn/rubberducky, +/turf/open/floor/iron/freezer, +/area/awaymission/undergroundoutpost45/crew_quarters) +"sb" = ( +/obj/structure/table, +/obj/item/kitchen/fork, +/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/gateway) -"kB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 +/area/awaymission/undergroundoutpost45/crew_quarters) +"sd" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/gateway) -"kC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/area/awaymission/undergroundoutpost45/engineering) +"sf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/wood, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/central) +"sp" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/central) +"sr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 8; + id_tag = "UO45_mix_in"; + name = "distro out" }, +/turf/open/floor/engine/vacuum, +/area/awaymission/undergroundoutpost45/engineering) +"ss" = ( /obj/machinery/light/small{ dir = 4 }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/turf/open/floor/engine/vacuum, +/area/awaymission/undergroundoutpost45/engineering) +"sJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Reception" }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/gateway) -"kD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/area/awaymission/undergroundoutpost45/engineering) +"sK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 + dir = 5 }, -/obj/machinery/light/small{ +/obj/structure/chair/office{ dir = 8 }, -/obj/structure/sign/warning/securearea{ - pixel_x = -32 - }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/gateway) -"kE" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/gateway) -"kF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"sO" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/door/airlock/engineering{ + name = "Engineering"; req_access_txt = "201" }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/gateway) -"kG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple{ +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"sQ" = ( +/obj/structure/closet, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"sS" = ( +/obj/structure/chair{ dir = 4 }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/gateway) -"kH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"tc" = ( +/obj/machinery/conveyor{ + id = "UO45_mining" }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 +/obj/structure/sign/warning/nosmoking{ + pixel_x = -32 }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/gateway) -"kI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/turf_decal/tile/purple{ - dir = 4 +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/mining) +"te" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos{ + dir = 8; + id = "UO45_mix_in" }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/gateway) -"kJ" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 23; - dir = 1 +/turf/open/floor/engine/vacuum, +/area/awaymission/undergroundoutpost45/engineering) +"tf" = ( +/obj/machinery/air_sensor{ + id_tag = "UO45_mix_sensor" }, -/obj/machinery/light/small{ - dir = 1 +/turf/open/floor/engine/vacuum, +/area/awaymission/undergroundoutpost45/engineering) +"ti" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes{ + pixel_y = 2 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/item/lighter{ + pixel_x = 4; + pixel_y = 2 }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 +/turf/open/floor/carpet/grimy, +/area/awaymission/undergroundoutpost45/central) +"tl" = ( +/obj/structure/cable{ + icon_state = "2-8" }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/gateway) -"kK" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 10 }, -/obj/effect/turf_decal/tile/purple{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/gateway) -"kL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"tn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "201" +/turf/closed/wall/r_wall, +/area/awaymission/undergroundoutpost45/research) +"to" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/obj/effect/turf_decal/tile/purple{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/awaymission/undergroundoutpost45/research) +"tp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/gateway) -"kM" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ +/turf/closed/wall/r_wall/rust, +/area/awaymission/undergroundoutpost45/research) +"tq" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"kN" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/iron/white, +/turf/closed/wall/r_wall/rust, /area/awaymission/undergroundoutpost45/research) -"kO" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, +"ty" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"kP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"tz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"tB" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 }, -/turf/open/floor/iron/white, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"tK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall/rust, /area/awaymission/undergroundoutpost45/research) -"kQ" = ( -/obj/machinery/door/firedoor, +"tM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/effect/turf_decal/tile/purple{ +/turf/closed/wall, +/area/awaymission/undergroundoutpost45/research) +"tN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/turf/open/floor/iron/white, +/turf/closed/wall/rust, /area/awaymission/undergroundoutpost45/research) -"kR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +"tQ" = ( +/obj/structure/table, +/obj/item/radio/off, +/obj/item/radio/off, +/turf/open/floor/iron{ + dir = 8; + icon_state = "floorscorched1" + }, +/area/awaymission/undergroundoutpost45/gateway) +"tT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/turf_decal/tile/purple{ +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"kS" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ dir = 1 }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"tW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 }, -/turf/open/floor/iron/white, +/turf/closed/wall/r_wall, /area/awaymission/undergroundoutpost45/research) -"kT" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 23; - dir = 1 +"uc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/awaymission/undergroundoutpost45/engineering) +"ud" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/awaymission/undergroundoutpost45/engineering) +"uf" = ( +/obj/structure/cable{ + icon_state = "1-4" }, -/obj/machinery/light/small{ - dir = 1 +/obj/structure/cable{ + icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/structure/disposalpipe/segment{ + dir = 5 }, -/obj/effect/turf_decal/tile/purple{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"kU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"ug" = ( +/obj/structure/chair{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple{ +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"un" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"kV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple{ - dir = 4 +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/sign/warning/securearea{ + pixel_x = -32 }, /turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/gateway) +"up" = ( +/obj/machinery/gateway{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"uv" = ( +/turf/closed/mineral/random/labormineral, /area/awaymission/undergroundoutpost45/research) -"kW" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 +"ux" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/awaymission/undergroundoutpost45/research) +"uy" = ( +/obj/machinery/light/small, +/obj/machinery/airalarm/all_access{ + dir = 1; + pixel_y = -23 }, -/obj/effect/turf_decal/tile/purple{ +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/dresser, +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/central) +"uE" = ( +/turf/closed/wall, +/area/awaymission/undergroundoutpost45/engineering) +"uH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/turf/closed/wall/r_wall, +/area/awaymission/undergroundoutpost45/engineering) +"uN" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"kY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "UO45_biohazard"; - name = "biohazard Containment Door" +/obj/structure/sign/warning/deathsposal{ + desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'"; + name = "\improper DISPOSAL: LEADS TO EXTERIOR"; + pixel_y = -32 + }, +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/research) -"kZ" = ( -/obj/structure/sink{ - pixel_y = 25 +"uO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -32 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"uQ" = ( +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 +/obj/machinery/power/apc/highcap/fifteen_k{ + locked = 0; + name = "UO45 Research Division APC"; + pixel_y = -23; + start_charge = 100 }, -/turf/open/floor/iron/white, -/area/space/nearstation) -"la" = ( -/obj/machinery/shower{ - pixel_y = 15 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, +/obj/effect/turf_decal/tile/purple, /turf/open/floor/iron/white, /area/awaymission/undergroundoutpost45/research) -"lb" = ( +"uY" = ( +/obj/machinery/light/small, /obj/structure/sink{ - pixel_y = 25 + dir = 8; + pixel_x = -11 }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 +/obj/structure/mirror{ + pixel_x = -28 }, -/turf/open/floor/iron/white, +/turf/open/floor/iron/freezer, /area/awaymission/undergroundoutpost45/research) -"lc" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/sign/departments/science{ - pixel_x = -32 +"uZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 +/turf/closed/wall, +/area/awaymission/undergroundoutpost45/engineering) +"vd" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos{ + dir = 1; + id = "UO45_n2_in" }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"ld" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/turf/open/floor/engine/n2, +/area/awaymission/undergroundoutpost45/engineering) +"ve" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos{ + dir = 1; + id_tag = "UO45_n2_out"; + name = "nitrogen out" }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"le" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 +/turf/open/floor/engine/n2, +/area/awaymission/undergroundoutpost45/engineering) +"vf" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos{ + dir = 1; + id = "UO45_o2_in" }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"lf" = ( -/obj/machinery/firealarm{ +/turf/open/floor/engine/o2, +/area/awaymission/undergroundoutpost45/engineering) +"vg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos{ dir = 1; - pixel_y = -24 + id_tag = "UO45_o2_out"; + name = "oxygen out" }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"lg" = ( -/obj/machinery/light/small, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"ln" = ( -/turf/closed/wall/r_wall, +/turf/open/floor/engine/o2, /area/awaymission/undergroundoutpost45/engineering) -"lo" = ( -/obj/machinery/light/small{ +"vo" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"vr" = ( +/obj/effect/turf_decal/tile/neutral{ dir = 8 }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"vy" = ( /obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/multitool, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -32 +/obj/item/storage/belt/utility, +/obj/item/clothing/head/utility/welding, +/obj/structure/sign/warning/biohazard{ + pixel_y = 32 }, +/obj/item/assembly/prox_sensor, +/obj/item/assembly/prox_sensor, /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/iron/dark, /area/awaymission/undergroundoutpost45/gateway) -"lp" = ( -/obj/structure/cable{ - icon_state = "1-4" +"vD" = ( +/obj/machinery/air_sensor{ + id_tag = "UO45_n2_sensor" }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/gateway) -"lq" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/light/small, +/turf/open/floor/engine/n2, +/area/awaymission/undergroundoutpost45/engineering) +"vE" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/engine/n2, +/area/awaymission/undergroundoutpost45/engineering) +"vF" = ( +/obj/machinery/air_sensor{ + id_tag = "UO45_o2_sensor" }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 +/obj/machinery/light/small, +/turf/open/floor/engine/o2, +/area/awaymission/undergroundoutpost45/engineering) +"vG" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/engine/o2, +/area/awaymission/undergroundoutpost45/engineering) +"vI" = ( +/turf/closed/wall/r_wall/rust, +/area/awaymission/undergroundoutpost45/mining) +"vJ" = ( +/turf/closed/wall/r_wall, +/area/awaymission/undergroundoutpost45/mining) +"vK" = ( +/turf/closed/wall, +/area/awaymission/undergroundoutpost45/mining) +"vL" = ( +/turf/closed/wall/rust, +/area/awaymission/undergroundoutpost45/mining) +"vW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/gateway) -"lr" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 23; - dir = 1 - }, +/area/awaymission/undergroundoutpost45/engineering) +"vX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/camera/directional/north{ - c_tag = "Gateway Ready Room"; - network = list("uo45","uo45r") - }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/gateway) -"ls" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/turf/closed/wall, +/area/awaymission/undergroundoutpost45/engineering) +"we" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/turf/open/floor/iron, +/turf/closed/wall, +/area/awaymission/undergroundoutpost45/mining) +"wm" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, /area/awaymission/undergroundoutpost45/gateway) -"lt" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +"wn" = ( +/turf/closed/wall/rust, +/area/awaymission/undergroundoutpost45/engineering) +"wo" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"wx" = ( +/obj/structure/chair{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/gateway) -"lv" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/gateway) -"lw" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/gateway) -"lx" = ( +/area/awaymission/undergroundoutpost45/crew_quarters) +"wy" = ( +/obj/structure/table/reinforced, /obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; +/obj/machinery/door/window/southleft{ + dir = 4; + name = "Hydroponics Desk"; req_access_txt = "201" }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/gateway) -"ly" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"wz" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ dir = 4 }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/gateway) -"lz" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/gateway) -"lA" = ( -/obj/structure/cable{ - icon_state = "4-8" +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"wA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, /obj/machinery/firealarm{ dir = 1; pixel_y = -24 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Research Division West"; - network = list("uo45","uo45r") +/obj/structure/closet/secure_closet/miner{ + req_access = null; + req_access_txt = "201" }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/gateway) -"lB" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"wG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Kitchen"; + req_access_txt = "201" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"wH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple{ dir = 1 }, -/obj/effect/turf_decal/tile/purple, /turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/gateway) -"lC" = ( +/area/awaymission/undergroundoutpost45/research) +"wI" = ( /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/gateway) -"lD" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"wJ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"wR" = ( +/obj/machinery/vending/medical{ req_access_txt = "201" }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/gateway) -"lE" = ( +/turf/open/floor/iron/white/side{ + dir = 6 + }, +/area/awaymission/undergroundoutpost45/research) +"wS" = ( /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + broken = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, /area/awaymission/undergroundoutpost45/research) -"lF" = ( -/obj/structure/cable{ - icon_state = "4-8" +"wT" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/visible, +/obj/machinery/meter/atmos{ + id_tag = "UO45_distro_meter"; + name = "Distribution Loop" }, -/obj/structure/cable{ - icon_state = "2-8" +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"wW" = ( +/obj/structure/cable, +/obj/machinery/power/smes{ + charge = 1.5e+006; + input_level = 10000; + inputting = 0; + output_level = 7000 }, -/obj/structure/disposalpipe/segment{ - dir = 6 +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/engineering) +"wY" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -30 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/research) -"lG" = ( -/obj/structure/cable{ - icon_state = "4-8" +"wZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/obj/machinery/light, -/obj/structure/disposalpipe/junction{ +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"xc" = ( +/obj/structure/chair/fancy/comfy{ dir = 8 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"lH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/grimy, +/area/awaymission/undergroundoutpost45/central) +"xd" = ( +/obj/machinery/door/firedoor, /obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/highcap/fifteen_k{ - locked = 0; - name = "UO45 Research Division APC"; - pixel_y = -23; - start_charge = 100 + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -3250,87 +2426,30 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"lI" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/door/airlock/public/glass{ + name = "Dormitories" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"xe" = ( +/obj/structure/cable{ + icon_state = "2-8" }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"lJ" = ( /obj/structure/disposalpipe/segment{ dir = 10 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"lK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"lL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"lM" = ( -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"lN" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Research Division East"; - network = list("uo45","uo45r") - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"lO" = ( -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "201" - }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"lQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"lR" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"lV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/public/glass{ - name = "Diner" +/area/awaymission/undergroundoutpost45/engineering) +"xf" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers" }, -/turf/open/floor/iron, +/turf/open/floor/iron/freezer, /area/awaymission/undergroundoutpost45/crew_quarters) -"lW" = ( +"xj" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ icon_state = "1-2" @@ -3342,1152 +2461,1121 @@ }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"lX" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/mineral/plasma{ - amount = 26 - }, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 +"xk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/mining{ + name = "Processing Area"; + req_access_txt = "201" }, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"xx" = ( +/obj/machinery/mineral/processing_unit_console{ + machinedir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/engineering) -"lY" = ( -/obj/machinery/light/small{ - dir = 1 +/turf/closed/wall/rust, +/area/awaymission/undergroundoutpost45/mining) +"xM" = ( +/obj/machinery/mineral/stacking_unit_console{ + machinedir = 2 }, -/obj/machinery/camera/directional/north{ - c_tag = "Engineering Secure Storage"; - network = list("uo45") +/turf/closed/wall, +/area/awaymission/undergroundoutpost45/mining) +"xO" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/engineering) -"lZ" = ( -/obj/machinery/suit_storage_unit/engine, -/obj/effect/turf_decal/stripes/line{ +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, -/turf/open/floor/plating, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"ma" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 +"xR" = ( +/obj/structure/cable{ + icon_state = "1-4" }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 +/turf/open/floor/mech_bay_recharge_floor, +/area/awaymission/undergroundoutpost45/mining) +"xS" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 8 }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"mb" = ( -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/gateway) -"mc" = ( -/turf/open/floor/iron{ - dir = 8; - icon_state = "floorscorched1" +/obj/structure/cable{ + icon_state = "0-8" }, -/area/awaymission/undergroundoutpost45/gateway) -"md" = ( -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/gateway) -"me" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/mining) +"yf" = ( +/obj/machinery/door/airlock/external{ + name = "Mining External Airlock"; + req_access_txt = "201" }, +/obj/effect/turf_decal/sand, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"ys" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/gateway) -"mf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/portable_atmospherics/scrubber, -/obj/structure/window{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/research) -"mg" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/research) -"mh" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/command{ - name = "Research Director's Office"; - req_access_txt = "201" - }, -/turf/open/floor/iron/cafeteria{ +"yv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, -/area/awaymission/undergroundoutpost45/research) -"mi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "UO45_rdprivacy"; - name = "Privacy Shutters" - }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/research) -"mj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "UO45_rdprivacy"; - name = "Privacy Shutters" - }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/research) -"mk" = ( -/obj/effect/turf_decal/tile/purple{ +/obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 1 }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"ml" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/stripes/line{ +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"yy" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 10 }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"mm" = ( -/obj/structure/closet/firecloset, -/obj/machinery/light/small, -/obj/structure/sign/warning/securearea{ - pixel_y = -32 - }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"yE" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"mn" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 6 +/turf/open/floor/iron{ + dir = 8; + icon_state = "damaged2" + }, +/area/awaymission/undergroundoutpost45/central) +"yF" = ( +/obj/structure/table, +/obj/item/storage/box/gloves, +/turf/open/floor/iron/white/side{ + dir = 8 }, -/turf/open/floor/iron/white, /area/awaymission/undergroundoutpost45/research) -"mo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/warning/securearea{ - pixel_x = -32 +"yJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 +/turf/open/floor/plating{ + broken = 1 + }, +/area/awaymission/undergroundoutpost45/central) +"yL" = ( +/obj/structure/table/wood, +/obj/item/book/manual/ripley_build_and_repair, +/turf/open/floor/carpet/grimy, +/area/awaymission/undergroundoutpost45/central) +"yM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "UO45_Engineering"; + name = "engineering Security Door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, +/obj/effect/turf_decal/delivery, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"mp" = ( -/obj/structure/chair{ - dir = 1 +/area/awaymission/undergroundoutpost45/engineering) +"yN" = ( +/obj/structure/alien/weeds, +/obj/structure/glowshroom/single, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" }, +/area/awaymission/undergroundoutpost45/caves) +"yO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"mq" = ( +/turf/open/floor/iron/freezer, +/area/awaymission/undergroundoutpost45/central) +"yQ" = ( /obj/structure/table, -/obj/item/newspaper, -/obj/machinery/newscaster{ - pixel_x = 30 +/obj/item/food/mint, +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"mr" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster{ - pixel_y = 32 +"yR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/carpet, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"ms" = ( -/obj/machinery/light/small{ - dir = 1 +"yS" = ( +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/gateway) +"yT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/airalarm/all_access{ - pixel_y = 23; - dir = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/crew_quarters) -"mt" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/crew_quarters) -"mu" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster{ - pixel_x = -30 +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/carpet, +/obj/machinery/door/firedoor, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"mv" = ( -/obj/machinery/light/small{ - dir = 1 +"yV" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 6 }, -/obj/machinery/airalarm/all_access{ - pixel_y = 23; +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"yW" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/southleft{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Hydroponics Desk"; + req_access_txt = "201" + }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"yX" = ( +/obj/machinery/power/terminal{ dir = 1 }, -/obj/structure/chair/wood/normal{ - dir = 8 +/obj/machinery/power/port_gen/pacman/super{ + name = "S.U.P.E.R.P.A.C.M.A.N.-type portable generator" }, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/crew_quarters) -"mx" = ( -/obj/machinery/light/small{ - dir = 8 +/obj/item/wrench, +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"my" = ( /obj/structure/cable{ - icon_state = "1-2" + icon_state = "0-4" }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"mz" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/rods/fifty, /turf/open/floor/plating, /area/awaymission/undergroundoutpost45/engineering) -"mA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/engineering) -"mB" = ( -/obj/structure/table, -/obj/item/hand_labeler, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 +"yY" = ( +/obj/machinery/vending/dinnerware, +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"mC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/area/awaymission/undergroundoutpost45/crew_quarters) +"yZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"mD" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -28 +/obj/machinery/door/airlock/public/glass{ + name = "Dormitories" }, -/obj/structure/rack, -/obj/item/tank/jetpack/carbondioxide, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"zb" = ( +/obj/structure/sink{ + pixel_y = 25 }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"mE" = ( -/obj/structure/cable, -/obj/machinery/power/apc/highcap/fifteen_k{ - locked = 0; - name = "UO45 Gateway APC"; - pixel_y = -23; - start_charge = 100 +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -32 }, -/obj/machinery/light/small, -/obj/structure/rack, -/obj/item/clothing/shoes/magboots, /obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"mF" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 + dir = 9 }, -/obj/structure/rack, -/obj/item/clothing/shoes/magboots, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/turf/open/floor/iron/white, +/area/space/nearstation) +"zd" = ( +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"zf" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"mG" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"mH" = ( -/obj/structure/reagent_dispensers/fueltank, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"mI" = ( -/obj/machinery/light/small{ - dir = 1 +/area/awaymission/undergroundoutpost45/engineering) +"zg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 }, /turf/open/floor/plating/asteroid{ initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; initial_temperature = 363.9; name = "Cave Floor" }, -/area/awaymission/undergroundoutpost45/gateway) -"mJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall/rust, -/area/awaymission/undergroundoutpost45/research) -"mK" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/maintenance{ - name = "Research Maintenance"; - req_access_txt = "201" +/area/awaymission/undergroundoutpost45/caves) +"zh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/research) -"mL" = ( -/obj/structure/cable{ - icon_state = "1-2" +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/mining) +"zi" = ( +/turf/open/space, +/area/space/nearstation) +"zj" = ( +/obj/machinery/light{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "1-8" +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 32 }, +/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"mM" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/area/awaymission/undergroundoutpost45/crew_quarters) +"zk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/area/awaymission/undergroundoutpost45/research) -"mN" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"zl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/area/awaymission/undergroundoutpost45/research) -"mO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/obj/structure/extinguisher_cabinet{ + pixel_y = -28 }, -/area/awaymission/undergroundoutpost45/research) -"mP" = ( -/turf/open/floor/iron/cafeteria{ - dir = 5 +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 }, -/area/awaymission/undergroundoutpost45/research) -"mQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"zm" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"zn" = ( +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/reagent_containers/food/condiment/enzyme, /turf/open/floor/iron/cafeteria{ dir = 5 }, -/area/awaymission/undergroundoutpost45/research) -"mU" = ( -/obj/effect/turf_decal/tile/purple{ +/area/awaymission/undergroundoutpost45/crew_quarters) +"zp" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"mV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/public/glass{ - name = "Dormitories" +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"mW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/public/glass{ - name = "Dormitories" +/area/awaymission/undergroundoutpost45/caves) +"zr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"mX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/button/door{ - id = "awaydorm5"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_y = -25; - specialfunctions = 4 +/obj/structure/cable{ + icon_state = "1-4" }, -/obj/structure/chair/wood/normal{ +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/central) +"zu" = ( +/obj/structure/closet/l3closet, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/iron/white/side{ dir = 1 }, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/crew_quarters) -"mY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/crew_quarters) -"mZ" = ( +/area/awaymission/undergroundoutpost45/research) +"zv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Air to Distro" - }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"na" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/crew_quarters) -"nb" = ( -/obj/machinery/button/door{ - id = "awaydorm7"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_y = -25; - specialfunctions = 4 +/area/awaymission/undergroundoutpost45/central) +"zx" = ( +/obj/machinery/door/window/southright{ + name = "Bar Door"; + req_access_txt = "201" }, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/crew_quarters) -"ng" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"nh" = ( -/obj/machinery/door/poddoor{ - id = "UO45_Secure Storage"; - name = "secure Storage" +"zy" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/engineering) -"ni" = ( -/turf/closed/wall/r_wall/rust, -/area/awaymission/undergroundoutpost45/engineering) -"nj" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Server Room"; + req_access_txt = "201" + }, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/research) +"zz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/gateway) +"zA" = ( /obj/structure/cable{ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/research) -"nk" = ( -/obj/structure/table, -/obj/item/computer_hardware/hard_drive/role/signal/toxins, -/obj/item/computer_hardware/hard_drive/role/signal/toxins{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/awaymission/undergroundoutpost45/research) -"nl" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/turf/open/floor/plating{ + broken = 1 }, /area/awaymission/undergroundoutpost45/research) -"nm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ +"zC" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/awaymission/undergroundoutpost45/research) -"nn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/awaymission/undergroundoutpost45/research) -"np" = ( -/obj/structure/chair/office{ +/obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/research) -"nr" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ +/area/awaymission/undergroundoutpost45/engineering) +"zD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"ns" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"zF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 1 }, +/obj/item/storage/box/lights/mixed, /turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/research) -"nu" = ( +/area/awaymission/undergroundoutpost45/gateway) +"zG" = ( /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"zH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, +/obj/machinery/door/poddoor/preopen{ + id = "UO45_Engineering"; + name = "engineering Security Door" + }, /turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/research) -"nv" = ( -/obj/structure/cable{ - icon_state = "4-8" +/area/awaymission/undergroundoutpost45/engineering) +"zI" = ( +/obj/machinery/light/small{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" + }, +/area/awaymission/undergroundoutpost45/central) +"zJ" = ( +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/research) +"zK" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"zL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "UO45_rdprivacy"; + name = "Privacy Shutters" + }, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"zM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/door/airlock/maintenance, /turf/open/floor/plating, /area/awaymission/undergroundoutpost45/research) -"ny" = ( -/obj/machinery/vending/coffee, +"zN" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/crew_quarters) -"nz" = ( -/obj/machinery/vending/cigarette, -/obj/structure/sign/poster/contraband/smoke{ +/area/awaymission/undergroundoutpost45/gateway) +"zO" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/mining) +"zP" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/breath, +/obj/structure/sign/poster/official/safety_internals{ pixel_y = 32 }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/crew_quarters) -"nA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/awaymission/undergroundoutpost45/crew_quarters) -"nB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock{ - id_tag = "awaydorm5"; - name = "Dorm 5" - }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"nC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock{ - id_tag = "awaydorm7"; - name = "Dorm 7" +/turf/open/floor/iron{ + dir = 8; + icon_state = "floorscorched1" }, -/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"nE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, +"zQ" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"nG" = ( +/area/awaymission/undergroundoutpost45/mining) +"zS" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/machinery/door/airlock/public/glass{ - name = "Dormitories" - }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"nH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"nI" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"nJ" = ( -/obj/structure/cable{ - icon_state = "2-4" +"zU" = ( +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/storage/fancy/egg_box, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/freezer{ + locked = 0; + name = "refrigerator"; + req_access_txt = "201" }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/engineering) -"nK" = ( -/obj/structure/cable{ - icon_state = "2-4" +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/obj/structure/cable{ - icon_state = "2-8" +/area/awaymission/undergroundoutpost45/crew_quarters) +"zV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/button/door{ + desc = "A remote control-switch for the engineering security doors."; + id = "UO45_Engineering"; + name = "Engineering Lockdown"; + pixel_x = 24; + pixel_y = 6; + req_access_txt = "201" }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/engineering) -"nL" = ( -/obj/structure/cable{ - icon_state = "2-8" +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet, +/obj/structure/closet/secure_closet{ + icon_state = "sec"; + name = "security officer's locker"; + req_access_txt = "201" }, -/obj/effect/turf_decal/stripes/corner{ +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"zW" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/engineering) -"nM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/awaymission/undergroundoutpost45/research) -"nN" = ( +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"zX" = ( /obj/structure/cable{ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating{ + broken = 1 + }, /area/awaymission/undergroundoutpost45/research) -"nO" = ( +"zY" = ( /obj/machinery/airalarm/all_access{ dir = 4; - pixel_x = -23 + pixel_x = 23 }, -/obj/machinery/light/small{ - dir = 8 +/obj/machinery/camera/directional/east{ + c_tag = "Kitchen"; + network = list("uo45") }, /obj/structure/table, -/obj/item/radio/off, -/obj/item/laser_pointer, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/awaymission/undergroundoutpost45/research) -"nP" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/folder/white, -/obj/item/stamp/research_director{ - pixel_x = 3; - pixel_y = -2 - }, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/awaymission/undergroundoutpost45/research) -"nQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 }, -/obj/item/pen, /turf/open/floor/iron/cafeteria{ dir = 5 }, -/area/awaymission/undergroundoutpost45/research) -"nR" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 +/area/awaymission/undergroundoutpost45/crew_quarters) +"Ab" = ( +/obj/machinery/shower{ + dir = 4 }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for monitoring the research division and the labs within."; - name = "research monitor"; - network = list("uo45r") +/turf/open/floor/iron/freezer, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Ac" = ( +/obj/structure/table, +/obj/item/computer_hardware/hard_drive/role/signal/toxins, +/obj/item/computer_hardware/hard_drive/role/signal/toxins{ + pixel_x = -4; + pixel_y = 2 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/cafeteria{ dir = 5 }, /area/awaymission/undergroundoutpost45/research) -"nS" = ( -/obj/machinery/light/small{ +"Ad" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, -/obj/structure/window/reinforced{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/structure/table/reinforced, -/obj/item/taperecorder{ - pixel_x = -3 +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 }, -/obj/item/paicard{ - pixel_x = 4 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"Ae" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"Af" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock{ + id_tag = "awaydorm5"; + name = "Dorm 5" }, -/area/awaymission/undergroundoutpost45/research) -"nU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/research) -"nW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 +/area/awaymission/undergroundoutpost45/crew_quarters) +"Ag" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple{ + dir = 4 }, -/turf/closed/wall/r_wall, +/turf/open/floor/iron/white, /area/awaymission/undergroundoutpost45/research) -"nX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +"Ah" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix to Distro" + }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"Ai" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 4 }, -/turf/closed/wall/r_wall, -/area/awaymission/undergroundoutpost45/research) -"nY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"Al" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/closed/wall/r_wall/rust, -/area/awaymission/undergroundoutpost45/research) -"oa" = ( -/obj/structure/cable{ - icon_state = "1-4" +/turf/open/floor/plating{ + broken = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 5 +/area/awaymission/undergroundoutpost45/crew_quarters) +"Am" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"An" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"oe" = ( +"Ao" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" + }, +/area/awaymission/undergroundoutpost45/caves) +"Ar" = ( /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/camera/directional/north{ - c_tag = "Dormitories"; - network = list("uo45") - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"As" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 }, +/obj/structure/table, +/obj/item/paper/pamphlet/gateway, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"of" = ( +/area/awaymission/undergroundoutpost45/gateway) +"Au" = ( /obj/structure/cable{ icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"og" = ( -/obj/structure/cable{ - icon_state = "4-8" +/turf/open/floor/plating{ + broken = 1 }, -/obj/machinery/light/small{ - dir = 1 +/area/awaymission/undergroundoutpost45/research) +"Av" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/structure/disposalpipe/segment{ +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"Aw" = ( +/obj/machinery/door/airlock{ + name = "Emergency Supplies" + }, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/gateway) +"Ax" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"Ay" = ( +/obj/structure/alien/resin/wall, +/obj/structure/alien/weeds, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" }, +/area/awaymission/undergroundoutpost45/caves) +"Az" = ( +/turf/open/floor/carpet/grimy, +/area/awaymission/undergroundoutpost45/central) +"AB" = ( +/obj/machinery/vending/cola, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 1 }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"oi" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ +"AC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/awaymission/undergroundoutpost45/crew_quarters) +"AD" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ dir = 1 }, /turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"AE" = ( +/turf/open/floor/plating{ + burnt = 1 + }, +/area/awaymission/undergroundoutpost45/central) +"AK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, /area/awaymission/undergroundoutpost45/crew_quarters) -"oj" = ( -/obj/structure/cable{ - icon_state = "4-8" +"AM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"AP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"AQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"AT" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"AU" = ( +/obj/effect/turf_decal/tile/purple{ dir = 4 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"ol" = ( -/obj/structure/cable{ - icon_state = "4-8" +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"AV" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/awaymission/undergroundoutpost45/research) +"AW" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"om" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"Ba" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + broken = 1 }, +/area/awaymission/undergroundoutpost45/central) +"Bb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" + }, +/area/awaymission/undergroundoutpost45/caves) +"Bc" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/awaymission/undergroundoutpost45/research) +"Bd" = ( +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/central) +"Bg" = ( +/obj/structure/chair/fancy/comfy, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"on" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +"Bh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"Bj" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 9 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"op" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" +/area/awaymission/undergroundoutpost45/engineering) +"Bk" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/obj/effect/turf_decal/tile/purple{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/gateway) +"Bl" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/breath, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 }, -/obj/machinery/door/airlock/public/glass{ - name = "Dormitories" +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"Bm" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"oq" = ( +/obj/machinery/door/window{ + name = "Gateway Chamber"; + req_access_txt = "201" + }, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"Bp" = ( /obj/structure/cable{ icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"or" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 8 +"Bq" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"os" = ( +"Br" = ( +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 351.9; + name = "Cave Floor" + }, +/area/awaymission/undergroundoutpost45/caves) +"Bs" = ( /obj/structure/cable{ icon_state = "1-2" }, -/obj/effect/turf_decal/stripes/line{ +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"Bt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/gateway) +"Bu" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/sign/warning/deathsposal{ + desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'"; + name = "\improper DISPOSAL: LEADS TO EXTERIOR"; + pixel_y = -32 + }, /turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/engineering) -"ot" = ( -/obj/structure/cable, -/obj/machinery/power/smes{ - charge = 1.5e+006; - input_level = 10000; - inputting = 0; - output_level = 7000 +/area/awaymission/undergroundoutpost45/central) +"Bx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/engineering) -"ou" = ( -/obj/structure/cable, -/obj/machinery/power/smes{ - charge = 1.5e+006; - input_level = 30000; - inputting = 0; - output_level = 7000 +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"By" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Hydroponics"; + network = list("uo45") + }, +/obj/machinery/power/apc/highcap/fifteen_k{ + locked = 0; + name = "Hydroponics APC"; + pixel_y = -23; + start_charge = 100 }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/engineering) -"ov" = ( /obj/structure/cable{ - icon_state = "1-2" + icon_state = "0-4" }, -/obj/effect/turf_decal/stripes/line{ +/obj/effect/turf_decal/tile/green/half/contrasted{ dir = 8 }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/engineering) -"ox" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/awaymission/undergroundoutpost45/research) -"oy" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"Bz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 }, -/obj/machinery/button/door{ - desc = "A remote control-switch which locks the research division down in the event of a biohazard leak or contamination."; - id = "UO45_biohazard"; - name = "Biohazard Door Control"; - pixel_y = 8; - req_access_txt = "201" +/obj/effect/turf_decal/tile/neutral{ + dir = 1 }, -/obj/machinery/button/door{ - desc = "A remote control-switch that controls the Privacy Shutters."; - id = "UO45_rdprivacy"; - name = "Privacy Shutter Control"; - pixel_y = -2; - req_access_txt = "201" +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"BC" = ( +/obj/machinery/light/small{ + dir = 8 }, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, +/turf/open/floor/plating, /area/awaymission/undergroundoutpost45/research) -"oz" = ( -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/iron/cafeteria{ - dir = 5 +"BD" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/area/awaymission/undergroundoutpost45/research) -"oA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/obj/structure/extinguisher_cabinet{ + pixel_y = -28 }, -/area/awaymission/undergroundoutpost45/research) -"oB" = ( -/obj/machinery/computer/aifixer{ +/obj/effect/turf_decal/tile/green/half/contrasted{ dir = 8 }, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"BH" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 }, -/area/awaymission/undergroundoutpost45/research) -"oD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/research) -"oE" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Security Office"; - req_access_txt = "201" +/area/awaymission/undergroundoutpost45/central) +"BI" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"oG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"oH" = ( -/obj/machinery/door/firedoor, +/area/awaymission/undergroundoutpost45/engineering) +"BJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"oI" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, +/area/awaymission/undergroundoutpost45/gateway) +"BK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"oJ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/decal/cleanable/dirt, +"BL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"BM" = ( +/obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"oL" = ( +/area/awaymission/undergroundoutpost45/central) +"BN" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 + dir = 9 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"BS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron{ + dir = 8; + icon_state = "damaged1" }, -/obj/effect/turf_decal/tile/neutral{ +/area/awaymission/undergroundoutpost45/central) +"BT" = ( +/obj/structure/chair{ dir = 8 }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"oM" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/neutral, +/area/awaymission/undergroundoutpost45/central) +"BU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock{ + id_tag = "awaydorm7"; + name = "Dorm 7" + }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"oO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 +"BV" = ( +/obj/structure/cable{ + icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"oP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/area/awaymission/undergroundoutpost45/mining) +"BW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"oR" = ( +/turf/open/floor/plating{ + burnt = 1 + }, +/area/awaymission/undergroundoutpost45/research) +"BX" = ( /obj/structure/cable{ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - broken = 1 - }, -/area/awaymission/undergroundoutpost45/research) -"oS" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"BY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/public/glass{ + name = "Dormitories" }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"oT" = ( -/obj/structure/cable{ - icon_state = "1-2" +"BZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = 23 +/obj/structure/chair/wood/normal{ + dir = 1 }, -/obj/machinery/light/small{ - dir = 4 +/obj/machinery/button/door{ + id = "awaydorm2"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_y = -25; + specialfunctions = 4 }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/central) +"Cb" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"oU" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/engineering) -"oV" = ( +/area/awaymission/undergroundoutpost45/central) +"Cc" = ( /obj/machinery/power/terminal{ dir = 1 }, @@ -4499,119 +3587,269 @@ }, /turf/open/floor/plating, /area/awaymission/undergroundoutpost45/engineering) -"oW" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/machinery/power/port_gen/pacman/super{ - name = "S.U.P.E.R.P.A.C.M.A.N.-type portable generator" +"Cd" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster{ + pixel_y = -28 }, -/obj/item/wrench, -/obj/structure/cable{ - icon_state = "0-8" +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/central) +"Cf" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 }, -/obj/structure/cable{ - icon_state = "0-4" +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/stripes/line{ + dir = 6 }, /turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"Ch" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, /area/awaymission/undergroundoutpost45/engineering) -"oX" = ( -/obj/machinery/power/terminal{ +"Cj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Diner" + }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Ck" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Cl" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/awaymission/undergroundoutpost45/research) +"Cm" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm/all_access{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 1 }, -/obj/machinery/power/port_gen/pacman{ - name = "P.A.C.M.A.N.-type portable generator" +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Cn" = ( +/obj/machinery/button/door{ + desc = "A remote control-switch for the elevator doors."; + id = "UO45_Elevator"; + name = "Elevator Doors"; + pixel_x = 6; + pixel_y = -24 }, -/obj/structure/cable{ - icon_state = "0-8" +/obj/machinery/button/door{ + desc = "A remote control-switch to call the elevator to your level."; + id = "UO45_useless"; + name = "B1"; + pixel_x = -6; + pixel_y = -24 }, -/turf/open/floor/plating, +/obj/machinery/button/door{ + desc = "A remote control-switch to call the elevator to your level."; + id = "UO45_useless"; + name = "B2"; + pixel_x = -6; + pixel_y = -34 + }, +/turf/open/floor/iron{ + dir = 8; + icon_state = "damaged4" + }, +/area/awaymission/undergroundoutpost45/central) +"Cp" = ( +/obj/machinery/door/airlock{ + name = "Private Restroom" + }, +/turf/open/floor/iron/freezer, +/area/awaymission/undergroundoutpost45/research) +"Cq" = ( +/obj/structure/chair, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"oY" = ( -/obj/structure/cable{ - icon_state = "1-2" +"Ct" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Cu" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" }, -/obj/machinery/light/small{ +/area/awaymission/undergroundoutpost45/caves) +"Cv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"Cw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/effect/turf_decal/stripes/line{ +/obj/machinery/portable_atmospherics/scrubber, +/obj/structure/window{ dir = 8 }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/engineering) -"oZ" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/engine/air, -/area/awaymission/undergroundoutpost45/engineering) -"pa" = ( -/obj/machinery/air_sensor{ - id_tag = "UO45_air_sensor" +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"Cy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 }, -/turf/open/floor/engine/air, -/area/awaymission/undergroundoutpost45/engineering) -"pb" = ( -/obj/structure/cable{ - icon_state = "2-4" +/obj/effect/turf_decal/tile/neutral{ + dir = 4 }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"Cz" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/research) -"pd" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/structure/sign/warning/deathsposal{ - desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'"; - name = "\improper DISPOSAL: LEADS TO EXTERIOR"; - pixel_y = -32 +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"CB" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 }, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"CC" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" + }, +/turf/open/floor/iron/freezer, +/area/awaymission/undergroundoutpost45/crew_quarters) +"CE" = ( +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/central) +"CF" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/area/awaymission/undergroundoutpost45/research) -"pe" = ( /obj/structure/disposalpipe/segment{ - dir = 9 + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/area/awaymission/undergroundoutpost45/research) -"pf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"CG" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/engineering) +"CH" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/area/awaymission/undergroundoutpost45/research) -"pg" = ( -/obj/item/storage/secure/safe{ - pixel_x = 5; - pixel_y = -27 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/iron/cafeteria{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + broken = 1 }, /area/awaymission/undergroundoutpost45/research) -"pj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 6 +"CI" = ( +/obj/structure/closet/firecloset, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, +/obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"pm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 +"CJ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"CL" = ( +/obj/machinery/door/firedoor, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/machinery/door/poddoor/preopen{ + id = "UO45_Engineering"; + name = "engineering Security Door" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"pn" = ( +/area/awaymission/undergroundoutpost45/engineering) +"CM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/green/anticorner/contrasted, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"CN" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"CO" = ( +/obj/item/storage/backpack/satchel/tox, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/suit/toggle/labcoat/science, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet{ + icon_state = "rd"; + name = "research director's locker"; + req_access_txt = "201" + }, +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/awaymission/undergroundoutpost45/research) +"CP" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"CQ" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "201" + }, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"CR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -4619,481 +3857,475 @@ broken = 1 }, /area/awaymission/undergroundoutpost45/central) -"po" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock{ - id_tag = "awaydorm4"; - name = "Dorm 4" +"CT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"pp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/rust, -/area/awaymission/undergroundoutpost45/crew_quarters) -"pq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock{ - id_tag = "awaydorm6"; - name = "Dorm 6" + id_tag = "awaydorm3"; + name = "Dorm 3" }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"pr" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" +/area/awaymission/undergroundoutpost45/central) +"CU" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/iron/freezer, -/area/awaymission/undergroundoutpost45/crew_quarters) -"ps" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/crew_quarters) -"pt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/obj/structure/cable{ + icon_state = "2-8" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"pu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/obj/structure/disposalpipe/segment{ dir = 6 }, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" - }, -/area/awaymission/undergroundoutpost45/caves) -"pv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 }, -/area/awaymission/undergroundoutpost45/caves) -"pw" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"CV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"CY" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/area/awaymission/undergroundoutpost45/engineering) -"px" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + broken = 1 }, -/turf/closed/wall/rust, -/area/awaymission/undergroundoutpost45/engineering) -"py" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 +/area/awaymission/undergroundoutpost45/central) +"CZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 }, -/turf/closed/wall/r_wall, -/area/awaymission/undergroundoutpost45/engineering) -"pz" = ( +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"Da" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Db" = ( /obj/structure/cable{ - icon_state = "1-4" + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/engineering) -"pA" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/effect/turf_decal/tile/yellow{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Dc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/obj/machinery/door/airlock/mining/glass{ + name = "Mining EVA"; + req_access_txt = "201" }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/engineering) -"pB" = ( /obj/structure/cable{ - icon_state = "2-4" + icon_state = "4-8" }, -/obj/structure/cable{ - icon_state = "2-8" +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"Df" = ( +/obj/machinery/light{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 10 +/obj/machinery/processor, +/turf/open/floor/iron/cafeteria{ + dir = 5 }, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Dg" = ( +/turf/open/floor/iron/showroomfloor, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Dh" = ( +/obj/machinery/portable_atmospherics/scrubber, /obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/engineering) -"pC" = ( -/obj/structure/cable{ - icon_state = "4-8" + dir = 10 }, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"Di" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/engineering) -"pD" = ( -/obj/structure/cable{ - icon_state = "1-8" +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"Dk" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/eat{ + pixel_x = 32 }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/engineering) -"pE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos{ - icon_state = "in"; - id_tag = "UO45_air_out"; - name = "air out" +/obj/effect/turf_decal/tile/green{ + dir = 4 }, -/turf/open/floor/engine{ - initial_gas_mix = "n2=10580;o2=2644;TEMP=351.9"; - name = "air floor" +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"Dl" = ( +/obj/structure/cable{ + icon_state = "1-8" }, -/area/awaymission/undergroundoutpost45/engineering) -"pF" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos{ - id = "UO45_air_in" +/obj/structure/disposalpipe/segment{ + dir = 9 }, -/turf/open/floor/engine/air, -/area/awaymission/undergroundoutpost45/engineering) -"pG" = ( -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"Dm" = ( +/turf/open/floor/iron/white, /area/awaymission/undergroundoutpost45/research) -"pH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/awaymission/undergroundoutpost45/research) -"pI" = ( -/obj/machinery/door/airlock/command{ - name = "Server Room"; - req_access_txt = "201" - }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/research) -"pJ" = ( -/obj/machinery/door/airlock{ - name = "Private Restroom" - }, -/turf/open/floor/iron/freezer, -/area/awaymission/undergroundoutpost45/research) -"pK" = ( +"Dn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/awaymission/undergroundoutpost45/research) -"pL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/rust, -/area/awaymission/undergroundoutpost45/research) -"pM" = ( -/obj/machinery/door/airlock/research/glass{ - name = "Research Storage"; - req_access_txt = "201" +/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ + dir = 8 }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"pQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Dq" = ( +/obj/structure/mirror{ + pixel_x = 28 }, -/obj/machinery/button/door{ - id = "awaydorm4"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_x = -25; - specialfunctions = 4 +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/carpet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, /area/awaymission/undergroundoutpost45/crew_quarters) -"pR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 +"Dr" = ( +/obj/machinery/vending/cigarette, +/obj/structure/sign/poster/contraband/smoke{ + pixel_y = 32 }, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/crew_quarters) -"pS" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/closed/wall, +/turf/open/floor/iron/dark, /area/awaymission/undergroundoutpost45/crew_quarters) -"pT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 +"Ds" = ( +/obj/machinery/computer/security{ + dir = 4; + network = list("uo45") }, -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/crew_quarters) -"pU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ +/obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/research) +"Dt" = ( +/obj/machinery/computer/security{ + dir = 1; + network = list("uo45") + }, /obj/machinery/button/door{ - id = "awaydorm6"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 + desc = "A remote control-switch for the security Privacy Shutters."; + id = "UO45_EngineeringOffice"; + name = "Privacy Shutters"; + pixel_x = -24; + pixel_y = 6; + req_access_txt = "201" }, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/crew_quarters) -"pV" = ( -/obj/machinery/light/small{ +/obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 }, -/obj/structure/toilet{ +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"Du" = ( +/obj/machinery/airalarm/all_access{ + dir = 4; + pixel_x = 23 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/freezer, -/area/awaymission/undergroundoutpost45/crew_quarters) -"pW" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/gateway) +"Dv" = ( +/obj/item/clothing/under/misc/pj, +/obj/structure/closet/secure_closet/personal/cabinet{ + locked = 0; + req_access_txt = "201" }, -/turf/open/floor/iron/freezer, -/area/awaymission/undergroundoutpost45/crew_quarters) -"pX" = ( -/turf/open/floor/iron/freezer, +/turf/open/floor/carpet, /area/awaymission/undergroundoutpost45/crew_quarters) -"pY" = ( -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, +"Dy" = ( +/obj/item/tank/internals/air, +/obj/item/clothing/mask/gas, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/freezer, -/area/awaymission/undergroundoutpost45/crew_quarters) -"qa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" +/obj/structure/closet/emcloset, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/research) +"Dz" = ( +/obj/structure/cable{ + icon_state = "2-8" }, -/area/awaymission/undergroundoutpost45/caves) -"qb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/engineering) -"qc" = ( /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/door/airlock/engineering/glass{ - name = "SMES Room"; - req_access_txt = "201" +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"DA" = ( +/obj/structure/chair, /turf/open/floor/iron/dark, /area/awaymission/undergroundoutpost45/engineering) -"qd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/meter{ - name = "Mixed Air Tank Out" +"DB" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/engineering) -"qe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/meter{ - name = "Mixed Air Tank In" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/engineering) -"qg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall/rust, -/area/awaymission/undergroundoutpost45/research) -"qh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 4; - external_pressure_bound = 120; - name = "server vent" +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/turf/open/floor/circuit/telecomms/server, -/area/awaymission/undergroundoutpost45/research) -"qi" = ( -/obj/machinery/atmospherics/pipe/simple{ +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"DC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, -/turf/open/floor/iron/dark{ - initial_gas_mix = "n2=500,TEMP=80"; - name = "Server Walkway" +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"DD" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/carpet/grimy, +/area/awaymission/undergroundoutpost45/central) +"DE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "UO45_biohazard"; + name = "biohazard Containment Door" }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/research) -"qj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = 32 +"DF" = ( +/obj/machinery/smartfridge, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"DG" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/kirbyplants, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"DI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"DK" = ( +/obj/structure/closet/l3closet, /turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/research) -"qk" = ( +/area/awaymission/undergroundoutpost45/central) +"DL" = ( +/obj/structure/chair/fancy/comfy, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/research) -"ql" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/research) -"qm" = ( -/obj/machinery/light/small, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 }, -/obj/structure/mirror{ - pixel_x = -28 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"DN" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/iron/freezer, -/area/awaymission/undergroundoutpost45/research) -"qn" = ( -/obj/structure/toilet{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/freezer, -/area/awaymission/undergroundoutpost45/research) -"qo" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/clothing/glasses/hud/health, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white/corner, -/area/awaymission/undergroundoutpost45/research) -"qp" = ( -/obj/structure/table, -/obj/machinery/airalarm/all_access{ - pixel_y = 23; - dir = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/hand_labeler, -/obj/item/clothing/neck/stethoscope, -/turf/open/floor/iron/white/side, +/turf/open/floor/plating, /area/awaymission/undergroundoutpost45/research) -"qq" = ( -/obj/machinery/vending/medical{ - req_access_txt = "201" +"DP" = ( +/obj/item/storage/secure/safe{ + pixel_x = 5; + pixel_y = -27 }, -/turf/open/floor/iron/white/side{ - dir = 6 +/turf/open/floor/iron/cafeteria{ + dir = 5 }, /area/awaymission/undergroundoutpost45/research) -"qr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white/side{ - dir = 8 +"DS" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/area/awaymission/undergroundoutpost45/research) -"qs" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/crew_quarters) -"qt" = ( -/obj/machinery/light/small{ +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = 23 +/obj/machinery/camera/directional/south{ + c_tag = "Research Division West"; + network = list("uo45","uo45r") }, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/crew_quarters) -"qu" = ( -/obj/machinery/light/small{ - dir = 8 +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/gateway) +"DU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 10 }, -/obj/structure/dresser, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/crew_quarters) -"qv" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = 23 +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/turf/open/floor/carpet, /area/awaymission/undergroundoutpost45/crew_quarters) -"qw" = ( -/obj/machinery/light/small{ +"DW" = ( +/obj/machinery/gateway{ dir = 8 }, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"DY" = ( /obj/machinery/airalarm/all_access{ dir = 4; - pixel_x = -23 - }, -/turf/open/floor/iron/freezer, -/area/awaymission/undergroundoutpost45/crew_quarters) -"qx" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 + pixel_x = 23 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/freezer, -/area/awaymission/undergroundoutpost45/crew_quarters) -"qy" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, +/turf/open/floor/carpet, /area/awaymission/undergroundoutpost45/crew_quarters) -"qz" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ +"Ea" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/computer/atmos_control/tank{ + dir = 1; + input_tag = "UO45_o2_in"; + name = "Oxygen Supply Control"; + output_tag = "UO45_o2_out"; + sensors = list("UO45_o2_sensor" = "Tank") + }, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"Ec" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"Ed" = ( +/obj/structure/alien/weeds, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/mob_spawn/human, /turf/open/floor/plating/asteroid{ initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; initial_temperature = 363.9; name = "Cave Floor" }, /area/awaymission/undergroundoutpost45/caves) -"qA" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ +"Ef" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/awaymission/undergroundoutpost45/central) +"Eg" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"Eh" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/barman_recipes, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Ei" = ( +/obj/machinery/vending/snack, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Ek" = ( +/obj/machinery/shower{ dir = 1 }, +/turf/open/floor/iron/freezer, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Eo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"Ep" = ( +/obj/structure/closet/crate, /turf/open/floor/plating/asteroid{ initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; initial_temperature = 363.9; name = "Cave Floor" }, /area/awaymission/undergroundoutpost45/caves) -"qB" = ( +"Eq" = ( +/obj/structure/cable, +/obj/machinery/power/smes{ + charge = 1.5e+006; + input_level = 30000; + inputting = 0; + output_level = 7000 + }, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/engineering) +"Er" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/engineering) +"Es" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"Et" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"Eu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 + dir = 6 }, /turf/open/floor/plating/asteroid{ initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; @@ -5101,1996 +4333,2305 @@ name = "Cave Floor" }, /area/awaymission/undergroundoutpost45/caves) -"qC" = ( -/obj/machinery/vending/cola, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/engineering) -"qD" = ( -/obj/structure/chair, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/engineering) -"qG" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 5 - }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"qH" = ( +"Ew" = ( /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/visible{ +/obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"qJ" = ( -/obj/machinery/light{ +"Ex" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" + }, +/area/awaymission/undergroundoutpost45/caves) +"Ey" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 10 +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics"; - network = list("uo45") +/area/awaymission/undergroundoutpost45/research) +"Ez" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/obj/structure/table, -/obj/item/clothing/gloves/color/yellow, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 5 +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 }, -/obj/machinery/firealarm{ - pixel_y = 24 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"EA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/obj/item/multitool, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"EC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"EE" = ( +/obj/structure/closet/firecloset, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 }, +/obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"qL" = ( -/obj/machinery/atmospherics/components/trinary/mixer/airmix{ - dir = 1 +"EF" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 +/obj/item/screwdriver{ + pixel_y = 10 }, -/turf/open/floor/iron/cafeteria, +/obj/item/radio/off, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"qM" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10 +"EG" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Air to External" }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"qN" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, +"EH" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 9 + }, +/turf/open/floor/iron{ + dir = 8; + icon_state = "floorscorched2" + }, /area/awaymission/undergroundoutpost45/engineering) -"qO" = ( -/obj/structure/cable{ - icon_state = "1-2" +"EI" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/research) -"qP" = ( -/obj/machinery/light/small{ - dir = 8 +/area/awaymission/undergroundoutpost45/crew_quarters) +"EM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/obj/machinery/airalarm/server{ - dir = 4; - pixel_x = -22 +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"EN" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/rnd/server{ - req_access = null +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/turf/open/floor/circuit/telecomms/server, -/area/awaymission/undergroundoutpost45/research) -"qQ" = ( -/obj/machinery/atmospherics/pipe/manifold{ +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/gateway) +"EP" = ( +/obj/structure/chair/fancy/comfy, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ dir = 8 }, -/turf/open/floor/iron/dark{ - initial_gas_mix = "n2=500,TEMP=80"; - name = "Server Walkway" +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"EQ" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/area/awaymission/undergroundoutpost45/research) -"qR" = ( -/obj/machinery/atmospherics/pipe/simple{ +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"ER" = ( +/obj/effect/turf_decal/tile/green/half/contrasted, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"ES" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, -/obj/machinery/door/airlock/command/glass{ - name = "Server Room"; +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/closet/secure_closet/engineering_personal{ + req_access = null; req_access_txt = "201" }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/research) -"qS" = ( -/obj/machinery/atmospherics/pipe/simple{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 4 }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/research) -"qT" = ( +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"EU" = ( /obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple{ - dir = 9 + dir = 1 }, -/obj/structure/chair/office/light, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, +/area/awaymission/undergroundoutpost45/crew_quarters) +"EW" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/research{ + name = "Research Lab"; + req_access_txt = "201" + }, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"EX" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/item/pen, /turf/open/floor/iron/dark, /area/awaymission/undergroundoutpost45/research) -"qU" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 +"EY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/public/glass{ + name = "Dormitories" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white/side{ - dir = 4 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Fa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock{ + id_tag = "awaydorm1"; + name = "Dorm 1" }, -/area/awaymission/undergroundoutpost45/research) -"qV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"Fb" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"Fc" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Unfiltered to Mix" + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 32 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"qW" = ( -/obj/machinery/light/small{ +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"Fi" = ( +/obj/structure/table/wood, +/obj/item/newspaper, +/turf/open/floor/carpet/grimy, +/area/awaymission/undergroundoutpost45/central) +"Fj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white/side{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/area/awaymission/undergroundoutpost45/research) -"qY" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster{ - pixel_y = -28 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 }, -/obj/item/pen, -/turf/open/floor/carpet, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"qZ" = ( -/obj/structure/chair/wood/normal{ - dir = 8 +"Fk" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + locked = 0; + req_access_txt = "201" }, +/obj/item/clothing/under/misc/pj, /turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/mining) +"Fl" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"ra" = ( -/obj/machinery/light/small{ +"Fo" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/airalarm/all_access{ + pixel_y = 23; dir = 1 }, -/obj/structure/toilet{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron/freezer, -/area/awaymission/undergroundoutpost45/crew_quarters) -"rb" = ( -/obj/machinery/door/airlock{ - name = "Unit 2" +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/freezer, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"rc" = ( -/obj/structure/mirror{ - pixel_x = 28 +"Fp" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/breath, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"Fs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/turf/open/floor/plating{ + burnt = 1 }, -/turf/open/floor/iron/freezer, +/area/awaymission/undergroundoutpost45/central) +"Fu" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plating{ + burnt = 1 + }, +/area/awaymission/undergroundoutpost45/central) +"Fy" = ( +/obj/machinery/seed_extractor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/central) +"Fz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"FB" = ( +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/reagent_containers/glass/rag, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"rd" = ( -/obj/structure/disposalpipe/segment, +"FC" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"FD" = ( +/obj/machinery/door/airlock/maintenance, /turf/open/floor/plating, /area/awaymission/undergroundoutpost45/crew_quarters) -"re" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 +"FE" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"rf" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/gateway) +"FF" = ( /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/light/small{ +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"rg" = ( -/obj/effect/spawner/structure/window/reinforced, +/area/awaymission/undergroundoutpost45/engineering) +"FG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/crew_quarters) -"rh" = ( -/obj/machinery/light/small{ - dir = 8 +/area/awaymission/undergroundoutpost45/central) +"FI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"FK" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"FL" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/awaymission/undergroundoutpost45/research) +"FO" = ( /obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 + dir = 1; + pixel_y = -24 }, -/turf/open/floor/iron{ - dir = 8; - icon_state = "floorscorched1" +/obj/machinery/camera/directional/south{ + c_tag = "Research Division East"; + network = list("uo45","uo45r") }, -/area/awaymission/undergroundoutpost45/engineering) -"ri" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"rj" = ( -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"rm" = ( -/turf/open/floor/plating{ - broken = 1 +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"FP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/area/awaymission/undergroundoutpost45/central) -"ro" = ( +/obj/machinery/button/door{ + id = "awaydorm8"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_y = -25; + specialfunctions = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/mining) +"FQ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"FS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/closed/wall/r_wall, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"rp" = ( -/obj/structure/cable{ - icon_state = "0-4" +"FT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 }, -/obj/machinery/power/apc/highcap/fifteen_k{ +/turf/open/floor/iron{ dir = 8; - name = "UO45 Engineering APC"; - pixel_x = -25; - req_access_txt = "201"; - start_charge = 100 + icon_state = "floorscorched1" }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 +/area/awaymission/undergroundoutpost45/mining) +"FU" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/stripes/line{ + dir = 10 }, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"FV" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"rq" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/visible, -/obj/machinery/meter/atmos{ - id_tag = "UO45_distro_meter"; - name = "Distribution Loop" +/area/awaymission/undergroundoutpost45/crew_quarters) +"FW" = ( +/obj/structure/cable{ + icon_state = "2-8" }, -/turf/open/floor/iron, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, /area/awaymission/undergroundoutpost45/engineering) -"rs" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - locked = 0; - req_access_txt = "201" +"FX" = ( +/obj/machinery/light/small/broken{ + dir = 4 }, -/obj/item/clothing/under/misc/pj, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/mining) -"rt" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ +/turf/open/floor/iron{ + dir = 8; + icon_state = "floorscorched2" + }, +/area/awaymission/undergroundoutpost45/central) +"FY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/gateway) +"Gb" = ( +/obj/structure/table, +/obj/item/newspaper, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"ru" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ +/area/awaymission/undergroundoutpost45/crew_quarters) +"Gc" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/central) +"Ge" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/machinery/atmospherics/components/binary/pump/on{ +/obj/machinery/firealarm{ dir = 1; - name = "Mix to Exterior" + pixel_y = -24 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"rv" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 +/obj/effect/turf_decal/tile/yellow{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"rw" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"rx" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/bot, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Gf" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"rz" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 9 +/area/awaymission/undergroundoutpost45/central) +"Gl" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + burnt = 1 }, -/turf/open/floor/iron/dark{ - initial_gas_mix = "n2=500,TEMP=80"; - name = "Server Walkway" +/area/awaymission/undergroundoutpost45/central) +"Gm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 }, -/area/awaymission/undergroundoutpost45/research) -"rA" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/central) +"Gn" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/sign/warning/securearea{ desc = "A warning sign which reads 'SERVER ROOM'."; name = "SERVER ROOM"; - pixel_y = -32 + pixel_y = 32 }, /turf/open/floor/plating, /area/awaymission/undergroundoutpost45/research) -"rB" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/pen, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/research) -"rC" = ( -/obj/machinery/computer/rdservercontrol{ +"Go" = ( +/obj/machinery/power/terminal{ dir = 1 }, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/research) -"rE" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 +/obj/machinery/power/port_gen/pacman{ + name = "P.A.C.M.A.N.-type portable generator" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 +/obj/structure/cable{ + icon_state = "0-8" }, /turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/engineering) +"Gp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table, +/obj/item/folder/white, +/obj/item/disk/tech_disk, +/obj/item/disk/design_disk, +/turf/open/floor/iron/white, /area/awaymission/undergroundoutpost45/research) -"rF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"Gq" = ( +/obj/machinery/airalarm/all_access{ + dir = 4; + pixel_x = -23 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/obj/machinery/light/small{ + dir = 8 }, -/obj/machinery/door/airlock/maintenance{ - name = "Research Maintenance"; - req_access_txt = "201" +/obj/structure/table, +/obj/item/radio/off, +/obj/item/laser_pointer, +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/turf/open/floor/plating, /area/awaymission/undergroundoutpost45/research) -"rG" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 +"Gr" = ( +/turf/open/floor/plating{ + icon_plating = "asteroidplating"; + icon_state = "asteroidplating"; + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9 }, -/turf/open/floor/iron/white/side{ - dir = 4 +/area/awaymission/undergroundoutpost45/caves) +"Gs" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/breath, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/central) +"Gw" = ( +/obj/structure/sink{ + pixel_y = 25 }, -/area/awaymission/undergroundoutpost45/research) -"rH" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 +/obj/effect/turf_decal/stripes/line{ + dir = 5 }, /turf/open/floor/iron/white, /area/awaymission/undergroundoutpost45/research) -"rI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 +"Gz" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"GC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/button/door{ + desc = "A remote control-switch whichs locks the research division down in the event of a biohazard leak or contamination."; + id = "UO45_biohazard"; + name = "Biohazard Door Control"; + pixel_y = -24; + req_access_txt = "201" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"rJ" = ( -/obj/structure/table, -/obj/item/storage/box/gloves, -/turf/open/floor/iron/white/side{ +/obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 }, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/research) -"rL" = ( +"GE" = ( +/obj/machinery/biogenerator, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/central) +"GG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock{ - name = "Unisex Showers" - }, -/turf/open/floor/iron/freezer, -/area/awaymission/undergroundoutpost45/crew_quarters) -"rN" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Engineering Hallway"; - network = list("uo45") + id_tag = "awaydorm6"; + name = "Dorm 6" }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"rO" = ( -/obj/structure/cable{ - icon_state = "1-4" +"GL" = ( +/obj/machinery/light/small{ + dir = 8 }, -/obj/structure/cable{ - icon_state = "2-4" +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" }, -/obj/structure/disposalpipe/segment{ - dir = 5 +/area/awaymission/undergroundoutpost45/mining) +"GM" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"GN" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"rP" = ( -/obj/structure/disposalpipe/segment{ +/area/awaymission/undergroundoutpost45/central) +"GR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/machinery/door/airlock/external, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"GT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/structure/cable{ - icon_state = "4-8" +/turf/open/floor/iron{ + dir = 8; + icon_state = "floorscorched1" }, -/obj/machinery/door/firedoor, +/area/awaymission/undergroundoutpost45/mining) +"GU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"rQ" = ( +/area/awaymission/undergroundoutpost45/mining) +"GW" = ( /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ dir = 4 }, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/engineering) +"GZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"rR" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ +/area/awaymission/undergroundoutpost45/engineering) +"Ha" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"Hb" = ( +/obj/machinery/airalarm/all_access{ + pixel_y = 23; dir = 1 }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"rS" = ( -/obj/structure/cable{ - icon_state = "4-8" +"Hd" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Mix to Filter" }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"He" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"Hf" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 +/obj/machinery/computer/atmos_control/tank{ + dir = 1; + input_tag = "UO45_n2_in"; + name = "Nitrogen Supply Control"; + output_tag = "UO45_n2_out"; + sensors = list("UO45_n2_sensor" = "Tank") }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/effect/turf_decal/tile/red/anticorner/contrasted, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"rT" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 23; - dir = 1 +/area/awaymission/undergroundoutpost45/engineering) +"Hg" = ( +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/research) +"Hh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"Hi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"Hk" = ( +/obj/structure/cable{ + icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/engineering) +"Hm" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/obj/effect/turf_decal/tile/yellow{ +/area/awaymission/undergroundoutpost45/crew_quarters) +"Hn" = ( +/obj/machinery/light/small{ dir = 1 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"rU" = ( -/obj/structure/cable{ - icon_state = "4-8" +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" }, +/area/awaymission/undergroundoutpost45/gateway) +"Ho" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 10 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/iron/white/side{ dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/tile/yellow{ +/area/awaymission/undergroundoutpost45/research) +"Hp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/grille, +/turf/open/floor/plating{ + broken = 1 + }, +/area/awaymission/undergroundoutpost45/central) +"Hs" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"rX" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Reception" - }, +"Hu" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"Hv" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"rY" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/area/awaymission/undergroundoutpost45/central) +"Hw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"rZ" = ( -/obj/structure/cable{ - icon_state = "4-8" +/area/awaymission/undergroundoutpost45/crew_quarters) +"Hz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/mining) +"HB" = ( +/obj/machinery/light/small{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"sa" = ( +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" + }, +/area/awaymission/undergroundoutpost45/crew_quarters) +"HC" = ( /obj/structure/cable{ icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"sc" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "UO45_EngineeringOffice"; - name = "Privacy Shutters" - }, -/obj/machinery/door/window/southleft{ - dir = 4; - name = "Engineering Reception"; - req_access_txt = "201" +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"HE" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 }, -/obj/item/pen, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"se" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 +/area/awaymission/undergroundoutpost45/central) +"HF" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Bar"; + network = list("uo45") }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"sg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "UO45_Engineering"; - name = "engineering Security Door" +/area/awaymission/undergroundoutpost45/crew_quarters) +"HG" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/engineering) -"sh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 4 +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, +/turf/open/floor/iron/dark, /area/awaymission/undergroundoutpost45/engineering) -"si" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/closet/secure_closet/personal/cabinet{ - locked = 0; - req_access_txt = "201" - }, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/mining) -"sj" = ( -/obj/structure/cable, -/obj/machinery/power/apc/highcap/fifteen_k{ - locked = 0; - name = "UO45 Mining APC"; - pixel_y = -23; - start_charge = 100 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/closet/secure_closet/engineering_personal{ - icon_state = "mining"; - locked = 0; - name = "miner's equipment"; - req_access = null; - req_access_txt = "201" +"HK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 }, -/obj/item/storage/backpack/satchel/eng, -/obj/item/clothing/gloves/fingerless, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"sk" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix to Distro" +/obj/machinery/newscaster{ + pixel_x = -30 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"sl" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"sm" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"sn" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 +/area/awaymission/undergroundoutpost45/central) +"HL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"so" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"sq" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"HN" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 1 }, /obj/machinery/meter, /turf/open/floor/plating, /area/awaymission/undergroundoutpost45/engineering) -"sr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 8; - id_tag = "UO45_mix_in"; - name = "distro out" - }, -/turf/open/floor/engine/vacuum, -/area/awaymission/undergroundoutpost45/engineering) -"ss" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/awaymission/undergroundoutpost45/engineering) -"st" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/research) -"su" = ( +"HP" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/research) -"sv" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/sign/warning/deathsposal{ - desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'"; - name = "\improper DISPOSAL: LEADS TO EXTERIOR"; - pixel_y = -32 - }, -/turf/open/floor/iron/white/corner{ - dir = 4 - }, -/area/awaymission/undergroundoutpost45/research) -"sw" = ( -/obj/structure/closet/l3closet, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/iron/white/side{ - dir = 1 +/turf/open/floor/plating{ + broken = 1 }, -/area/awaymission/undergroundoutpost45/research) -"sx" = ( -/obj/structure/closet/l3closet, +/area/awaymission/undergroundoutpost45/crew_quarters) +"HR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white/side{ +/obj/effect/turf_decal/stripes/line{ dir = 1 }, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/research) -"sy" = ( -/obj/structure/table, -/obj/item/storage/firstaid/toxin{ - pixel_x = 2; - pixel_y = 6 +"HT" = ( +/obj/structure/window/reinforced, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"HV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/obj/item/storage/firstaid/toxin{ - pixel_x = -2; - pixel_y = 4 +/obj/structure/sign/warning/securearea{ + pixel_x = 32 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white/side{ - dir = 1 +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 }, -/area/awaymission/undergroundoutpost45/research) -"sz" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 6 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"HW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 }, -/turf/open/floor/iron/white/corner{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple{ + dir = 4 }, +/turf/open/floor/iron/white, /area/awaymission/undergroundoutpost45/research) -"sA" = ( -/obj/machinery/shower{ +"HX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/item/soap/nanotrasen, -/turf/open/floor/iron/freezer, -/area/awaymission/undergroundoutpost45/crew_quarters) -"sB" = ( -/obj/machinery/light/small{ - dir = 1 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/freezer, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"HY" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"sC" = ( -/obj/machinery/shower{ +"HZ" = ( +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_y = -32 + }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"Ib" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, -/turf/open/floor/iron/freezer, -/area/awaymission/undergroundoutpost45/crew_quarters) -"sD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"Id" = ( /obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 + icon_state = "4-8" }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"sE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"sF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"Ie" = ( +/obj/machinery/airalarm/all_access{ + pixel_y = 23; + dir = 1 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"sG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ +/obj/machinery/light/small{ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 +/obj/effect/turf_decal/tile/purple{ + dir = 4 }, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/gateway) +"Ig" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"sH" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +"Ih" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 +/turf/open/floor/plating{ + burnt = 1 }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 +/area/awaymission/undergroundoutpost45/central) +"Ii" = ( +/obj/structure/mirror{ + pixel_x = 28 }, -/turf/open/floor/iron, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/iron/freezer, /area/awaymission/undergroundoutpost45/crew_quarters) -"sI" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 +"Ij" = ( +/obj/machinery/door/airlock{ + name = "Private Restroom" + }, +/turf/open/floor/iron/freezer, +/area/awaymission/undergroundoutpost45/engineering) +"Im" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/warning/securearea{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"sL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +"In" = ( +/obj/structure/chair/fancy/comfy{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ dir = 4 }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Reception" +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Io" = ( +/obj/machinery/door/poddoor{ + id = "UO45_Elevator" }, +/obj/effect/turf_decal/delivery, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"sM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/area/awaymission/undergroundoutpost45/central) +"Ip" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 }, +/obj/item/pen, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"Ir" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"sN" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ +"Is" = ( +/obj/machinery/light/small{ dir = 1 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"sP" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "UO45_EngineeringOffice"; - name = "Privacy Shutters" +/area/awaymission/undergroundoutpost45/crew_quarters) +"Iw" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/radio/off, +/obj/item/screwdriver{ + pixel_y = 10 }, -/obj/machinery/door/window/southleft{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Engineering Reception"; - req_access_txt = "201" +/obj/structure/sign/poster/official/safety_report{ + pixel_y = -32 }, -/obj/item/folder/red, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"sR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"sT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "UO45_Engineering"; - name = "engineering Security Door" +/area/awaymission/undergroundoutpost45/central) +"Iz" = ( +/obj/machinery/computer/atmos_control/tank{ + dir = 8; + input_tag = "UO45_mix_in"; + name = "Gas Mix Tank Control"; + output_tag = "UO45_mix_in"; + sensors = list("UO45_mix_sensor" = "Tank") }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/engineering) -"sU" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Waste In" +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 6 }, /obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/green/anticorner/contrasted, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"sV" = ( -/obj/structure/cable{ - icon_state = "1-2" +"IA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = -32 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"IB" = ( +/obj/machinery/airalarm/all_access{ + pixel_y = 23; dir = 1 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"sW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"sX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 10 +/obj/effect/turf_decal/tile/purple{ + dir = 4 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"sY" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Mix to Filter" +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"ID" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"sZ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 6 +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"IE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 5 }, +/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"ta" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 +/area/awaymission/undergroundoutpost45/crew_quarters) +"IH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/mining/glass{ + name = "Mining Foyer"; + req_access_txt = "201" }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"tb" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"td" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 +/area/awaymission/undergroundoutpost45/mining) +"II" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/engineering) -"te" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos{ - dir = 8; - id = "UO45_mix_in" +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/crew_quarters) +"IJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/turf/open/floor/engine/vacuum, -/area/awaymission/undergroundoutpost45/engineering) -"tf" = ( -/obj/machinery/air_sensor{ - id_tag = "UO45_mix_sensor" +/obj/machinery/door/airlock{ + id_tag = "awaydorm8"; + name = "Mining Dorm 1" }, -/turf/open/floor/engine/vacuum, -/area/awaymission/undergroundoutpost45/engineering) -"tg" = ( -/obj/structure/cable{ - icon_state = "1-4" +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"IK" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/cafeteria{ dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/research) -"th" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ +/area/awaymission/undergroundoutpost45/crew_quarters) +"IL" = ( +/obj/machinery/light/small{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/dropper, +/turf/open/floor/iron/white/side{ dir = 8 }, -/turf/open/floor/plating, /area/awaymission/undergroundoutpost45/research) -"tj" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, +"IM" = ( +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/gateway) +"IN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/central) +"IP" = ( /obj/structure/disposalpipe/segment{ - dir = 10 + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron/white, /area/awaymission/undergroundoutpost45/research) -"tk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +"IR" = ( +/obj/structure/table, +/obj/machinery/computer/security/telescreen{ + desc = "Used for monitoring the research division and the labs within."; + dir = 8; + name = "research monitor"; + network = list("uo45r") }, -/turf/open/floor/plating, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/research) -"tm" = ( -/obj/structure/disposalpipe/segment, +"IS" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/research) -"tn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"IT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/turf/closed/wall/r_wall, -/area/awaymission/undergroundoutpost45/research) -"to" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"IU" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/breath, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/gateway) +"IV" = ( +/obj/structure/alien/weeds, +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/effect/mob_spawn/human, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" + }, +/area/awaymission/undergroundoutpost45/caves) +"IW" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/awaymission/undergroundoutpost45/research) -"tp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/closed/wall/r_wall/rust, -/area/awaymission/undergroundoutpost45/research) -"tq" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 +/obj/machinery/door/airlock/maintenance{ + name = "Research Maintenance"; + req_access_txt = "201" }, -/turf/closed/wall/r_wall/rust, +/turf/open/floor/plating, /area/awaymission/undergroundoutpost45/research) -"tr" = ( +"IX" = ( /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/awaymission/undergroundoutpost45/research) -"ts" = ( -/obj/machinery/shower{ - dir = 4 +"IY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 }, -/turf/open/floor/iron/freezer, -/area/awaymission/undergroundoutpost45/crew_quarters) -"tt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"IZ" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/structure/sign/warning/deathsposal{ + desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'"; + name = "\improper DISPOSAL: LEADS TO EXTERIOR"; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/central) +"Ja" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/iron, +/turf/open/floor/carpet, /area/awaymission/undergroundoutpost45/crew_quarters) -"tu" = ( +"Jb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"Jd" = ( /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/machinery/light/small{ - dir = 4 +/obj/structure/cable{ + icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ +/obj/machinery/airalarm/all_access{ + pixel_y = 23; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/machinery/camera/directional/north{ + c_tag = "Gateway Ready Room"; + network = list("uo45","uo45r") + }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"tv" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/tile/blue{ +/area/awaymission/undergroundoutpost45/gateway) +"Je" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/iron/white/corner{ +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, -/area/awaymission/undergroundoutpost45/engineering) -"tw" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/structure/window/reinforced{ - dir = 4 +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/tile/red{ +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Jf" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron/white/corner{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/area/awaymission/undergroundoutpost45/engineering) -"tx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - burnt = 1 +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 }, -/area/awaymission/undergroundoutpost45/central) -"tA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"tC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 +/area/awaymission/undergroundoutpost45/crew_quarters) +"Jg" = ( +/obj/item/food/meat/slab/monkey, +/obj/item/food/meat/slab/monkey, +/obj/item/food/meat/slab/monkey, +/obj/item/food/meat/slab/monkey, +/obj/structure/closet/secure_closet/freezer{ + locked = 0; + name = "meat fridge"; + req_access_txt = "201" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 6 +/turf/open/floor/iron/showroomfloor, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Jh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"tD" = ( +/area/awaymission/undergroundoutpost45/mining) +"Jk" = ( /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"tE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/brown/anticorner/contrasted, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"tF" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 8 - }, -/obj/machinery/meter/atmos{ - id_tag = "UO45_waste_meter"; - name = "Waste Loop" +/area/awaymission/undergroundoutpost45/crew_quarters) +"Jl" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 }, +/obj/effect/turf_decal/tile/yellow/half/contrasted, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"tG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 +"Jn" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"tH" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "N2 Outlet Pump" +"Jo" = ( +/obj/structure/cable{ + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"tI" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "O2 Outlet Pump" - }, +"Jp" = ( +/obj/structure/window/reinforced, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"tJ" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Unfiltered to Mix" +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"Jq" = ( +/obj/machinery/gateway{ + dir = 4 }, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 32 +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"Jx" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"tK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 +/turf/open/floor/iron/freezer, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Jy" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/closed/wall/rust, -/area/awaymission/undergroundoutpost45/research) -"tL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Maintenance"; - req_access_txt = "201" +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/maintenance, /turf/open/floor/plating, /area/awaymission/undergroundoutpost45/research) -"tM" = ( +"Jz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/turf/closed/wall, -/area/awaymission/undergroundoutpost45/research) -"tN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"JB" = ( +/obj/machinery/light/small/broken{ + dir = 8 }, -/turf/closed/wall/rust, -/area/awaymission/undergroundoutpost45/research) -"tO" = ( -/obj/structure/cable{ - icon_state = "1-4" +/turf/open/floor/plating{ + broken = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 5 +/area/awaymission/undergroundoutpost45/central) +"JC" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/breath, +/obj/structure/sign/poster/official/safety_internals{ + pixel_x = -32 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/central) +"JE" = ( +/obj/structure/closet/secure_closet{ + icon_state = "hydro"; + locked = 0; + name = "botanist's locker"; + req_access_txt = "201" + }, +/obj/item/clothing/suit/apron, +/obj/item/storage/bag/plants/portaseeder, +/obj/item/clothing/mask/bandana, +/obj/item/cultivator, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/central) +"JF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "UO45_rdprivacy"; + name = "Privacy Shutters" }, -/obj/machinery/portable_atmospherics/scrubber, /turf/open/floor/plating, /area/awaymission/undergroundoutpost45/research) -"tP" = ( +"JG" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/awaymission/undergroundoutpost45/engineering) +"JJ" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"JK" = ( /obj/structure/cable{ icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"JL" = ( +/obj/machinery/light/small{ dir = 4 }, -/turf/open/floor/plating, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white/side{ + dir = 8 + }, /area/awaymission/undergroundoutpost45/research) -"tR" = ( +"JM" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating{ + broken = 1 + }, +/area/awaymission/undergroundoutpost45/crew_quarters) +"JN" = ( /obj/structure/cable{ - icon_state = "4-8" + icon_state = "0-4" }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/computer/monitor/secret{ + name = "primary power monitoring console" + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/research) -"tU" = ( +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"JP" = ( /obj/structure/cable{ icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/research) -"tV" = ( -/obj/structure/cable{ - icon_state = "1-8" +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 9 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"JQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ +/turf/open/floor/plating{ + broken = 1 + }, +/area/awaymission/undergroundoutpost45/central) +"JS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, -/obj/item/stack/rods, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/research) -"tW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 + dir = 4 }, -/turf/closed/wall/r_wall, -/area/awaymission/undergroundoutpost45/research) -"tX" = ( -/obj/machinery/shower{ - dir = 1 +/obj/effect/turf_decal/tile/yellow{ + dir = 8 }, -/turf/open/floor/iron/freezer, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"tY" = ( -/obj/machinery/shower{ +"JT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"JU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/item/bikehorn/rubberducky, -/turf/open/floor/iron/freezer, -/area/awaymission/undergroundoutpost45/crew_quarters) -"tZ" = ( +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"JV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 1 +/obj/machinery/door/airlock{ + id_tag = "awaydorm4"; + name = "Dorm 4" }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"ua" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 4 +"JZ" = ( +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"Kb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"ub" = ( -/obj/machinery/light/small{ +"Kc" = ( +/obj/machinery/computer/mech_bay_power_console{ dir = 1 }, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" +/obj/structure/cable{ + icon_state = "0-4" }, -/area/awaymission/undergroundoutpost45/crew_quarters) -"uc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/awaymission/undergroundoutpost45/engineering) -"ud" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/awaymission/undergroundoutpost45/engineering) -"ue" = ( +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"Kg" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light/small, +/obj/structure/sign/warning/securearea{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"Ki" = ( /obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Foyer"; +/obj/machinery/door/airlock/public/glass{ + name = "Hydroponics"; req_access_txt = "201" }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"uh" = ( +/area/awaymission/undergroundoutpost45/central) +"Kj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - broken = 1 - }, +/turf/open/floor/plating, /area/awaymission/undergroundoutpost45/central) -"ui" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 +"Kk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 }, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"uj" = ( +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"Kl" = ( +/obj/machinery/door/firedoor, /obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "External to Filter" - }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"uk" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Air to External" - }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"ul" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 5 - }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -23 + icon_state = "4-8" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"uo" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 +/obj/machinery/door/airlock/command{ + name = "Gateway EVA"; + req_access_txt = "201" }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"ur" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 9 +/area/awaymission/undergroundoutpost45/gateway) +"Kn" = ( +/obj/structure/table, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 13; + pixel_y = 5 }, -/turf/open/floor/iron{ - dir = 8; - icon_state = "floorscorched2" +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 8; + pixel_y = 8 }, -/area/awaymission/undergroundoutpost45/engineering) -"us" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/stripes/line{ - dir = 9 +/obj/item/reagent_containers/spray/plantbgone{ + pixel_y = 3 }, +/obj/item/watertank, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/central) +"Ko" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/research) -"ut" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ +/area/awaymission/undergroundoutpost45/central) +"Ks" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ dir = 8 }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/obj/machinery/button/door{ + desc = "A remote control-switch which locks the research division down in the event of a biohazard leak or contamination."; + id = "UO45_biohazard"; + name = "Biohazard Door Control"; + pixel_y = 8; + req_access_txt = "201" }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/research) -"uu" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 +/obj/machinery/button/door{ + desc = "A remote control-switch that controls the Privacy Shutters."; + id = "UO45_rdprivacy"; + name = "Privacy Shutter Control"; + pixel_y = -2; + req_access_txt = "201" }, -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/effect/turf_decal/stripes/line{ +/turf/open/floor/iron/cafeteria{ dir = 5 }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/research) -"uv" = ( -/turf/closed/mineral/random/labormineral, /area/awaymission/undergroundoutpost45/research) -"uw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/external, +"Kt" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, /turf/open/floor/plating, /area/awaymission/undergroundoutpost45/research) -"ux" = ( +"Kv" = ( +/obj/machinery/hydroponics/constructable, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/central) +"Kx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/awaymission/undergroundoutpost45/research) -"uz" = ( -/obj/machinery/door/airlock/maintenance, +/obj/structure/grille, /turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/crew_quarters) -"uB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"uC" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 +/area/awaymission/undergroundoutpost45/central) +"Ky" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"uD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -27 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"uE" = ( -/turf/closed/wall, -/area/awaymission/undergroundoutpost45/engineering) -"uF" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Security Office"; - req_access_txt = "201" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"uG" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/door/airlock/engineering{ - name = "Engineering"; - req_access_txt = "201" - }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"uH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/turf/closed/wall/r_wall, -/area/awaymission/undergroundoutpost45/engineering) -"uI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 1 +"Kz" = ( +/obj/structure/alien/resin/membrane, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/engineering) -"uJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/engineering) -"uK" = ( +/area/awaymission/undergroundoutpost45/caves) +"KB" = ( /obj/machinery/light/small{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/research) -"uL" = ( -/obj/machinery/atmospherics/components/binary/valve, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/research) -"uM" = ( -/obj/machinery/atmospherics/components/binary/valve, -/obj/effect/turf_decal/stripes/line{ +/obj/structure/dresser, +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/crew_quarters) +"KC" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 4 }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/research) -"uP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/research) -"uR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/crew_quarters) -"uT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"uU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/computer/atmos_control{ - dir = 4; - name = "Distribution and Waste Monitor"; - sensors = list("UO45_air_sensor" = "Mixed Air Supply Tank", "UO45_distro_meter" = "Distribution Loop", "UO45_waste_meter" = "Waste Loop") - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/awaymission/undergroundoutpost45/engineering) -"uV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/chair/office{ - dir = 8 +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 4 }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"uW" = ( +"KD" = ( /obj/structure/cable{ - icon_state = "1-2" + icon_state = "1-8" }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/structure/disposalpipe/segment{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"uX" = ( -/obj/machinery/light{ - dir = 1 +/turf/open/floor/plating{ + broken = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/area/awaymission/undergroundoutpost45/research) +"KE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - pixel_y = 23; - dir = 1 +/turf/open/floor/circuit/telecomms/server, +/area/awaymission/undergroundoutpost45/research) +"KF" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/command{ + name = "Research Director's Office"; + req_access_txt = "201" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"uZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/turf/closed/wall, -/area/awaymission/undergroundoutpost45/engineering) -"va" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "UO45_Engineering"; - name = "engineering Security Door" +/area/awaymission/undergroundoutpost45/research) +"KG" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, -/obj/effect/turf_decal/delivery, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"vb" = ( -/obj/machinery/door/firedoor, +/area/awaymission/undergroundoutpost45/crew_quarters) +"KH" = ( /obj/structure/cable{ - icon_state = "1-2" + icon_state = "0-4" }, -/obj/machinery/door/poddoor/preopen{ - id = "UO45_Engineering"; - name = "engineering Security Door" +/obj/machinery/power/apc/highcap/fifteen_k{ + dir = 8; + name = "UO45 Engineering APC"; + pixel_x = -25; + req_access_txt = "201"; + start_charge = 100 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 }, -/obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"vc" = ( +"KK" = ( /obj/machinery/door/firedoor, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/door/poddoor/preopen{ - id = "UO45_Engineering"; - name = "engineering Security Door" +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Foyer"; + req_access_txt = "201" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"vd" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos{ - dir = 1; - id = "UO45_n2_in" - }, -/turf/open/floor/engine/n2, -/area/awaymission/undergroundoutpost45/engineering) -"ve" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos{ - dir = 1; - id_tag = "UO45_n2_out"; - name = "nitrogen out" +"KM" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/beer, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"KN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 }, -/turf/open/floor/engine/n2, +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"vf" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos{ - dir = 1; - id = "UO45_o2_in" +"KP" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 }, -/turf/open/floor/engine/o2, -/area/awaymission/undergroundoutpost45/engineering) -"vg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos{ - dir = 1; - id_tag = "UO45_o2_out"; - name = "oxygen out" +/turf/open/floor/iron/showroomfloor, +/area/awaymission/undergroundoutpost45/crew_quarters) +"KR" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/engine/o2, -/area/awaymission/undergroundoutpost45/engineering) -"vh" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/stripes/line{ - dir = 10 +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/research) -"vi" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/research) -"vj" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"KS" = ( +/obj/machinery/light/small{ dir = 1 }, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/research) -"vk" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/research) -"vl" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, /turf/open/floor/plating/asteroid{ initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; initial_temperature = 363.9; name = "Cave Floor" }, -/area/awaymission/undergroundoutpost45/caves) -"vm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/awaymission/undergroundoutpost45/mining) +"KT" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/plating, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"vn" = ( -/obj/structure/disposalpipe/segment{ +"KU" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/mining) +"KV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/item/stack/rods, -/turf/open/floor/plating, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"KW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"KY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"vp" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 +"KZ" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3 }, -/turf/open/floor/plating, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"vq" = ( +"Lb" = ( /obj/structure/cable{ icon_state = "1-2" }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/gateway) +"Lc" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - broken = 1 +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 }, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) -"vs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/computer/atmos_alert{ - dir = 4 +"Ld" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/turf_decal/tile/yellow{ +/obj/machinery/light, +/obj/structure/disposalpipe/junction{ dir = 8 }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/awaymission/undergroundoutpost45/engineering) -"vt" = ( -/obj/structure/cable{ - icon_state = "1-4" +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, -/obj/structure/disposalpipe/segment{ - dir = 5 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"Le" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "UO45_mining"; + name = "mining conveyor" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"vu" = ( +/area/awaymission/undergroundoutpost45/mining) +"Lf" = ( /obj/structure/cable{ icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Lh" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"vv" = ( +/area/awaymission/undergroundoutpost45/gateway) +"Lj" = ( /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-8" }, -/obj/structure/cable{ - icon_state = "2-4" +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"Ll" = ( +/obj/machinery/airalarm/all_access{ + dir = 4; + pixel_x = 23 }, -/obj/structure/disposalpipe/segment{ - dir = 10 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Lm" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/plasma{ + amount = 26 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 }, -/turf/open/floor/iron, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, /area/awaymission/undergroundoutpost45/engineering) -"vw" = ( +"Lo" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"Lp" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"Lq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"vx" = ( -/obj/structure/cable{ - icon_state = "4-8" +/area/awaymission/undergroundoutpost45/crew_quarters) +"Lr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"vz" = ( +/area/awaymission/undergroundoutpost45/crew_quarters) +"Lt" = ( /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/door/airlock/engineering{ - name = "Engineering"; - req_access_txt = "201" +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"vA" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, +"Lu" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"vB" = ( -/obj/structure/cable{ - icon_state = "1-8" +/area/awaymission/undergroundoutpost45/crew_quarters) +"Lv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + broken = 1 }, +/area/awaymission/undergroundoutpost45/central) +"Lw" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"vC" = ( -/obj/machinery/light/small{ +"Lx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"LC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"vD" = ( -/obj/machinery/air_sensor{ - id_tag = "UO45_n2_sensor" +/area/awaymission/undergroundoutpost45/crew_quarters) +"LD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/obj/machinery/light/small, -/turf/open/floor/engine/n2, -/area/awaymission/undergroundoutpost45/engineering) -"vE" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/engine/n2, +/obj/machinery/door/airlock/research{ + name = "Gateway Observation"; + req_access_txt = "201" + }, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"LG" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Mix to Exterior" + }, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"vF" = ( -/obj/machinery/air_sensor{ - id_tag = "UO45_o2_sensor" +"LK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"LM" = ( +/obj/structure/cable, +/obj/machinery/power/apc/highcap/fifteen_k{ + locked = 0; + name = "UO45 Gateway APC"; + pixel_y = -23; + start_charge = 100 }, /obj/machinery/light/small, -/turf/open/floor/engine/o2, -/area/awaymission/undergroundoutpost45/engineering) -"vG" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/engine/o2, -/area/awaymission/undergroundoutpost45/engineering) -"vH" = ( -/obj/machinery/light/small{ +/obj/structure/rack, +/obj/item/clothing/shoes/magboots, +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"LN" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/area/awaymission/undergroundoutpost45/research) -"vI" = ( -/turf/closed/wall/r_wall/rust, -/area/awaymission/undergroundoutpost45/mining) -"vJ" = ( -/turf/closed/wall/r_wall, -/area/awaymission/undergroundoutpost45/mining) -"vK" = ( -/turf/closed/wall, -/area/awaymission/undergroundoutpost45/mining) -"vL" = ( -/turf/closed/wall/rust, -/area/awaymission/undergroundoutpost45/mining) -"vM" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mining Maintenance"; +/obj/machinery/door/airlock/engineering{ + name = "Engineering"; req_access_txt = "201" }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/mining) -"vN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Foyer"; +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"LO" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/awaymission/undergroundoutpost45/crew_quarters) +"LP" = ( +/obj/item/clothing/under/suit/navy, +/obj/structure/closet/secure_closet/personal/cabinet{ + locked = 0; req_access_txt = "201" }, +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/crew_quarters) +"LR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair, +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/awaymission/undergroundoutpost45/research) +"LU" = ( +/obj/machinery/vending/cola, +/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"vO" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" +/area/awaymission/undergroundoutpost45/crew_quarters) +"Mc" = ( +/turf/open/floor/iron{ + dir = 8; + icon_state = "damaged3" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Foyer"; - req_access_txt = "201" +/area/awaymission/undergroundoutpost45/central) +"Md" = ( +/obj/structure/chair{ + dir = 4 }, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Me" = ( /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/mining) -"vP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 +"Mg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 }, -/obj/machinery/computer/station_alert{ +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"Mh" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 +/obj/machinery/door/poddoor/shutters/preopen{ + id = "UO45_EngineeringOffice"; + name = "Privacy Shutters" }, -/turf/open/floor/iron/checker, +/obj/machinery/door/window/southleft{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Engineering Reception"; + req_access_txt = "201" + }, +/obj/item/folder/red, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"vQ" = ( +"Mj" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -27 +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "201" + }, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/gateway) +"Mk" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Kitchen Maintenance"; + req_access_txt = "201" }, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Mm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"vR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_y = -32 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"Mo" = ( +/obj/structure/closet/crate, +/obj/item/storage/box/lights/mixed, +/obj/item/poster/random_contraband, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + burnt = 1 + }, +/area/awaymission/undergroundoutpost45/research) +"Mp" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"vS" = ( +"Mq" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/engineering) +"Mr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 + dir = 5 + }, +/obj/structure/closet, +/obj/item/poster/random_contraband, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"Ms" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"vT" = ( -/obj/structure/cable{ - icon_state = "1-2" +/area/awaymission/undergroundoutpost45/central) +"Mt" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/engineering) +"Mu" = ( /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"Mv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 + dir = 10 }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"vU" = ( +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/gateway) +"My" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + burnt = 1 + }, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Mz" = ( +/obj/machinery/door/airlock/command{ + name = "Server Room"; + req_access_txt = "201" + }, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/research) +"MA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -7105,7 +6646,7 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"vV" = ( +"MD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -7118,842 +6659,763 @@ icon_state = "floorscorched2" }, /area/awaymission/undergroundoutpost45/engineering) -"vX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +"MG" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/closed/wall, -/area/awaymission/undergroundoutpost45/engineering) -"vY" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/breath, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/obj/structure/disposalpipe/segment{ + dir = 9 }, -/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"vZ" = ( -/obj/structure/closet/firecloset, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +"MH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"MK" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/gateway) +"MN" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/machinery/door/window/southleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Security Checkpoint"; + req_access_txt = "201" }, -/obj/effect/turf_decal/bot, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"wa" = ( -/obj/structure/closet/firecloset, +/area/awaymission/undergroundoutpost45/central) +"MO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 + dir = 4 + }, +/obj/machinery/door/airlock{ + id_tag = "awaydorm9"; + name = "Mining Dorm 2" }, -/obj/effect/turf_decal/bot, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"wb" = ( -/obj/structure/table/wood, -/turf/open/floor/carpet, /area/awaymission/undergroundoutpost45/mining) -"wc" = ( +"MP" = ( +/obj/machinery/door/airlock/security{ + name = "Security Checkpoint"; + req_access_txt = "201" + }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"MR" = ( /obj/machinery/light/small{ dir = 1 }, +/obj/machinery/airalarm/all_access{ + pixel_y = 23; + dir = 1 + }, /obj/structure/chair/wood/normal{ dir = 8 }, /turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/mining) -"wd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/mining) -"we" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/area/awaymission/undergroundoutpost45/crew_quarters) +"MV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/portable_atmospherics/scrubber, +/obj/structure/window{ dir = 4 }, -/turf/closed/wall, -/area/awaymission/undergroundoutpost45/mining) -"wf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/research) +"MW" = ( +/obj/structure/table, +/obj/item/storage/firstaid/toxin{ + pixel_x = 2; + pixel_y = 6 }, -/turf/open/floor/iron{ - dir = 8; - icon_state = "floorscorched1" +/obj/item/storage/firstaid/toxin{ + pixel_x = -2; + pixel_y = 4 }, -/area/awaymission/undergroundoutpost45/mining) -"wg" = ( -/obj/machinery/light/small{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white/side{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/area/awaymission/undergroundoutpost45/research) +"MX" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/item/kirbyplants, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"wh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"wi" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, +/area/awaymission/undergroundoutpost45/central) +"MY" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"wj" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" - }, -/area/awaymission/undergroundoutpost45/mining) -"wk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "0-4" +/area/awaymission/undergroundoutpost45/central) +"MZ" = ( +/obj/machinery/light/small, +/obj/machinery/computer/atmos_alert{ + dir = 1 }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/engineering) -"wl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" +/obj/machinery/button/door{ + desc = "A remote control-switch for the engineering security doors."; + id = "UO45_Engineering"; + name = "Engineering Lockdown"; + pixel_x = -6; + pixel_y = -24; + req_access_txt = "201" }, -/obj/structure/cable{ - icon_state = "0-8" +/obj/machinery/button/door{ + desc = "A remote control-switch for secure storage."; + id = "UO45_Secure Storage"; + name = "Engineering Secure Storage"; + pixel_x = 6; + pixel_y = -24; + req_access_txt = "201" }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/engineering) -"wn" = ( -/turf/closed/wall/rust, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"wp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/mining) -"wq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "awaydorm8"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_y = -25; - specialfunctions = 4 +"Na" = ( +/turf/open/floor/plating{ + broken = 1 }, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/mining) -"wr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/area/awaymission/undergroundoutpost45/central) +"Nb" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/obj/machinery/door/airlock{ - id_tag = "awaydorm8"; - name = "Mining Dorm 1" +/obj/structure/sign/warning/deathsposal{ + desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'"; + name = "\improper DISPOSAL: LEADS TO EXTERIOR"; + pixel_y = -32 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"ws" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/turf/open/floor/iron/white/corner{ dir = 4 }, +/area/awaymission/undergroundoutpost45/research) +"Ne" = ( +/obj/item/storage/belt/security, +/obj/item/assembly/flash/handheld, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"wt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/obj/structure/closet/secure_closet{ + icon_state = "sec"; + name = "security officer's locker"; + req_access_txt = "201" }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"wu" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"wv" = ( +/area/awaymission/undergroundoutpost45/central) +"Ng" = ( /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"ww" = ( -/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/mining) -"wB" = ( -/obj/structure/toilet{ - pixel_y = 8 +/area/awaymission/undergroundoutpost45/central) +"Nh" = ( +/obj/structure/cable{ + icon_state = "2-4" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/freezer, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, /area/awaymission/undergroundoutpost45/engineering) -"wC" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 +"Ni" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"wD" = ( -/obj/structure/cable{ - icon_state = "2-4" +/area/awaymission/undergroundoutpost45/crew_quarters) +"Nl" = ( +/obj/structure/chair{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"wE" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Nm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"wF" = ( -/obj/structure/cable{ - icon_state = "1-8" +/area/awaymission/undergroundoutpost45/crew_quarters) +"Nn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - icon_state = "1-2" + icon_state = "2-8" }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/mining) -"wK" = ( -/obj/machinery/door/airlock{ - name = "Private Restroom" - }, -/turf/open/floor/iron/freezer, -/area/awaymission/undergroundoutpost45/engineering) -"wL" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/light/small, -/obj/structure/mirror{ - pixel_x = 28 +"No" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/turf/open/floor/iron/freezer, -/area/awaymission/undergroundoutpost45/engineering) -"wM" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/mining) -"wN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/tile/purple{ dir = 4 }, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/gateway) +"Np" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, /obj/machinery/button/door{ - id = "awaydorm9"; + id = "awaydorm6"; name = "Door Bolt Control"; normaldoorcontrol = 1; - pixel_y = 25; + pixel_x = 25; specialfunctions = 4 }, /turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/mining) -"wO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock{ - id_tag = "awaydorm9"; - name = "Mining Dorm 2" +/area/awaymission/undergroundoutpost45/crew_quarters) +"Nq" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/research) +"Nr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"wP" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/central) +"Ns" = ( /obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 + icon_state = "4-8" }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"wQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"wU" = ( -/obj/structure/chair/fancy/comfy{ - dir = 1 - }, -/turf/open/floor/carpet/grimy, -/area/awaymission/undergroundoutpost45/central) -"wV" = ( -/obj/machinery/light/small, -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/carpet, -/area/awaymission/undergroundoutpost45/mining) -"wX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 + icon_state = "2-4" }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 +/obj/structure/disposalpipe/segment{ + dir = 10 }, -/obj/structure/closet/secure_closet/miner{ - req_access = null; - req_access_txt = "201" +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"xb" = ( +/area/awaymission/undergroundoutpost45/engineering) +"Nu" = ( /obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - burnt = 1 + icon_state = "0-4" }, -/area/awaymission/undergroundoutpost45/research) -"xg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/mining{ - name = "Processing Area"; - req_access_txt = "201" +/obj/machinery/power/apc/highcap/fifteen_k{ + dir = 1; + locked = 0; + name = "UO45 Bar APC"; + pixel_y = 23; + start_charge = 100 }, +/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"xh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/mining{ - name = "Processing Area"; - req_access_txt = "201" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-2" +/area/awaymission/undergroundoutpost45/crew_quarters) +"Nv" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"xl" = ( -/obj/machinery/conveyor{ - id = "UO45_mining" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/mining) -"xm" = ( -/obj/machinery/mineral/unloading_machine{ +/area/awaymission/undergroundoutpost45/central) +"Nw" = ( +/obj/machinery/firealarm{ dir = 1; - icon_state = "unloader-corner"; - input_dir = 4; - output_dir = 8 + pixel_y = -24 }, +/obj/structure/rack, +/obj/item/clothing/shoes/magboots, /obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/mining) -"xn" = ( -/obj/effect/turf_decal/loading_area{ - dir = 8 + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"Nx" = ( +/obj/machinery/light{ + dir = 4 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"xo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"xp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/airalarm/all_access{ dir = 4; pixel_x = 23 }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/green/half/contrasted, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"xq" = ( -/obj/machinery/conveyor{ - id = "UO45_mining" +/area/awaymission/undergroundoutpost45/central) +"NB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -32 +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"NC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 }, -/obj/effect/turf_decal/stripes/line{ +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 4 }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/mining) -"xr" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/mining) -"xs" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "UO45_mining"; - name = "mining conveyor" - }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"xt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" +/area/awaymission/undergroundoutpost45/central) +"ND" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"xu" = ( -/obj/machinery/suit_storage_unit/mining, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"xv" = ( -/obj/structure/table, -/obj/item/pickaxe, -/obj/item/radio/off, +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "201" + }, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/gateway) +"NE" = ( +/obj/structure/tank_dispenser/oxygen, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"xw" = ( -/obj/machinery/mineral/processing_unit{ +/obj/effect/turf_decal/stripes/line{ dir = 1 }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/gateway) +"NF" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, /obj/effect/turf_decal/stripes/line{ - dir = 5 + dir = 4 }, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/engineering) +"NI" = ( +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/mining) -"xx" = ( -/obj/machinery/mineral/processing_unit_console{ - machinedir = 8 - }, -/turf/closed/wall/rust, -/area/awaymission/undergroundoutpost45/mining) -"xy" = ( +/area/awaymission/undergroundoutpost45/gateway) +"NK" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 + dir = 1 }, -/obj/machinery/light{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/gateway) +"NL" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 }, -/obj/machinery/camera/directional/west{ - c_tag = "Mining"; - network = list("uo45") +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/awaymission/undergroundoutpost45/crew_quarters) +"NN" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"xz" = ( +/area/awaymission/undergroundoutpost45/central) +"NO" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 + dir = 1 }, +/obj/item/stack/rods, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"NP" = ( /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"xA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/door/airlock/engineering/glass{ + name = "SMES Room"; + req_access_txt = "201" + }, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/engineering) +"NR" = ( /obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/gateway) +"NS" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, +/obj/machinery/portable_atmospherics/scrubber, /turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/mining) -"xB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ +/area/awaymission/undergroundoutpost45/research) +"NU" = ( +/obj/structure/chair{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"xC" = ( -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"xD" = ( -/obj/machinery/light/small{ +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"NV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/turf/open/floor/iron{ - dir = 8; - icon_state = "floorscorched2" - }, -/area/awaymission/undergroundoutpost45/mining) -"xE" = ( -/obj/machinery/conveyor{ - id = "UO45_mining" - }, -/obj/machinery/light/small{ +/obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/effect/turf_decal/stripes/line{ +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"NW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/mining) -"xF" = ( -/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"xG" = ( +/area/awaymission/undergroundoutpost45/engineering) +"NX" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"xH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/area/awaymission/undergroundoutpost45/crew_quarters) +"NZ" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-4" +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"xI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/area/awaymission/undergroundoutpost45/crew_quarters) +"Oa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/computer/atmos_control{ + dir = 4; + name = "Distribution and Waste Monitor"; + sensors = list("UO45_air_sensor" = "Mixed Air Supply Tank", "UO45_distro_meter" = "Distribution Loop", "UO45_waste_meter" = "Waste Loop") }, -/obj/machinery/door/airlock/mining/glass{ - name = "Mining EVA"; - req_access_txt = "201" +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 }, +/area/awaymission/undergroundoutpost45/engineering) +"Ob" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Oc" = ( /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"xJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"xK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 }, -/obj/structure/cable{ - icon_state = "2-8" +/obj/effect/turf_decal/tile/yellow{ + dir = 1 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"xL" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"xM" = ( -/obj/machinery/mineral/stacking_unit_console{ - machinedir = 2 +/area/awaymission/undergroundoutpost45/crew_quarters) +"Od" = ( +/obj/machinery/gateway{ + dir = 6 }, -/turf/closed/wall, -/area/awaymission/undergroundoutpost45/mining) -"xN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"Oe" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 5 + }, +/obj/machinery/airalarm/all_access{ + dir = 1; + pixel_y = -23 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"xP" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ +/area/awaymission/undergroundoutpost45/engineering) +"Of" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/structure/closet/crate, -/obj/item/stack/sheet/iron{ - amount = 26 +/obj/structure/table, +/obj/item/book/manual/chef_recipes, +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/obj/item/stack/sheet/glass{ - amount = 19 +/area/awaymission/undergroundoutpost45/crew_quarters) +"Oh" = ( +/obj/machinery/vending/cola, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/central) +"Oj" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"xQ" = ( -/obj/machinery/computer/mech_bay_power_console{ +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/awaymission/undergroundoutpost45/research) +"Ol" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, -/obj/structure/cable{ - icon_state = "0-4" +/obj/machinery/button/door{ + id = "awaydorm4"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_x = -25; + specialfunctions = 4 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"xR" = ( +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Om" = ( +/obj/structure/table, +/obj/item/folder/white, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"Oo" = ( /obj/structure/cable{ icon_state = "1-4" }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/mech_bay_recharge_floor, -/area/awaymission/undergroundoutpost45/mining) -"xS" = ( -/obj/machinery/mech_bay_recharge_port{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/mining) -"xT" = ( -/obj/machinery/mineral/stacking_machine{ - dir = 1; - input_dir = 8; - output_dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ +/obj/structure/disposalpipe/segment{ dir = 5 }, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/mining) -"xU" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 +/turf/open/floor/plating{ + broken = 1 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"xV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"xW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/area/awaymission/undergroundoutpost45/central) +"Oq" = ( /obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 + pixel_y = 24 }, -/obj/structure/closet/crate, -/obj/item/stack/sheet/mineral/plasma{ - amount = 6 +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"Or" = ( +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"Os" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/iron{ - dir = 8; - icon_state = "floorscorched1" +/obj/machinery/light/small, +/obj/structure/mirror{ + pixel_x = 28 }, -/area/awaymission/undergroundoutpost45/mining) -"xX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/external{ - name = "Mining External Airlock"; - req_access_txt = "201" +/turf/open/floor/iron/freezer, +/area/awaymission/undergroundoutpost45/engineering) +"Ot" = ( +/obj/structure/chair{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"xY" = ( -/obj/effect/spawner/structure/window/reinforced, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Ow" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/awaymission/undergroundoutpost45/mining) -"xZ" = ( +/turf/open/floor/plating{ + broken = 1 + }, +/area/awaymission/undergroundoutpost45/central) +"Oz" = ( /obj/machinery/airalarm/all_access{ dir = 4; pixel_x = -23 }, -/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/filingcabinet, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"ya" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"yb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 +/area/awaymission/undergroundoutpost45/central) +"OA" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/iron{ - dir = 8; - icon_state = "floorscorched1" +/obj/structure/disposalpipe/junction/yjunction{ + dir = 2 }, -/area/awaymission/undergroundoutpost45/mining) -"yc" = ( -/obj/structure/ore_box, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"yd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"ye" = ( -/obj/machinery/light/small{ +/area/awaymission/undergroundoutpost45/crew_quarters) +"OB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 +/turf/open/floor/plating{ + broken = 1 + }, +/area/awaymission/undergroundoutpost45/research) +"OF" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 5 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"yf" = ( -/obj/machinery/door/airlock/external{ - name = "Mining External Airlock"; - req_access_txt = "201" +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/obj/effect/turf_decal/sand, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"yg" = ( -/obj/machinery/light/small{ - dir = 1 +/area/awaymission/undergroundoutpost45/crew_quarters) +"OG" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 }, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 }, -/area/awaymission/undergroundoutpost45/mining) -"yh" = ( -/obj/structure/ore_box, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"OH" = ( +/obj/structure/cable{ + icon_state = "2-8" }, -/area/awaymission/undergroundoutpost45/caves) -"yi" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" +/obj/structure/disposalpipe/segment{ + dir = 10 }, -/area/awaymission/undergroundoutpost45/caves) -"yj" = ( -/obj/structure/alien/weeds, -/obj/structure/bed/nest, -/obj/effect/mob_spawn/human, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 4 }, -/area/awaymission/undergroundoutpost45/caves) -"yk" = ( -/obj/structure/alien/weeds, -/obj/structure/bed/nest, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"OJ" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/area/awaymission/undergroundoutpost45/caves) -"yl" = ( -/obj/structure/alien/weeds, -/obj/structure/glowshroom/single, -/obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/research) +"OK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"OL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 }, -/area/awaymission/undergroundoutpost45/caves) -"ym" = ( -/obj/structure/alien/weeds, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/area/awaymission/undergroundoutpost45/caves) -"yn" = ( -/obj/structure/alien/weeds, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/gateway) +"OM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/landmark/awaystart, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"ON" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/structure/sign/warning/biohazard{ + pixel_x = -32 }, -/area/awaymission/undergroundoutpost45/caves) -"yo" = ( -/obj/structure/alien/weeds, -/obj/structure/alien/resin/wall, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/gateway) +"OO" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/area/awaymission/undergroundoutpost45/caves) -"yp" = ( -/obj/structure/alien/weeds, -/obj/effect/mob_spawn/human, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" +/obj/structure/cable{ + icon_state = "2-4" }, -/area/awaymission/undergroundoutpost45/caves) -"yq" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 }, -/area/awaymission/undergroundoutpost45/caves) -"yr" = ( -/obj/effect/decal/cleanable/blood/gibs/up, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"OP" = ( +/obj/machinery/door/poddoor{ + id = "UO45_Secure Storage"; + name = "secure Storage" }, -/area/awaymission/undergroundoutpost45/caves) -"yt" = ( +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/engineering) +"OQ" = ( +/obj/structure/chair/fancy/comfy{ + dir = 1 + }, +/turf/open/floor/carpet/grimy, +/area/awaymission/undergroundoutpost45/central) +"OR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"OS" = ( /obj/structure/alien/weeds, /obj/structure/glowshroom/single, /turf/open/floor/plating/asteroid{ @@ -7962,839 +7424,1019 @@ name = "Cave Floor" }, /area/awaymission/undergroundoutpost45/caves) -"yu" = ( -/obj/structure/alien/resin/wall, -/obj/structure/alien/weeds, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" +"OT" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/area/awaymission/undergroundoutpost45/caves) -"yw" = ( -/obj/structure/alien/weeds, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 }, -/area/awaymission/undergroundoutpost45/caves) -"yz" = ( -/obj/structure/alien/resin/membrane, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"OU" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 }, -/area/awaymission/undergroundoutpost45/caves) -"yA" = ( -/obj/structure/alien/weeds, -/obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" +/obj/item/pen, +/obj/machinery/newscaster{ + pixel_x = -30 }, -/area/awaymission/undergroundoutpost45/caves) -"yB" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 }, -/area/awaymission/undergroundoutpost45/caves) -"yC" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/mob_spawn/human, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/research) +"OV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 }, -/area/awaymission/undergroundoutpost45/caves) -"yD" = ( -/obj/structure/alien/weeds, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/mob_spawn/human, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" +/obj/machinery/light{ + dir = 8 }, -/area/awaymission/undergroundoutpost45/caves) -"yG" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/breath, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 +/obj/machinery/camera/directional/west{ + c_tag = "Mining"; + network = list("uo45") }, -/turf/open/floor/plating{ - broken = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"OW" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/rods/fifty, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/engineering) +"OY" = ( +/turf/open/floor/iron/freezer, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Pa" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Waste In" }, -/area/awaymission/undergroundoutpost45/research) -"yH" = ( -/obj/structure/alien/weeds, -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/effect/mob_spawn/human, -/turf/open/floor/plating/asteroid{ - initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - initial_temperature = 363.9; - name = "Cave Floor" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"Pb" = ( +/turf/open/floor/iron/freezer, +/area/awaymission/undergroundoutpost45/central) +"Pc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 }, -/area/awaymission/undergroundoutpost45/caves) -"yP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"Pd" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Pe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"Pf" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Pg" = ( +/obj/machinery/vending/cola, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/engineering) +"Ph" = ( +/obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ +/obj/effect/turf_decal/tile/purple{ dir = 4 }, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"Pi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) -"za" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +"Pj" = ( +/obj/structure/cable{ + icon_state = "2-8" }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 +/obj/effect/turf_decal/tile/green/anticorner/contrasted, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"Pk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"ze" = ( +/area/awaymission/undergroundoutpost45/central) +"Pl" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder/red, +/obj/machinery/door/window/southleft{ + dir = 8; + name = "Security Checkpoint"; + req_access_txt = "201" + }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"Pm" = ( /obj/structure/closet/secure_closet{ icon_state = "hydro"; locked = 0; name = "botanist's locker"; req_access_txt = "201" }, -/obj/item/clothing/suit/apron, /obj/item/storage/bag/plants/portaseeder, +/obj/item/plant_analyzer, /obj/item/clothing/mask/bandana, -/obj/item/cultivator, +/obj/item/hatchet, /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron/dark, /area/awaymission/undergroundoutpost45/central) -"zi" = ( -/turf/open/space, -/area/space/nearstation) -"zq" = ( -/obj/structure/disposalpipe/segment{ +"Pp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/obj/effect/turf_decal/tile/yellow/half/contrasted, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"zt" = ( -/obj/structure/cable{ - icon_state = "4-8" +"Pq" = ( +/obj/machinery/shower{ + dir = 8 }, -/obj/structure/cable{ - icon_state = "2-4" +/turf/open/floor/iron/freezer, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Pr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/storage/backpack/satchel/eng, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/mask/gas, +/obj/item/clothing/glasses/meson, +/obj/structure/closet/secure_closet/engineering_personal{ + locked = 0; + req_access_txt = "201" }, -/obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 4 }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"zB" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/barman_recipes, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/effect/turf_decal/tile/bar/opposingcorners, +"Ps" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/mining{ + name = "Processing Area"; + req_access_txt = "201" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, /turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"Pu" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, /area/awaymission/undergroundoutpost45/crew_quarters) -"zE" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +"Pw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"zR" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 +/area/awaymission/undergroundoutpost45/central) +"Py" = ( +/obj/structure/cable{ + icon_state = "1-4" }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/gateway) +"PB" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/central) +"PC" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/brown{ dir = 4 }, /turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"PH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/gateway) +"PI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/computer/atmos_control{ + dir = 4; + name = "Tank Monitor"; + sensors = list("UO45_n2_sensor" = "Nitrogen", "UO45_o2_sensor" = "Oxygen", "UO45_mix_sensor" = "Gas Mix Tank") + }, +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/awaymission/undergroundoutpost45/engineering) +"PJ" = ( +/obj/machinery/rnd/production/circuit_imprinter, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/research) -"Aa" = ( -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ +"PK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ dir = 4 }, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"PL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"Aj" = ( -/obj/structure/chair{ +/area/awaymission/undergroundoutpost45/crew_quarters) +"PM" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"Ap" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 +/area/awaymission/undergroundoutpost45/gateway) +"PN" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "External to Filter" }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"At" = ( -/obj/structure/chair/fancy/comfy{ +/area/awaymission/undergroundoutpost45/engineering) +"PO" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"PP" = ( +/obj/machinery/conveyor{ + id = "UO45_mining" + }, +/obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/landmark/awaystart, -/turf/open/floor/carpet/grimy, -/area/awaymission/undergroundoutpost45/central) -"AA" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/mining) +"PR" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/mining/glass{ + name = "Mining Foyer"; + req_access_txt = "201" }, /turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"PS" = ( +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"PU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + burnt = 1 + }, /area/awaymission/undergroundoutpost45/central) -"AG" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ +"PV" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"PW" = ( +/obj/machinery/light/small{ dir = 1 }, -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"AL" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"AO" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/soda_cans/cola, -/turf/open/floor/carpet/grimy, +/obj/machinery/airalarm/all_access{ + pixel_y = 23; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/carpet, /area/awaymission/undergroundoutpost45/central) -"AR" = ( +"PZ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 + dir = 4 }, -/obj/machinery/button/door{ - desc = "A remote control-switch for the engineering security doors."; - id = "UO45_Engineering"; - name = "Engineering Lockdown"; - pixel_x = 24; - pixel_y = 6; +/obj/structure/closet/secure_closet/personal/cabinet{ + locked = 0; req_access_txt = "201" }, -/obj/item/clothing/suit/armor/vest, -/obj/item/clothing/head/helmet, -/obj/structure/closet/secure_closet{ - icon_state = "sec"; - name = "security officer's locker"; - req_access_txt = "201" +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/mining) +"Qc" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"Qd" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/breath, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/plating{ + broken = 1 + }, +/area/awaymission/undergroundoutpost45/research) +"Qe" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"AX" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 +"Qg" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" }, -/obj/item/screwdriver{ - pixel_y = 10 +/turf/open/floor/iron/freezer, +/area/awaymission/undergroundoutpost45/central) +"Qh" = ( +/obj/item/kirbyplants, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"Qi" = ( +/obj/structure/chair/office{ + dir = 4 }, -/obj/item/radio/off, /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"Be" = ( -/obj/structure/table, -/obj/item/trash/plate, -/obj/effect/turf_decal/tile/bar/opposingcorners, +/area/awaymission/undergroundoutpost45/central) +"Qj" = ( +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Qk" = ( +/obj/machinery/door/airlock/research/glass{ + name = "Research Storage"; + req_access_txt = "201" + }, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"Qm" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"Bv" = ( +"Qn" = ( /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) -"BA" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"BB" = ( +"Qo" = ( /obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 +/obj/item/trash/chips, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 }, +/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/research) -"BE" = ( +/area/awaymission/undergroundoutpost45/crew_quarters) +"Qr" = ( /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/disposalpipe/segment{ +/obj/structure/disposalpipe/junction/flip{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + broken = 1 + }, +/area/awaymission/undergroundoutpost45/research) +"Qs" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/iron/white/side, +/area/awaymission/undergroundoutpost45/research) +"Qt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/public/glass{ + name = "Diner" }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"BO" = ( -/obj/structure/chair{ - dir = 8 - }, +"Qu" = ( +/obj/machinery/vending/boozeomat, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"BP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"BR" = ( -/obj/machinery/computer/security{ +"Qv" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ dir = 1; - network = list("uo45") + name = "O2 Outlet Pump" }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"Ca" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ +/area/awaymission/undergroundoutpost45/engineering) +"Qw" = ( +/obj/structure/chair/fancy/comfy{ dir = 8 }, -/turf/open/floor/plating{ - broken = 1 - }, +/turf/open/floor/carpet/grimy, /area/awaymission/undergroundoutpost45/central) -"Ce" = ( -/obj/structure/cable{ - icon_state = "4-8" +"Qx" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"Qy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"QA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" }, -/turf/open/floor/plating{ - burnt = 1 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"QE" = ( +/obj/machinery/light/small, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" }, /area/awaymission/undergroundoutpost45/research) -"Cg" = ( -/obj/machinery/gateway{ - dir = 6 +"QF" = ( +/obj/machinery/airalarm/all_access{ + dir = 4; + pixel_x = -23 }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"Ci" = ( -/turf/open/floor/carpet/grimy, -/area/awaymission/undergroundoutpost45/central) -"Co" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/computer/atmos_control/tank{ - input_tag = "UO45_air_in"; - name = "Mixed Air Supply Control"; - output_tag = "UO45_air_out"; - sensors = list("UO45_air_sensor" = "Tank") +/obj/machinery/light{ + dir = 8 }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 +/obj/item/radio/off, +/obj/item/screwdriver{ + pixel_y = 10 }, -/turf/open/floor/iron/white/corner{ +/obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 }, -/area/awaymission/undergroundoutpost45/engineering) -"Cs" = ( -/obj/structure/chair, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"Cx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"CA" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 +/area/awaymission/undergroundoutpost45/research) +"QI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"CK" = ( -/obj/structure/cable{ - icon_state = "4-8" +"QM" = ( +/obj/machinery/mineral/unloading_machine{ + dir = 1; + icon_state = "unloader-corner"; + input_dir = 4; + output_dir = 8 }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 2 +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/mining) +"QN" = ( +/obj/structure/table, +/turf/open/floor/iron/cafeteria{ + dir = 5 }, +/area/awaymission/undergroundoutpost45/crew_quarters) +"QP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"CS" = ( -/obj/structure/cable{ - icon_state = "2-8" +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 }, -/obj/effect/turf_decal/tile/green/anticorner/contrasted, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) -"De" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"Dw" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +"QQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light/small{ dir = 4 }, -/turf/open/floor/plating{ - broken = 1 - }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/gateway) +"QS" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/soda_cans/cola, +/turf/open/floor/carpet/grimy, /area/awaymission/undergroundoutpost45/central) -"DJ" = ( -/obj/machinery/vending/boozeomat, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"DM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Kitchen"; - req_access_txt = "201" +"QT" = ( +/obj/structure/toilet{ + pixel_y = 8 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, +/area/awaymission/undergroundoutpost45/engineering) +"QW" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"QX" = ( /obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"DO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"Rb" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"Rc" = ( /obj/structure/cable{ icon_state = "1-2" }, -/obj/structure/disposalpipe/junction, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"Rd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"DR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ +"Rf" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - burnt = 1 +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/folder/white, +/obj/item/stamp/research_director{ + pixel_x = 3; + pixel_y = -2 + }, +/turf/open/floor/iron/cafeteria{ + dir = 5 }, /area/awaymission/undergroundoutpost45/research) -"DX" = ( +"Rg" = ( /obj/structure/table, -/obj/machinery/computer/security/telescreen{ - desc = "Used for monitoring the research division and the labs within."; - dir = 8; - name = "research monitor"; - network = list("uo45r") +/obj/item/stack/sheet/glass{ + amount = 16; + pixel_x = 3; + pixel_y = 3 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, +/obj/item/stack/sheet/iron{ + amount = 23 + }, +/turf/open/floor/iron/white/side, /area/awaymission/undergroundoutpost45/research) -"Eb" = ( +"Rh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/button/door{ - desc = "A remote control-switch whichs locks the research division down in the event of a biohazard leak or contamination."; - id = "UO45_biohazard"; - name = "Biohazard Door Control"; - pixel_y = -24; - req_access_txt = "201" +/obj/machinery/door/airlock/external, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"Rj" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/gateway) +"Rm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"Rn" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/research) -"Ej" = ( -/obj/machinery/vending/hydroseeds{ - slogan_delay = 700 +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/central) -"El" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 +/area/awaymission/undergroundoutpost45/gateway) +"Rq" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/turf_decal/tile/red/half/contrasted{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"Em" = ( +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/gateway) +"Rr" = ( +/obj/machinery/light/small, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" + }, +/area/awaymission/undergroundoutpost45/gateway) +"Ru" = ( /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 8 +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 1 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"Ev" = ( -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/research) -"EB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, +/area/awaymission/undergroundoutpost45/engineering) +"Rx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating{ - broken = 1 +/obj/structure/disposalpipe/junction, +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/area/awaymission/undergroundoutpost45/central) -"EK" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"EL" = ( +"Rz" = ( /obj/structure/cable{ - icon_state = "1-2" + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"ET" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"EV" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{ +/area/awaymission/undergroundoutpost45/mining) +"RA" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/mining) +"RB" = ( +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"RD" = ( +/obj/machinery/light/small{ dir = 4 }, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"RG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/crew_quarters) +"RI" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/book/manual/wiki/security_space_law, /obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 8 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"Fe" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 +/area/awaymission/undergroundoutpost45/central) +"RJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair{ + dir = 8 }, -/obj/item/pen, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"Ff" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/grille, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 32 + }, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"RK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating{ - broken = 1 + burnt = 1 }, -/area/awaymission/undergroundoutpost45/central) -"Fm" = ( -/obj/structure/sign/warning/vacuum{ - desc = "A beacon used by a teleporter."; - icon = 'icons/obj/device.dmi'; - icon_state = "beacon"; - name = "tracking beacon" +/area/awaymission/undergroundoutpost45/research) +"RL" = ( +/obj/machinery/light/small, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" }, -/obj/effect/landmark/awaystart, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"Fn" = ( -/obj/structure/table, -/obj/item/kitchen/fork, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"Ft" = ( -/obj/structure/disposalpipe/segment{ +"RM" = ( +/obj/structure/table, +/obj/item/hand_labeler, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/effect/turf_decal/stripes/corner{ dir = 4 }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"Fw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"RN" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"Fx" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/maintenance{ + name = "Research Maintenance"; + req_access_txt = "201" + }, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"RO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ +/obj/machinery/button/door{ + id = "awaydorm9"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_y = 25; + specialfunctions = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/mining) +"RQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"FH" = ( -/obj/structure/closet/secure_closet{ - icon_state = "hydro"; - locked = 0; - name = "botanist's locker"; - req_access_txt = "201" +"RR" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/item/storage/bag/plants/portaseeder, -/obj/item/plant_analyzer, -/obj/item/clothing/mask/bandana, -/obj/item/hatchet, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/central) -"FM" = ( -/obj/machinery/gateway{ +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"FN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"RS" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/airalarm/all_access{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/iron/freezer, +/area/awaymission/undergroundoutpost45/crew_quarters) +"RT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"RU" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 10 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics"; + network = list("uo45") }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"FR" = ( -/turf/open/floor/plating{ - burnt = 1 +/obj/structure/table, +/obj/item/clothing/gloves/color/yellow, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 5 }, -/area/awaymission/undergroundoutpost45/central) -"FZ" = ( -/obj/structure/table/reinforced, -/obj/item/storage/fancy/cigarettes{ - pixel_x = -2 +/obj/machinery/firealarm{ + pixel_y = 24 }, -/obj/item/lighter{ - pixel_x = 4 +/obj/item/multitool, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"Ga" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"Gd" = ( -/obj/structure/cable{ - icon_state = "4-8" +"RY" = ( +/obj/machinery/light/small{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/airalarm/all_access{ + pixel_y = 23; + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ +/obj/structure/chair/wood/normal{ dir = 4 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"Gg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/central) +"RZ" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 +/obj/machinery/computer/security/telescreen{ + desc = "Used for monitoring the research division and the labs within."; + name = "research monitor"; + network = list("uo45r") }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/mining) -"Gh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/item/restraints/handcuffs, -/obj/item/assembly/flash/handheld, -/obj/item/reagent_containers/peppercloud_deployer, -/obj/structure/closet/secure_closet{ - icon_state = "sec"; - name = "security officer's locker"; - req_access_txt = "201" +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/research) -"Gi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"Gj" = ( -/obj/structure/table, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 13; - pixel_y = 5 - }, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 8; - pixel_y = 8 +"Sb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants, +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_y = 3 +/area/awaymission/undergroundoutpost45/research) +"Sc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/obj/item/watertank, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Sf" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/central) -"Gt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"Sl" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -23 +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 }, -/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"So" = ( +/obj/machinery/button/door{ + id = "awaydorm7"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_y = -25; + specialfunctions = 4 + }, +/turf/open/floor/carpet, /area/awaymission/undergroundoutpost45/crew_quarters) -"Gy" = ( -/obj/structure/chair{ - dir = 8 +"Sr" = ( +/obj/structure/cable{ + icon_state = "2-4" }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 +/obj/structure/cable{ + icon_state = "2-8" }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"GB" = ( /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/engineering) +"St" = ( +/obj/machinery/conveyor{ + id = "UO45_mining" }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 4 +/obj/machinery/light/small{ + dir = 8 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"GF" = ( -/obj/structure/disposalpipe/segment{ +/obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sink{ - pixel_y = 25 - }, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 4 +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/mining) +"Su" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) -"GH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +"Sv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Sx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plating{ - burnt = 1 - }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/stack/rods, +/turf/open/floor/plating, /area/awaymission/undergroundoutpost45/central) -"GO" = ( -/obj/machinery/computer/security{ - dir = 1; - network = list("uo45") - }, -/obj/machinery/button/door{ - desc = "A remote control-switch for the security Privacy Shutters."; - id = "UO45_EngineeringOffice"; - name = "Privacy Shutters"; - pixel_x = -24; - pixel_y = 6; - req_access_txt = "201" +"SA" = ( +/obj/machinery/light/small{ + dir = 4 }, -/obj/effect/turf_decal/tile/red/half/contrasted{ +/obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"GS" = ( -/obj/item/storage/belt/security, -/obj/item/assembly/flash/handheld, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet{ - icon_state = "sec"; - name = "security officer's locker"; - req_access_txt = "201" +/obj/structure/table/reinforced, +/obj/item/taperecorder{ + pixel_x = -3 }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 +/obj/item/paicard{ + pixel_x = 4 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"GV" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - burnt = 1 +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/awaymission/undergroundoutpost45/research) +"SB" = ( +/obj/structure/chair{ + dir = 8 }, -/area/awaymission/undergroundoutpost45/crew_quarters) -"Hc" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/reagent_containers/glass/rag, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"Hj" = ( +"SC" = ( /obj/structure/table/reinforced, /obj/item/clipboard, /obj/item/clothing/glasses/meson{ @@ -8804,657 +8446,843 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"Hl" = ( -/obj/item/food/meat/slab/monkey, -/obj/item/food/meat/slab/monkey, -/obj/item/food/meat/slab/monkey, -/obj/item/food/meat/slab/monkey, -/obj/structure/closet/secure_closet/freezer{ - locked = 0; - name = "meat fridge"; - req_access_txt = "201" - }, -/turf/open/floor/iron/showroomfloor, -/area/awaymission/undergroundoutpost45/crew_quarters) -"Hq" = ( -/obj/machinery/gateway{ - dir = 10 +"SD" = ( +/obj/machinery/mineral/processing_unit{ + dir = 1 }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"Hr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 +/obj/effect/turf_decal/stripes/line{ + dir = 5 }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/mining) +"SE" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, +/obj/item/pen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"Hy" = ( -/obj/structure/chair/fancy/comfy{ - dir = 8 +/area/awaymission/undergroundoutpost45/engineering) +"SF" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet/grimy, -/area/awaymission/undergroundoutpost45/central) -"HD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 +/obj/machinery/light/small{ + dir = 1 }, -/obj/structure/window/reinforced{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/closet/secure_closet/engineering_personal{ - req_access = null; - req_access_txt = "201" +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ +/obj/effect/turf_decal/tile/neutral{ dir = 4 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"HH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 +/area/awaymission/undergroundoutpost45/crew_quarters) +"SG" = ( +/obj/structure/sign/warning/vacuum{ + desc = "A beacon used by a teleporter."; + icon = 'icons/obj/device.dmi'; + icon_state = "beacon"; + name = "tracking beacon" }, +/obj/effect/landmark/awaystart, +/obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) -"HJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 +"SI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) -"HO" = ( -/obj/structure/bookcase/manuals/engineering, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +"SJ" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/open/floor/iron{ + dir = 8; + icon_state = "floorscorched2" + }, +/area/awaymission/undergroundoutpost45/mining) +"SM" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"HS" = ( -/obj/structure/chair/fancy/comfy{ - dir = 8 +/area/awaymission/undergroundoutpost45/gateway) +"SN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/turf/open/floor/carpet/grimy, +/obj/machinery/button/door{ + id = "awaydorm3"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_y = 25; + specialfunctions = 4 + }, +/turf/open/floor/carpet, /area/awaymission/undergroundoutpost45/central) -"Ic" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 +"SO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/obj/structure/sign/warning/deathsposal{ - desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'"; - name = "\improper DISPOSAL: LEADS TO EXTERIOR"; - pixel_y = -32 +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/window{ + dir = 4 }, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"Il" = ( -/obj/structure/chair{ +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"SP" = ( +/obj/machinery/light/small{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"Iu" = ( -/obj/structure/cable{ - icon_state = "2-8" +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/obj/structure/disposalpipe/segment{ - dir = 10 +/turf/open/floor/iron{ + dir = 8; + icon_state = "floorscorched1" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 +/area/awaymission/undergroundoutpost45/engineering) +"SQ" = ( +/obj/structure/toilet{ + dir = 8 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"Iv" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"Ix" = ( -/obj/structure/chair/fancy/comfy{ +/turf/open/floor/iron/freezer, +/area/awaymission/undergroundoutpost45/research) +"SS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"SU" = ( +/obj/structure/table/glass, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/turf/open/floor/iron/white/side{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ +/area/awaymission/undergroundoutpost45/research) +"SV" = ( +/obj/machinery/gateway{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"SW" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"SZ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"Iy" = ( -/obj/machinery/light/small{ - dir = 8 +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "201" }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/gateway) +"Tb" = ( +/obj/machinery/button/door{ + desc = "A remote control-switch to call the elevator to your level."; + id = "UO45_useless"; + name = "Call Elevator"; + pixel_x = -6; + pixel_y = 24 }, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"IF" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 +/obj/machinery/button/door{ + desc = "A remote control-switch for the elevator doors."; + id = "UO45_Elevator"; + name = "Elevator Doors"; + pixel_x = 6; + pixel_y = 24 }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) -"Jj" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 +"Tc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"Jm" = ( +/area/awaymission/undergroundoutpost45/mining) +"Td" = ( +/obj/structure/sink{ + pixel_y = 25 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, +/area/awaymission/undergroundoutpost45/central) +"Te" = ( /obj/structure/cable{ icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/camera/directional/north{ + c_tag = "Dormitories"; + network = list("uo45") + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Tg" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - burnt = 1 +/obj/machinery/door/poddoor/shutters/preopen{ + id = "UO45_EngineeringOffice"; + name = "Privacy Shutters" }, -/area/awaymission/undergroundoutpost45/research) -"Jr" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 +/obj/machinery/door/window/southleft{ + dir = 4; + name = "Engineering Reception"; + req_access_txt = "201" }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 }, -/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/item/pen, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"Js" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/breath, -/turf/open/floor/plating{ - broken = 1 +/area/awaymission/undergroundoutpost45/engineering) +"Th" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"Tj" = ( +/obj/structure/alien/weeds, +/obj/structure/bed/nest, +/obj/effect/mob_spawn/human, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" }, +/area/awaymission/undergroundoutpost45/caves) +"Tm" = ( +/obj/structure/chair/stool, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) -"Jt" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ +"Tn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/structure/sign/warning/deathsposal{ - desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'"; - name = "\improper DISPOSAL: LEADS TO EXTERIOR"; - pixel_x = -32 +/obj/structure/chair/office{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"Jw" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ +/obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"JD" = ( +/area/awaymission/undergroundoutpost45/engineering) +"To" = ( /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"JH" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"JY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/structure/sign/warning/securearea{ - pixel_x = 32 - }, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"Kf" = ( -/obj/item/kirbyplants, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ +/obj/effect/turf_decal/tile/neutral{ dir = 4 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"Kp" = ( -/obj/structure/table, -/obj/item/trash/chips, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 +/area/awaymission/undergroundoutpost45/crew_quarters) +"Tp" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastleft{ + dir = 1; + name = "Hydroponics Desk"; + req_access_txt = "201" }, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, +/turf/open/floor/iron/dark, /area/awaymission/undergroundoutpost45/crew_quarters) -"Kr" = ( -/obj/machinery/computer/security{ - dir = 4; - network = list("uo45") +"Tq" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 }, -/obj/effect/turf_decal/tile/red/half/contrasted{ +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, -/turf/open/floor/iron, +/turf/open/floor/iron/white, /area/awaymission/undergroundoutpost45/research) -"Kw" = ( +"Tr" = ( /obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"KA" = ( -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"KE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron/white/side{ + dir = 8 }, -/turf/open/floor/circuit/telecomms/server, /area/awaymission/undergroundoutpost45/research) -"KI" = ( +"Ts" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, +/area/awaymission/undergroundoutpost45/central) +"Tt" = ( /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/airalarm/all_access{ - pixel_y = 23; - dir = 1 +/obj/machinery/light/small{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/engineering) +"Tu" = ( +/obj/structure/disposalpipe/junction/flip{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"Tv" = ( +/obj/structure/table, +/obj/item/pickaxe, +/obj/item/radio/off, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"Tx" = ( +/obj/item/kirbyplants, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ dir = 4 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"KJ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ +/area/awaymission/undergroundoutpost45/engineering) +"Tz" = ( +/obj/machinery/atmospherics/components/binary/valve, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"TA" = ( +/obj/machinery/light/small{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/effect/turf_decal/tile/purple{ dir = 4 }, -/turf/open/floor/plating{ - broken = 1 - }, +/turf/open/floor/iron/white, /area/awaymission/undergroundoutpost45/research) -"KO" = ( -/obj/structure/cable{ - icon_state = "1-8" +"TC" = ( +/obj/machinery/light/small{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 9 +/obj/structure/toilet{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - broken = 1 - }, -/area/awaymission/undergroundoutpost45/research) -"KQ" = ( -/obj/machinery/light{ +/turf/open/floor/iron/freezer, +/area/awaymission/undergroundoutpost45/crew_quarters) +"TD" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 32 +/obj/structure/closet/crate, +/obj/item/stack/sheet/iron{ + amount = 26 }, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"La" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/item/stack/sheet/glass{ + amount = 19 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 8 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"TG" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) -"Lg" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ +"TH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ +/obj/machinery/light/small{ dir = 4 }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ +/obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"Li" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/area/awaymission/undergroundoutpost45/gateway) +"TK" = ( +/turf/open/floor/iron{ + dir = 8; + icon_state = "floorscorched1" + }, +/area/awaymission/undergroundoutpost45/gateway) +"TL" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 4 }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/research) +"TN" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/mining) +"TO" = ( +/obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/mining) +"TR" = ( /obj/structure/extinguisher_cabinet{ - pixel_y = -28 + pixel_y = 30 }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 +/obj/effect/turf_decal/tile/purple{ + dir = 4 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"Lk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"TU" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating{ - burnt = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sink{ + pixel_y = 25 }, -/area/awaymission/undergroundoutpost45/central) -"Ln" = ( -/obj/structure/chair{ +/obj/effect/turf_decal/tile/green/half/contrasted{ dir = 4 }, -/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"Ls" = ( -/obj/structure/table, -/obj/item/book/manual/hydroponics_pod_people, -/obj/item/paper/guides/jobs/hydroponics, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron/dark, /area/awaymission/undergroundoutpost45/central) -"Ly" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"Lz" = ( -/obj/structure/chair/stool, +"TV" = ( +/obj/structure/alien/weeds, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" + }, +/area/awaymission/undergroundoutpost45/caves) +"TW" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/item/reagent_containers/glass/bucket, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"LA" = ( -/obj/structure/chair{ +/area/awaymission/undergroundoutpost45/central) +"TX" = ( +/obj/machinery/light{ dir = 8 }, -/turf/open/floor/plating{ - broken = 1 - }, -/area/awaymission/undergroundoutpost45/crew_quarters) -"LF" = ( -/obj/structure/table/wood, -/turf/open/floor/carpet/grimy, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) -"LH" = ( +"Uc" = ( /obj/structure/cable{ icon_state = "4-8" }, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"LJ" = ( -/obj/machinery/light/small{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"Ue" = ( +/obj/structure/table/reinforced, +/obj/item/lighter, +/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"LS" = ( -/obj/machinery/gateway, -/obj/structure/cable{ - icon_state = "0-2" +"Uh" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"LW" = ( -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"Ui" = ( +/obj/machinery/light/small{ dir = 4 }, -/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"LY" = ( +/area/awaymission/undergroundoutpost45/engineering) +"Uj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"LZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"Ma" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ +"Uk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"Mb" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +"Ul" = ( +/obj/structure/alien/weeds, +/obj/structure/alien/resin/wall, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" + }, +/area/awaymission/undergroundoutpost45/caves) +"Um" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/shovel/spade, +/obj/item/wrench, +/obj/item/screwdriver, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/central) +"Up" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/airalarm/all_access{ + pixel_y = 23; + dir = 1 + }, +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Uq" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Ut" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"Mf" = ( -/obj/structure/filingcabinet, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ +/area/awaymission/undergroundoutpost45/crew_quarters) +"Uu" = ( +/obj/machinery/computer/aifixer{ dir = 8 }, -/turf/open/floor/iron, +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, /area/awaymission/undergroundoutpost45/research) -"MC" = ( -/obj/structure/disposalpipe/segment{ +"Uv" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"Uz" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sink{ - pixel_y = 25 +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/effect/turf_decal/stripes/line{ + dir = 5 }, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 4 +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"UA" = ( +/obj/structure/alien/weeds, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" + }, +/area/awaymission/undergroundoutpost45/caves) +"UC" = ( +/obj/machinery/light/small{ + dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"ME" = ( +/area/awaymission/undergroundoutpost45/crew_quarters) +"UE" = ( +/obj/machinery/door/firedoor, /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -28 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"MJ" = ( -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 +/area/awaymission/undergroundoutpost45/crew_quarters) +"UG" = ( +/obj/machinery/door/airlock{ + name = "Kitchen Cold Room"; + req_access_txt = "201" + }, +/turf/open/floor/iron/showroomfloor, +/area/awaymission/undergroundoutpost45/crew_quarters) +"UH" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 8 }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"MM" = ( -/obj/machinery/door/firedoor, +"UI" = ( /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/gateway) +"UJ" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ dir = 4 }, -/turf/open/floor/iron, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/engineering) +"UK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/button/door{ + id = "awaydorm5"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_y = -25; + specialfunctions = 4 + }, +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/carpet, /area/awaymission/undergroundoutpost45/crew_quarters) -"MQ" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, +"UL" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron/dark, /area/awaymission/undergroundoutpost45/central) -"MS" = ( -/obj/structure/chair/fancy/comfy, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"MT" = ( +"UM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/airalarm/all_access{ dir = 4; - pixel_x = -23 + pixel_x = 23 + }, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/filingcabinet, /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"UP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/obj/effect/turf_decal/tile/red/half/contrasted{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"UQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"UR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"US" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/brown{ dir = 1 }, /turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"UT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"UU" = ( +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_y = 32 + }, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) -"MU" = ( -/obj/structure/disposalpipe/segment{ +"UV" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, /obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"UW" = ( +/obj/machinery/airalarm/all_access{ + pixel_y = 23; + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/effect/turf_decal/tile/green/half/contrasted{ dir = 4 }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) -"Nc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"Nd" = ( +"UY" = ( /obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating{ - burnt = 1 + icon_state = "4-8" }, -/area/awaymission/undergroundoutpost45/research) -"Nj" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"UZ" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Va" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/open/floor/iron/freezer, /area/awaymission/undergroundoutpost45/central) -"Nk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 +"Vd" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ +/obj/structure/chair, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ dir = 4 }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) -"Nt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 +"Vg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/obj/machinery/newscaster{ - pixel_y = -28 +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "201" }, -/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/gateway) +"Vi" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"NG" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-8" +"Vj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"Vk" = ( +/obj/machinery/light/small, +/obj/machinery/airalarm/all_access{ + dir = 1; + pixel_y = -23 }, -/obj/machinery/door/airlock/command/glass{ - name = "Chief Engineer"; - req_access_txt = "201" +/turf/open/floor/iron/freezer, +/area/awaymission/undergroundoutpost45/central) +"Vl" = ( +/obj/machinery/light{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"NH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/table, -/obj/item/storage/box, -/obj/item/storage/box, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 30 +/obj/machinery/firealarm{ + pixel_y = 24 }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ +/obj/effect/turf_decal/tile/green/half/contrasted{ dir = 4 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"NQ" = ( +/area/awaymission/undergroundoutpost45/central) +"Vm" = ( /obj/machinery/light/small{ dir = 1 }, @@ -9480,898 +9308,1173 @@ }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"NY" = ( -/obj/machinery/light/small, -/obj/machinery/computer/atmos_alert{ - dir = 1 +"Vp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/obj/machinery/button/door{ - desc = "A remote control-switch for the engineering security doors."; - id = "UO45_Engineering"; - name = "Engineering Lockdown"; - pixel_x = -6; - pixel_y = -24; +/obj/machinery/door/airlock/engineering{ + name = "Engineering Maintenance"; req_access_txt = "201" }, -/obj/machinery/button/door{ - desc = "A remote control-switch for secure storage."; - id = "UO45_Secure Storage"; - name = "Engineering Secure Storage"; - pixel_x = 6; - pixel_y = -24; - req_access_txt = "201" +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"Vq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"Ox" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"OC" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"OE" = ( +"Vr" = ( /obj/structure/cable{ - icon_state = "2-4" + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"OX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/purple/half/contrasted{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + broken = 1 + }, +/area/awaymission/undergroundoutpost45/central) +"Vs" = ( +/obj/machinery/rnd/destructive_analyzer, +/obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/research) +"Vv" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"Vw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, /area/awaymission/undergroundoutpost45/crew_quarters) -"OZ" = ( -/obj/structure/chair{ - dir = 4 +"Vx" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"Vy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "awaydorm1"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_y = -25; + specialfunctions = 4 + }, +/turf/open/floor/carpet, /area/awaymission/undergroundoutpost45/central) -"Pn" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ +"VA" = ( +/obj/machinery/light/small{ dir = 1 }, -/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" + }, +/area/awaymission/undergroundoutpost45/research) +"VC" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"Pz" = ( -/obj/structure/chair/fancy/comfy, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 +"VD" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -28 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"PA" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 +/obj/structure/rack, +/obj/item/tank/jetpack/carbondioxide, +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"VE" = ( +/obj/effect/landmark/awaystart, +/turf/open/floor/carpet/grimy, /area/awaymission/undergroundoutpost45/central) -"PQ" = ( +"VF" = ( /obj/structure/cable{ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating{ broken = 1 }, /area/awaymission/undergroundoutpost45/central) -"PX" = ( -/obj/machinery/computer/atmos_control/tank{ - dir = 8; - input_tag = "UO45_mix_in"; - name = "Gas Mix Tank Control"; - output_tag = "UO45_mix_in"; - sensors = list("UO45_mix_sensor" = "Tank") - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 6 +"VH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green/anticorner/contrasted, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"Qb" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron/white, -/area/awaymission/undergroundoutpost45/research) -"Qf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/area/awaymission/undergroundoutpost45/mining) +"VL" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"Ql" = ( -/obj/effect/turf_decal/tile/green/half/contrasted, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"Qp" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/turf_decal/tile/red/half/contrasted{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/research) -"Qq" = ( -/obj/structure/cable{ - icon_state = "1-2" +/area/awaymission/undergroundoutpost45/crew_quarters) +"VM" = ( +/obj/machinery/light{ + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"Qz" = ( +/area/awaymission/undergroundoutpost45/crew_quarters) +"VP" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Central Hallway"; + network = list("uo45") + }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"VQ" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - broken = 1 - }, -/area/awaymission/undergroundoutpost45/crew_quarters) -"QB" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{ - dir = 4 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"VS" = ( +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 5 }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"QC" = ( -/obj/structure/cable{ - icon_state = "4-8" +"VV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/newscaster{ + pixel_y = -28 }, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"VW" = ( /obj/machinery/light/small{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 +/area/awaymission/undergroundoutpost45/central) +"VY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Hydroponics"; + req_access_txt = "201" }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"QG" = ( -/obj/structure/closet/crate, -/obj/item/storage/box/lights/mixed, -/obj/item/poster/random_contraband, +/area/awaymission/undergroundoutpost45/central) +"VZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, /obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"Wa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, /turf/open/floor/plating{ burnt = 1 }, -/area/awaymission/undergroundoutpost45/research) -"QJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 +/area/awaymission/undergroundoutpost45/central) +"Wc" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/structure/sign/warning/securearea{ - pixel_y = -32 +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"QL" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 +"Wd" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/mining) +"Wf" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating{ + burnt = 1 }, -/obj/machinery/door/airlock{ - name = "Kitchen"; - req_access_txt = "201" +/area/awaymission/undergroundoutpost45/gateway) +"Wg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 10 + }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"Wh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 }, /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"QU" = ( -/obj/structure/table/wood, -/obj/item/newspaper, -/turf/open/floor/carpet/grimy, -/area/awaymission/undergroundoutpost45/central) -"QV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green/anticorner/contrasted, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"QZ" = ( -/obj/item/kirbyplants, +"Wi" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ +/obj/effect/turf_decal/tile/green/half/contrasted{ dir = 8 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"Ri" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/computer/atmos_control{ - dir = 4; - name = "Tank Monitor"; - sensors = list("UO45_n2_sensor" = "Nitrogen", "UO45_o2_sensor" = "Oxygen", "UO45_mix_sensor" = "Gas Mix Tank") +/area/awaymission/undergroundoutpost45/central) +"Wj" = ( +/obj/machinery/mineral/stacking_machine{ + dir = 1; + input_dir = 8; + output_dir = 4 }, -/obj/effect/turf_decal/tile/yellow/opposingcorners{ - dir = 1 +/obj/effect/turf_decal/stripes/line{ + dir = 5 }, -/turf/open/floor/iron/dark/corner{ +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/mining) +"Wl" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, -/area/awaymission/undergroundoutpost45/engineering) -"Rl" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Hydroponics"; - network = list("uo45") +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" }, -/obj/machinery/power/apc/highcap/fifteen_k{ - locked = 0; - name = "Hydroponics APC"; - pixel_y = -23; - start_charge = 100 +/area/awaymission/undergroundoutpost45/caves) +"Wp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"Wq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"Ws" = ( /obj/structure/cable{ - icon_state = "0-4" + icon_state = "2-4" }, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 8 +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"Wt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 6 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"Rp" = ( +/area/awaymission/undergroundoutpost45/engineering) +"Wv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + burnt = 1 + }, +/area/awaymission/undergroundoutpost45/research) +"Ww" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/beer, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"Rs" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ +/obj/item/paper_bin{ pixel_x = 1; - pixel_y = 5 + pixel_y = 9 }, -/turf/open/floor/carpet/grimy, +/obj/item/pen, +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/awaymission/undergroundoutpost45/research) +"WA" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/carpet, /area/awaymission/undergroundoutpost45/central) -"Rt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 +"WD" = ( +/obj/machinery/gateway{ + dir = 1 }, -/turf/open/floor/plating{ - burnt = 1 +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"WE" = ( +/obj/structure/glowshroom/single, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" + }, +/area/awaymission/undergroundoutpost45/caves) +"WG" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" }, +/turf/open/floor/iron/freezer, /area/awaymission/undergroundoutpost45/central) -"Rv" = ( -/obj/structure/table/reinforced, -/obj/item/lighter, -/obj/effect/turf_decal/tile/bar/opposingcorners, +"WI" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/bot, /turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"WJ" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/sign/warning/deathsposal{ + desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'"; + name = "\improper DISPOSAL: LEADS TO EXTERIOR"; + pixel_y = -32 + }, +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, /area/awaymission/undergroundoutpost45/crew_quarters) -"Rw" = ( -/obj/effect/turf_decal/tile/green/half/contrasted{ +"WL" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/airalarm/all_access{ + dir = 4; + pixel_x = 23 + }, +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/crew_quarters) +"WO" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/item/soap/nanotrasen, +/turf/open/floor/iron/freezer, +/area/awaymission/undergroundoutpost45/crew_quarters) +"WQ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/central) +"WR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/engineering) +"WS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"WT" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, +/obj/machinery/door/airlock{ + name = "Kitchen"; + req_access_txt = "201" + }, +/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"Ry" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - broken = 1 +/area/awaymission/undergroundoutpost45/crew_quarters) +"WU" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster{ + pixel_y = 32 }, +/turf/open/floor/carpet, /area/awaymission/undergroundoutpost45/crew_quarters) -"RP" = ( -/obj/machinery/vending/cola, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ +"WX" = ( +/obj/structure/chair/office{ dir = 1 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"RW" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ +/area/awaymission/undergroundoutpost45/research) +"WY" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/turf_decal/tile/red/half/contrasted{ dir = 4 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"RX" = ( -/obj/structure/cable{ - icon_state = "0-4" +/area/awaymission/undergroundoutpost45/research) +"WZ" = ( +/obj/structure/alien/weeds, +/obj/effect/mob_spawn/human, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" }, -/obj/machinery/computer/monitor/secret{ - name = "primary power monitoring console" +/area/awaymission/undergroundoutpost45/caves) +"Xc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -32 +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"Xe" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Xf" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/gateway) +"Xg" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/airalarm/all_access{ + dir = 4; + pixel_x = -23 }, +/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"Sd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ +/area/awaymission/undergroundoutpost45/crew_quarters) +"Xh" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, -/obj/machinery/newscaster{ - pixel_y = -28 +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"Xj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "1-8" +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"Sg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 8 +"Xk" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/stripes/line{ + dir = 5 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"Sh" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/tank_dispenser{ - pixel_x = -1 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ +/area/awaymission/undergroundoutpost45/gateway) +"Xl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"Si" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/central) +"Xn" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"Sm" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/turf_decal/tile/green/half/contrasted{ +/obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"Sq" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/bar/opposingcorners, +/area/awaymission/undergroundoutpost45/engineering) +"Xo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"Ss" = ( -/obj/structure/chair/fancy/comfy, +/area/awaymission/undergroundoutpost45/research) +"Xp" = ( +/obj/structure/closet/secure_closet{ + locked = 0; + name = "kitchen Cabinet"; + req_access_txt = "201" + }, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/sugar, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"Sw" = ( +"Xq" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green/half/contrasted{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/iron, +/turf/open/floor/plating{ + broken = 1 + }, /area/awaymission/undergroundoutpost45/central) -"Sz" = ( -/obj/machinery/gateway{ - dir = 8 +"Xr" = ( +/obj/machinery/computer/rdservercontrol{ + dir = 1 }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"SL" = ( -/obj/machinery/computer/station_alert{ +/area/awaymission/undergroundoutpost45/research) +"Xs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stock_parts/scanning_module{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/stock_parts/scanning_module, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"Ta" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"Xt" = ( +/obj/machinery/light/small, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" + }, +/area/awaymission/undergroundoutpost45/engineering) +"Xu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown{ + dir = 1 }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"Tk" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 +"Xw" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/gateway) +"Xy" = ( +/obj/machinery/computer/rdconsole/core{ + dir = 4; + req_access = null }, -/obj/machinery/computer/atmos_control/tank{ - dir = 1; - input_tag = "UO45_n2_in"; - name = "Nitrogen Supply Control"; - output_tag = "UO45_n2_out"; - sensors = list("UO45_n2_sensor" = "Tank") +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/research) +"Xz" = ( +/obj/item/kirbyplants, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"Tl" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plating{ - burnt = 1 +/area/awaymission/undergroundoutpost45/crew_quarters) +"XA" = ( +/obj/structure/chair/fancy/comfy{ + dir = 4 }, -/area/awaymission/undergroundoutpost45/gateway) -"Ty" = ( +/obj/effect/landmark/awaystart, +/turf/open/floor/carpet/grimy, +/area/awaymission/undergroundoutpost45/central) +"XD" = ( /obj/structure/cable{ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - burnt = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 }, -/area/awaymission/undergroundoutpost45/central) -"TB" = ( -/obj/structure/chair{ - dir = 4 +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"XF" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"TF" = ( -/obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ - dir = 5 + dir = 4 }, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"TI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"TJ" = ( -/obj/machinery/vending/snack, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"TM" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/iron, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, /area/awaymission/undergroundoutpost45/crew_quarters) -"TQ" = ( -/obj/structure/cable{ - icon_state = "1-2" +"XG" = ( +/obj/machinery/shower{ + pixel_y = 15 }, -/obj/machinery/light/small{ - dir = 4 +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = 23 +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"XI" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"TY" = ( -/obj/machinery/light{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = 23 +/obj/machinery/door/airlock/maintenance{ + name = "Hydroponics Maintenance"; + req_access_txt = "201" }, -/obj/effect/turf_decal/tile/green/half/contrasted, -/turf/open/floor/iron, +/turf/open/floor/plating, /area/awaymission/undergroundoutpost45/central) -"Ud" = ( -/obj/machinery/gateway{ - dir = 9 +"XJ" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/mob_spawn/human, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"Uo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/area/awaymission/undergroundoutpost45/caves) +"XL" = ( /obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/newscaster{ - pixel_x = -30 +/obj/item/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 6 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/half/contrasted{ +/turf/open/floor/iron/white/corner{ dir = 1 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"Uw" = ( -/obj/machinery/seed_extractor, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/central) -"Ux" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ +/area/awaymission/undergroundoutpost45/research) +"XM" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"Uy" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ +"XO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/computer/atmos_alert{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-2" +/obj/effect/turf_decal/tile/yellow{ + dir = 8 }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/awaymission/undergroundoutpost45/engineering) +"XP" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, -/turf/open/floor/iron, +/obj/structure/closet/secure_closet/personal/cabinet{ + locked = 0; + req_access_txt = "201" + }, +/obj/item/clothing/under/suit/black/skirt, +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/central) +"XQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/carpet, /area/awaymission/undergroundoutpost45/mining) -"UB" = ( +"XR" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/breath, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"XS" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, -/turf/open/floor/plating{ - burnt = 1 +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 }, +/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) -"UD" = ( -/obj/structure/filingcabinet, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ +"XU" = ( +/obj/machinery/light/small{ dir = 8 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"UF" = ( -/obj/structure/cable{ - icon_state = "4-8" +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; + initial_temperature = 363.9; + name = "Cave Floor" }, -/obj/structure/disposalpipe/segment{ +/area/awaymission/undergroundoutpost45/crew_quarters) +"XV" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"XW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"XX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/machinery/door/airlock/maintenance{ + name = "Security Checkpoint Maintenance"; + req_access_txt = "201" + }, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/central) +"XZ" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/breath, /turf/open/floor/plating{ broken = 1 }, -/area/awaymission/undergroundoutpost45/research) -"UN" = ( -/obj/machinery/light{ +/area/awaymission/undergroundoutpost45/central) +"Ya" = ( +/obj/structure/chair{ dir = 1 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Yb" = ( +/obj/structure/table, +/obj/item/plate, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Yd" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/firealarm{ - pixel_y = 24 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 }, -/obj/effect/turf_decal/tile/green/half/contrasted{ +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Yh" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"Yi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/table, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 4 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"UO" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - broken = 1 - }, +/area/awaymission/undergroundoutpost45/engineering) +"Yj" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/carpet, /area/awaymission/undergroundoutpost45/crew_quarters) -"UX" = ( +"Ym" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron/dark, +/area/awaymission/undergroundoutpost45/central) +"Yr" = ( /obj/structure/cable{ - icon_state = "1-2" + icon_state = "1-4" }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - broken = 1 +/obj/structure/disposalpipe/segment{ + dir = 5 }, -/area/awaymission/undergroundoutpost45/research) -"Vb" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"Ve" = ( -/obj/structure/cable{ - icon_state = "1-2" +"Ys" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/engineering) +"Yv" = ( +/obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ - dir = 9 + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"Yy" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"YB" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/mining) +"YC" = ( +/obj/structure/filingcabinet, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/engineering) -"Vf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +"YD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/obj/structure/chair/office{ +/area/awaymission/undergroundoutpost45/research) +"YE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/closet/secure_closet/personal/cabinet{ + locked = 0; + req_access_txt = "201" + }, +/obj/item/clothing/under/misc/pj/blue, +/turf/open/floor/carpet, +/area/awaymission/undergroundoutpost45/central) +"YF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"YG" = ( +/obj/machinery/airalarm/all_access{ + pixel_y = 23; + dir = 1 + }, +/obj/machinery/light/small{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/half/contrasted{ +/obj/machinery/camera/directional/north{ + c_tag = "Research Lab"; + network = list("uo45","uo45r") + }, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/research) +"YI" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"Vh" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 +/obj/structure/sign/warning/deathsposal{ + desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'"; + name = "\improper DISPOSAL: LEADS TO EXTERIOR"; + pixel_y = -32 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"Vn" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -30 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/half/contrasted{ +/area/awaymission/undergroundoutpost45/crew_quarters) +"YK" = ( +/obj/machinery/rnd/production/protolathe, +/obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/research) -"Vo" = ( +"YP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"YQ" = ( +/obj/structure/chair{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) -"Vt" = ( -/obj/machinery/light/small{ - dir = 8 +"YR" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"YT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 }, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"Vu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"Vz" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/structure/sign/warning/deathsposal{ - desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'"; - name = "\improper DISPOSAL: LEADS TO EXTERIOR"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/central) -"VG" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, +"YV" = ( /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/disposalpipe/junction/flip{ - dir = 2 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"VJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 +"YW" = ( +/obj/machinery/light/small{ + dir = 1 }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 +/obj/machinery/camera/directional/north{ + c_tag = "Engineering Secure Storage"; + network = list("uo45") }, -/turf/open/floor/iron, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/engineering) +"Za" = ( +/obj/structure/grille, +/turf/open/floor/plating, /area/awaymission/undergroundoutpost45/central) -"VK" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 +"Zc" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" }, -/obj/machinery/light{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/freezer, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Zd" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/item/radio/off, -/obj/item/screwdriver{ - pixel_y = 10 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/turf_decal/tile/red/half/contrasted{ +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ dir = 1 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/research) -"VN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 +/area/awaymission/undergroundoutpost45/crew_quarters) +"Zf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/engineering) +"Zg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"VO" = ( -/obj/machinery/light/small, +"Zi" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, +/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"VR" = ( +"Zj" = ( /obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - broken = 1 + icon_state = "4-8" }, -/area/awaymission/undergroundoutpost45/central) -"VU" = ( -/obj/machinery/door/window/southright{ - name = "Bar Door"; - req_access_txt = "201" +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"We" = ( -/obj/structure/table, +/area/awaymission/undergroundoutpost45/gateway) +"Zm" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"Wk" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ +"Zn" = ( +/obj/machinery/light/small{ dir = 8 }, -/obj/structure/chair, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 30 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 }, -/obj/effect/turf_decal/tile/red/half/contrasted{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white/side{ dir = 4 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"Wn" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/landmark/awaystart, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"Wz" = ( -/obj/machinery/gateway{ - dir = 5 +/area/awaymission/undergroundoutpost45/research) +"Zp" = ( +/obj/machinery/airalarm/all_access{ + dir = 4; + pixel_x = 23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair{ + dir = 8 }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron/dark, /area/awaymission/undergroundoutpost45/gateway) -"WH" = ( -/obj/machinery/biogenerator, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/central) -"WK" = ( -/obj/structure/chair/fancy/comfy{ +"Zq" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/crew_quarters) +"Zr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 +/obj/structure/chair/stool, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/gateway) +"Zt" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"WN" = ( -/obj/machinery/computer/monitor/secret{ - dir = 1; - name = "primary power monitoring console" +"Zu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/gateway) +"Zv" = ( +/obj/machinery/light{ + dir = 8 }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/obj/machinery/door/firedoor, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"Xm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 +/area/awaymission/undergroundoutpost45/central) +"Zw" = ( +/obj/structure/table, +/obj/item/kitchen/rollingpin, +/turf/open/floor/iron/cafeteria{ + dir = 5 }, -/obj/structure/window/reinforced{ +/area/awaymission/undergroundoutpost45/crew_quarters) +"Zx" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ dir = 8 }, -/obj/item/storage/backpack/satchel/eng, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/mask/gas, -/obj/item/clothing/glasses/meson, -/obj/structure/closet/secure_closet/engineering_personal{ - locked = 0; - req_access_txt = "201" +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ +/turf/open/floor/plating, +/area/awaymission/undergroundoutpost45/research) +"Zy" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/gateway) +"ZC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"Xv" = ( -/obj/structure/table/wood, -/obj/item/book/manual/ripley_build_and_repair, -/turf/open/floor/carpet/grimy, -/area/awaymission/undergroundoutpost45/central) -"Xx" = ( -/obj/machinery/vending/cola, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"XN" = ( +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/gateway) +"ZG" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ icon_state = "4-8" @@ -10381,256 +10484,153 @@ }, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) -"Yo" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, +"ZH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 +/obj/machinery/airalarm/all_access{ + dir = 1; + pixel_y = -23 }, +/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"Yq" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 4 +"ZM" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = 32 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"Yu" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/computer/atmos_control/tank{ - dir = 1; - input_tag = "UO45_o2_in"; - name = "Oxygen Supply Control"; - output_tag = "UO45_o2_out"; - sensors = list("UO45_o2_sensor" = "Tank") +/area/awaymission/undergroundoutpost45/gateway) +"ZN" = ( +/obj/structure/table, +/obj/machinery/airalarm/all_access{ + pixel_y = 23; + dir = 1 }, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"Yz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/hand_labeler, +/obj/item/clothing/neck/stethoscope, +/turf/open/floor/iron/white/side, +/area/awaymission/undergroundoutpost45/research) +"ZO" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/green/half/contrasted, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"YA" = ( -/obj/effect/landmark/awaystart, -/turf/open/floor/carpet/grimy, -/area/awaymission/undergroundoutpost45/central) -"YH" = ( -/obj/machinery/vending/hydronutrients, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron/dark, /area/awaymission/undergroundoutpost45/central) -"YL" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green/half/contrasted{ +"ZP" = ( +/obj/effect/turf_decal/loading_area{ dir = 4 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"YM" = ( +/area/awaymission/undergroundoutpost45/mining) +"ZQ" = ( +/obj/machinery/door/firedoor, /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/light/small{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 + dir = 4 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Reception" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"YO" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"YX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red/half/contrasted, +/area/awaymission/undergroundoutpost45/engineering) +"ZR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"YY" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 23; - dir = 1 - }, -/obj/machinery/light{ - dir = 1 +/area/awaymission/undergroundoutpost45/research) +"ZS" = ( +/obj/structure/cable{ + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/turf_decal/tile/green/half/contrasted{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"YZ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ +/obj/effect/turf_decal/tile/neutral{ dir = 1 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/engineering) -"Ze" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/highcap/fifteen_k{ - dir = 1; - locked = 0; - name = "UO45 Bar APC"; - pixel_y = 23; - start_charge = 100 - }, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/crew_quarters) -"Zh" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating{ - broken = 1 +"ZT" = ( +/obj/machinery/light{ + dir = 8 }, -/area/awaymission/undergroundoutpost45/central) -"Zk" = ( -/obj/machinery/gateway{ - dir = 1 +/obj/machinery/airalarm/all_access{ + dir = 4; + pixel_x = -23 }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron/dark, -/area/awaymission/undergroundoutpost45/gateway) -"Zl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 +/turf/open/floor/iron{ + dir = 8; + icon_state = "floorscorched1" }, -/turf/open/floor/iron, /area/awaymission/undergroundoutpost45/central) -"Zo" = ( +"ZU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"ZA" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction/flip{ +/obj/effect/turf_decal/tile/purple{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/turf/open/floor/iron/white, +/area/awaymission/undergroundoutpost45/gateway) +"ZV" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - broken = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 }, +/turf/open/floor/iron/white, /area/awaymission/undergroundoutpost45/research) -"ZB" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/cigarettes{ - pixel_y = 2 - }, -/obj/item/lighter{ - pixel_x = 4; - pixel_y = 2 - }, -/turf/open/floor/carpet/grimy, -/area/awaymission/undergroundoutpost45/central) -"ZE" = ( -/obj/structure/closet, -/obj/item/storage/belt/utility, -/turf/open/floor/plating{ - burnt = 1 - }, -/area/awaymission/undergroundoutpost45/crew_quarters) -"ZF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - broken = 1 - }, -/area/awaymission/undergroundoutpost45/central) -"ZI" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, +"ZW" = ( +/obj/machinery/suit_storage_unit/mining, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/crew_quarters) -"ZJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera/directional/east{ - c_tag = "Arrivals"; - network = list("uo45") +/area/awaymission/undergroundoutpost45/mining) +"ZX" = ( +/obj/machinery/atmospherics/components/trinary/mixer/airmix{ + dir = 1 }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) -"ZK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/effect/turf_decal/tile/blue{ dir = 4 }, -/turf/open/floor/plating{ - broken = 1 +/turf/open/floor/iron/cafeteria, +/area/awaymission/undergroundoutpost45/engineering) +"ZY" = ( +/obj/machinery/light{ + dir = 1 }, -/area/awaymission/undergroundoutpost45/research) -"ZL" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/radio/off, -/obj/item/screwdriver{ - pixel_y = 10 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/obj/structure/sign/poster/official/safety_report{ - pixel_y = -32 +/obj/machinery/airalarm/all_access{ + pixel_y = 23; + dir = 1 }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/awaymission/undergroundoutpost45/engineering) +"ZZ" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, /turf/open/floor/iron, -/area/awaymission/undergroundoutpost45/central) +/area/awaymission/undergroundoutpost45/gateway) (1,1,1) = {" aa @@ -29061,8 +29061,8 @@ ad ad ad ad -yj -ym +Tj +TV ad ad ad @@ -29318,9 +29318,9 @@ ad ad ad ad -yk -yw -yn +iF +dr +il ad ad ad @@ -29575,10 +29575,10 @@ ad ad ad ad -yt -yn -eJ -yz +OS +il +fh +Kz ad ad ad @@ -29767,14 +29767,14 @@ ad ad ad gv -gI -gI -gJ -gJ -is -iN -jg -jF +Jb +Jb +JZ +JZ +FC +ON +eY +ZZ gv gK gK @@ -29833,9 +29833,9 @@ ad ad ad ad -yn -eJ -yB +il +fh +Ao ad ad ad @@ -30024,19 +30024,19 @@ ad ad ad gv -gJ -Ud -Sz -Hq -it -iO -jh -jG +JZ +qX +DW +SV +HT +tQ +Lh +Xk gw -ky -lo -ma -mB +vy +gT +Rn +RM gK ad ad @@ -30091,12 +30091,12 @@ ad ad ad ad -eJ -eJ -yr +fh +fh +in ad -yA -yj +UA +Tj ad ad ad @@ -30281,19 +30281,19 @@ ad ad ad gv -gJ -Zk -hu -LS -iu -iP -ji -iP -ed -iP -lp -jI -mC +JZ +WD +aW +fl +Bm +Lb +BJ +Lb +cC +Lb +Py +SM +Xc gL ad ad @@ -30349,11 +30349,11 @@ ad ad ad ad -yC -eJ -yw -ym -yH +XJ +fh +dr +TV +IV ad ad ad @@ -30538,19 +30538,19 @@ ad ad ad gw -gJ -Wz -FM -Cg -iv -iQ -jj -jI +JZ +up +Jq +Od +Jp +Rj +eN +SM gv -kz -lq -jI -mD +ZM +Zj +SM +VD gL ad ad @@ -30600,17 +30600,17 @@ ad ad ad ad -yj -ym -yo -yu +Tj +TV +Ul +Ay ad ad ad -eJ -yn -eJ -yz +fh +il +fh +Kz ad ad ad @@ -30795,19 +30795,19 @@ ad ad ad gv -gJ -gI -gJ -gJ -it -iR -jk -jI +JZ +Jb +JZ +JZ +HT +As +Zr +SM gv gK -lr -iP -mE +Jd +Lb +LM gK ad ad @@ -30856,17 +30856,17 @@ ad ad ad ad -yj -yk -yn -yp -yo +Tj +iF +il +WZ +Ul ad ad ad -gf -eJ -yq +WE +fh +Cu ad ad ad @@ -31053,18 +31053,18 @@ ad ad gv gv -gU -gU -gU -gU -iS -jl +NI +NI +NI +NI +im +NR gv gv -kA -ls -mb -mF +NE +UI +ds +Nw gv ad ad @@ -31114,16 +31114,16 @@ ad ad ad ad -yl -eJ -yq -ym +yN +fh +Cu +TV ad ad -yz -eJ -eJ -yz +Kz +fh +fh +Kz ad ad ad @@ -31310,20 +31310,20 @@ ad ad ad gK -gV -hw -ib -ib -iT -jm +Om +NU +ug +ug +KV +SW gK -AL -kB -lt -mb -mG +zN +OL +PM +ds +Xf gw -eJ +fh ad ad ad @@ -31372,21 +31372,21 @@ ad ad ad ad -eJ -eJ -eJ -yn +fh +fh +fh +il ad -yD -eJ -eJ +Ed +fh +fh ad ad ad ad ad -yj -yn +Tj +il ad ad ad @@ -31567,21 +31567,21 @@ ad ad ad gL -gW -hx -ic -iw -iU -jn +Ip +BL +Zp +RJ +zm +Pe gL -AL -kC -ls -mc -mH +zN +TH +UI +TK +PO gw -eJ -eJ +fh +fh ad ad ad @@ -31630,20 +31630,20 @@ ad ad ad ad -yr -yn -yn -yn -yn -eJ -eJ +in +il +il +il +il +fh +fh ad ad ad ad -yp -ym -yA +WZ +TV +UA ad ad ad @@ -31829,16 +31829,16 @@ gL gL gK iV -jo +LD gL gL iV -kl +Kl gK gw gv -eJ -gf +fh +WE ad ad ad @@ -31889,18 +31889,18 @@ ad ad ad ad -yn -eJ -eJ -eJ -eJ -yC -yz -yr -gf -yq -eJ -yo +il +fh +fh +fh +fh +XJ +Kz +in +WE +Cu +fh +Ul ad ad ad @@ -32082,21 +32082,21 @@ ad ad ad gL -Tl -id +Wf +Xw gK -iW -jp -jJ -kf -kD -lv -md -gU -eJ -eJ -eJ -eJ +Bt +Mv +ZC +Zu +un +FE +yS +NI +fh +fh +fh +fh ad ad ad @@ -32146,18 +32146,18 @@ ad ad ad ad -yz -eJ -eJ -eJ -yn -eJ -eJ -eJ -eJ -eJ -yo -yu +Kz +fh +fh +fh +il +fh +fh +fh +fh +fh +Ul +Ay ad ad ad @@ -32339,21 +32339,21 @@ ad ad ad gK -hz -ie -ix -iX -jq -jK -kg -kE -lw -me -gU -eJ -eJ -eJ -eJ +zF +IM +Aw +PH +QQ +Du +zz +kt +MK +NK +NI +fh +fh +fh +fh ad ad ad @@ -32403,15 +32403,15 @@ ad ad ad ad -yp -yq -eJ -yn -yn -ym -eJ -yn -yn +WZ +Cu +fh +il +il +TV +fh +il +il ad ad ad @@ -32596,21 +32596,21 @@ ad ad ad gL -hA -if +wm +IU gv gv gw gw gv -kF -lx +ND +Mj gw gv -mI -eJ -eJ -eJ +Hn +fh +fh +fh ad ad ad @@ -32660,15 +32660,15 @@ ad ad ad ad -yA -yn -eJ -yn +UA +il +fh +il ad ad -yw -yj -yk +dr +Tj +iF ad ad ad @@ -32856,18 +32856,18 @@ gL gv gv gv -gf -eJ -eJ +WE +fh +fh gv -kG -ly +qf +EN gw -eJ -eJ -eJ -eJ -gf +fh +fh +fh +fh +WE ad ad ad @@ -32918,8 +32918,8 @@ ad ad ad ad -yn -eJ +il +fh ad ad ad @@ -33111,20 +33111,20 @@ ad ad ad ad -eJ -eJ -eJ -eJ -eJ -gU -kH -ly -gU -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +NI +ZU +EN +NI +fh +fh +fh +fh +fh ad ad ad @@ -33165,8 +33165,8 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -33176,7 +33176,7 @@ ad ad ad ad -yz +Kz ad ad ad @@ -33367,22 +33367,22 @@ ad ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ -gU -kI -lz -gU -eJ -eJ -eJ -eJ -eJ -gf +fh +fh +fh +fh +fh +fh +NI +No +Zy +NI +fh +fh +fh +fh +fh +WE ad ad ad @@ -33423,8 +33423,8 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -33433,7 +33433,7 @@ ad ad ad ad -eJ +fh ad ad ad @@ -33624,23 +33624,23 @@ ad ad ad ad -gf -eJ -gf -eJ -eJ -eJ -gU -kH -ly -gU -eJ -eJ -eJ -eJ -eJ -eJ -eJ +WE +fh +WE +fh +fh +fh +NI +ZU +EN +NI +fh +fh +fh +fh +fh +fh +fh ad ad ad @@ -33681,16 +33681,16 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -33882,22 +33882,22 @@ ad ad ad ad -eJ -eJ -eJ -eJ -jL +fh +fh +fh +fh +Rr gw -kJ -lA +Ie +DS gw -mI -eJ -eJ -eJ -eJ -eJ -eJ +Hn +fh +fh +fh +fh +fh +fh ad ad ad @@ -33939,14 +33939,14 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad ad ad -eJ +fh ad ad ad @@ -34139,22 +34139,22 @@ ad ad ad ad -eJ -eJ -eJ -eJ -eJ -gU -kH -ly -gU -eJ -eJ -gf -eJ -eJ -gf -eJ +fh +fh +fh +fh +fh +NI +ZU +EN +NI +fh +fh +WE +fh +fh +WE +fh ad ad ad @@ -34196,14 +34196,14 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad ad ad -eJ +fh ad ad ad @@ -34395,23 +34395,23 @@ ad ad ad ad -eJ -gf -eJ -eJ -eJ -eJ -gU -kK -lB -gU -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +WE +fh +fh +fh +fh +NI +Bk +Rq +NI +fh +fh +fh +fh +fh +fh +fh ad ad ad @@ -34454,13 +34454,13 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -34652,22 +34652,22 @@ ad ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ -gU -kG -ly -gU -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +NI +qf +EN +NI +fh +fh +fh +fh +fh +fh ad ad ad @@ -34712,11 +34712,11 @@ ad ad ad ad -eJ -eJ +fh +fh ad -eJ -eJ +fh +fh ad ad ad @@ -34910,20 +34910,20 @@ ad ad ad ad -eJ -eJ -eJ -eJ -gf +fh +fh +fh +fh +WE gw -kH -lC +ZU +FY gv -eJ -gf -eJ -eJ -gf +fh +WE +fh +fh +WE ad ad ad @@ -34970,9 +34970,9 @@ ad ad ad ad -eJ +fh ad -eJ +fh ad ad ad @@ -35168,16 +35168,16 @@ ad ad ad ad -eJ -gf -eJ +fh +WE +fh gz gw -kL -lD +Vg +SZ gv hc -eJ +fh ad gz hc @@ -35227,9 +35227,9 @@ ad ad ad ad -eJ -eJ -eJ +fh +fh +fh ad ad ad @@ -35429,25 +35429,25 @@ gz hc gz gz -kh -kM -lE -mf +dN +Th +zG +MV mJ mJ nM nM -pb -pG -Nd -qO -bp -qO -tg +nx +RT +cO +Bs +zX +Bs +jw tK -us -uK -vh +Uv +BC +Dh gy ad ad @@ -35484,8 +35484,8 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -35679,32 +35679,32 @@ ad ad ad gx -gX -hB -ig -iy -iY -jr -jM -ki -kN -lF -mg -mK -nj -nN -oR -KO +ys +Vs +Xy +Xs +HL +Gp +aA +jU +Hh +CU +OJ +RN +nt +Rc +wS +KD pH qg pH qg qg -th -tL -ut -uL -vi +ey +Vp +Zx +Tz +CP gx ad ad @@ -35741,8 +35741,8 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -35936,16 +35936,16 @@ ad ad ad gy -gY -hC -ih -iz -iZ -js -jN -BA -kO -lG +YG +HR +Hg +QX +dL +OK +EW +oK +ID +Ld gy gz gz @@ -35957,11 +35957,11 @@ KE qP qh gz -Ce +al tM -uu -uM -vj +Uz +pO +Cf gx ad ad @@ -35998,7 +35998,7 @@ ad ad ad ad -eJ +fh ad ad ad @@ -36193,28 +36193,28 @@ ad ad gx gy -gZ -hD -ii -iA -ha -gX -jO -kk -kP -lH +Oq +YK +PJ +JU +Dm +ys +QW +wH +NB +uQ gy -kd -nk -nO -ox -pd +CO +Ac +Gq +AV +uN gy qi qQ rz gz -KJ +Au tN gy gy @@ -36255,7 +36255,7 @@ ad ad ad ad -eJ +fh ad ad ad @@ -36449,29 +36449,29 @@ ad ad ad gx -gM -ha -hE -hE -iB +Rg +Dm +Hi +Hi +IP gz gz gz gz -kQ -lI +Ph +Yv gy -mM -nl -nl -nl -pe +FL +Cl +Cl +Cl +Oj gy -qj -qR -rA +Gn +zy +IA gz -nu +YR tN uv ad @@ -36511,8 +36511,8 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -36706,29 +36706,29 @@ ad ad ad gy -gN -gX -hF -ij -iC +Qs +ys +Lo +Vj +ZV hc -eJ -eJ +fh +fh gz -kR -lJ -mh -mN -nm -nP -oy -mP -pI -qk -qS -rB +PK +Tq +KF +fs +Ey +Rf +Ks +hM +Mz +du +kq +EX hc -nu +YR tM gy ad @@ -36767,8 +36767,8 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -36964,29 +36964,29 @@ ad ad gz gz -hb -hG -ik -iD +IL +fj +SU +Tr hc -eJ -eJ -hH -kS -lK -mi -mO -nn -nQ -oz -pf +fh +fh +Yy +bl +Fz +zL +YD +LR +Ww +ck +hy gy -ql -qT -rC +Nq +ph +Xr hc -tj -tO +tl +NS gy ad ad @@ -37024,8 +37024,8 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -37034,8 +37034,8 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -37222,28 +37222,28 @@ ad ad gz hc -hH -hH +Yy +Yy hc gz -eJ -eJ -hH -kR -lL -mj -mP -mP -nR -oA -pg +fh +fh +Yy +PK +Qy +JF +hM +hM +RZ +Bc +DP gy gx gz gz gz -tk -tP +zM +DN gy ad ad @@ -37281,18 +37281,18 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad ad ad -eJ -gf -eJ -eJ -eJ +fh +WE +fh +fh +fh ad ad ad @@ -37477,30 +37477,30 @@ ad ad ad ad -eJ -hd -eJ -eJ -eJ -eJ -eJ -eJ -hH -kR -lM -mj -mQ -mP -nS -oB -oA -pJ -qm +fh +bc +fh +fh +fh +fh +fh +fh +Yy +PK +PS +JF +Sb +hM +SA +Uu +Bc +Cp +uY hc -QG -st -ZK -tP +Mo +Rb +OB +DN gy ad ad @@ -37538,18 +37538,18 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad ad ad -eJ -eJ -eJ -eJ -gf +fh +fh +fh +fh +WE ad ad ad @@ -37733,18 +37733,18 @@ ad ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -jP +fh +fh +fh +fh +fh +fh +fh +fh +QE gz -kT -lN +IB +FO gx gy gx @@ -37752,12 +37752,12 @@ gx gx gy gy -qn +SQ hc -rE -su -tm -ZA +Kt +Cv +Mu +Qr gx ad ad @@ -37795,18 +37795,18 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh ad ad ad @@ -37990,31 +37990,31 @@ ad ad ad ad -eJ -eJ -eJ -gf -eJ -eJ -eJ -eJ -eJ -hH -kR -lM -hH -BB -Kr -VK -Vn -Mf +fh +fh +fh +WE +fh +fh +fh +fh +fh +Yy +PK +PS +Yy +OU +Ds +QF +wY +nf gy gy gz -rF +IW gz tn -tP +DN gx ad ad @@ -38053,17 +38053,17 @@ ad ad ad ad -eJ +fh ad ad ad ad -gf -eJ -eJ -eJ -eJ -eJ +WE +fh +fh +fh +fh +fh ad ad ad @@ -38247,31 +38247,31 @@ ad ad ad ad -gf -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -hH -kU -lM -hH -Qp -np -nU -oD -Eb +WE +fh +fh +fh +fh +fh +fh +fh +fh +Yy +HW +PS +Yy +WY +WX +ZR +Xo +GC pK -qo -qU -rG -sv +mS +Zn +Ho +Nb tn -tP +DN gz ad ad @@ -38310,17 +38310,17 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh ad ad ad @@ -38503,34 +38503,34 @@ ad ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -gf -eJ -hH -kV -lM -hH -zR -DX -Ev -Ev -Gh +fh +fh +fh +fh +fh +fh +fh +fh +WE +fh +Yy +Ag +PS +Yy +TL +IR +zJ +zJ +hi pL -qp -qV -rH -sw +ZN +YF +Qx +zu to -tR +Uc gz -eJ +fh ad ad ad @@ -38568,15 +38568,15 @@ ad ad ad ad -eJ +fh ad ad ad ad -eJ -eJ -eJ -eJ +fh +fh +fh +fh ad ad ad @@ -38760,36 +38760,36 @@ ad ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ -gf -eJ -eJ +fh +fh +fh +fh +fh +fh +WE +fh +fh gz gz -kW -lM -hH -hH -hH -hH -oE -hH +TR +PS +Yy +Yy +Yy +Yy +be +Yy gx -qq -ha -kP -sx +wR +Dm +NB +bF tn -tP +DN hc -eJ -eJ -eJ +fh +fh +fh ad ad ad @@ -38825,15 +38825,15 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad -gf -eJ -eJ -gf +WE +fh +fh +WE ad ad ad @@ -39002,13 +39002,13 @@ aD aC aC aC -cu -cD -cW -Rt -cq -cq -ee +li +Fp +Za +Fs +Ko +Ko +SS aC ad ad @@ -39018,36 +39018,36 @@ ad ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh gz -gn -kV -ha -mk -mk -mk -mk -mk -mk -pM -ha -ha -rI -sy +Dy +Ag +Dm +Yh +Yh +Yh +Yh +Yh +Yh +Qk +Dm +Dm +Ib +MW tn -UF +CH hc hc hc -vH -eJ +VA +fh ad ad ad @@ -39083,14 +39083,14 @@ ad ad ad ad -eJ +fh ad ad ad ad -eJ -eJ -eJ +fh +fh +fh ad ad ad @@ -39253,19 +39253,19 @@ ad ad ad aC -bq -bq -bq -rm -bY +zd +zd +zd +Na +JT aC -rm -bY -cX -cm +Na +JT +pN +CV ae ae -ef +XX ae an an @@ -39275,36 +39275,36 @@ aC aC ad ad -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh gz -iL -Qb -Qb -Qb -mU -nr -mU -mU -kV -jO -qr -qW -rJ -sz +lS +JJ +JJ +JJ +AU +TA +AU +AU +Ag +QW +aV +JL +yF +XL tp -Jm +BW gy -yG -hH -eu -eJ +Qd +Yy +Gr +fh ad ad ad @@ -39337,18 +39337,18 @@ ad ad ad ad -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh ad ad ad ad -eJ -eJ -eJ +fh +fh +fh ad ad ad @@ -39510,41 +39510,41 @@ ad ad aC aC -br +RB aC aC aC -FR +AE aC -cv -cE -cW -pn +sQ +hk +Za +CR ae -GS -El -MT -Uo -Ap +Ne +XS +Oz +HK +RI fo -fA -fQ +Nr +Cd aC ad ad -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh ad gz gz -kY -kY -kY +DE +DE +DE gz hc hc @@ -39556,13 +39556,13 @@ gz gz gz tq -tU -uw -DR -vk -eu -eJ -eJ +IX +Rh +Wv +hZ +Gr +fh +fh ad ad ad @@ -39593,19 +39593,19 @@ ad ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh ad ad -eJ -eJ -gf +fh +fh +WE ad ad ad @@ -39766,61 +39766,61 @@ ad ad ad aC -bi -bs -by -bI +dE +yO +Qg +bb bO -ca +Rm cp cp -Ff -cY -cf +Hp +Kx +FG dv -Wk -eh -bL -bL -ZL +Vd +nT +Lx +Lx +Iw fm -fB -fR +WA +uy aC ad ad -eJ -eJ -eJ -eJ -eJ -eJ -gf +fh +fh +fh +fh +fh +fh +WE ad ad gz gz -lO +CQ gz gz -ns -nN -nj -UX -nN -nN -xb -UX -nN -tr -tV +jT +Rc +nt +zA +Rc +Rc +RK +zA +Rc +XD +NO ux -uP -hH -eu -eJ -eJ -eJ +MH +Yy +Gr +fh +fh +fh ad ad ad @@ -39849,21 +39849,21 @@ ad ad ad ad -eJ -eJ -eJ -gf +fh +fh +fh +WE ad ad ad ad -eJ +fh ad ad ad -eJ -eJ -eJ +fh +fh +fh ad ad ad @@ -40023,44 +40023,44 @@ ad ad ad aC -bj -bt +Td +Vk aC aC bP -cb -cq -ct -uh -cq -dk +Kk +Ko +Kj +Ba +Ko +lj an -VJ -Bv -YX -OC -BR +NC +Qn +EC +Qi +qI an -fC -fS +SN +sp aC ad -gf -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +WE +fh +fh +fh +fh +fh +fh +fh +fh ad gy -kZ -ha -ml +zb +Dm +FU gx -Ce +al nW mJ mJ @@ -40074,10 +40074,10 @@ tW hc hc hc -eJ -eJ -eJ -eJ +fh +fh +fh +fh ad ad ad @@ -40104,23 +40104,23 @@ ad ad ad ad -eJ -eJ -eJ -eJ +fh +fh +fh +fh ad ad ad ad ad ad -eJ -eJ +fh +fh ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -40280,62 +40280,62 @@ aC ad ad aC -bi -bu -bz -bJ +dE +Pb +Va +Ts bQ -cc +XW aC aC aC ae -br +RB an -dR -aP -ex -eM -aP +MP +qE +MN +Pl +qE ae -fD +CT aC aC ad -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh +fh ad gx -la -ha -mm +XG +Dm +Kg gy -nu +YR nX -eJ -eJ -gf -eJ -eJ -eJ +fh +fh +WE +fh +fh +fh ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh ad ad ad @@ -40360,10 +40360,10 @@ ad ad ad ad -gf -eJ -eJ -gf +WE +fh +fh +WE ad ad ad @@ -40372,12 +40372,12 @@ ad ad ad ad -eJ +fh ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -40531,68 +40531,68 @@ ad ad ad aC -au -aK +Gs +JC aC -aP -aP +qE +qE aC aC -bv +WG aC aC bQ -cd +aB cr -cw -cH +nF +BZ ae -aF -dw -aS -ej -IF -IF -eZ -bA -fE -fT +Eo +ZT +Or +Nv +CB +CB +wJ +TX +SI +Qh aC ad ad -eJ -eJ -he -eJ -eJ -eJ -eJ -gf +fh +fh +HB +fh +fh +fh +fh +WE ad gy -lb -ha -mn +Gw +Dm +yV gy -nu +YR nY -eJ -eJ -eJ -eJ -eJ -eJ -gf -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -gf -eJ +fh +fh +fh +fh +fh +fh +WE +fh +fh +fh +fh +fh +fh +fh +fh +WE +fh ad ad ad @@ -40629,12 +40629,12 @@ ad ad ad ad -eJ +fh ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -40788,67 +40788,67 @@ ae ae ae ae -aS -aS -aN -ax -ax -ax -bk -aS -bA -aF +Or +Or +Zv +cF +cF +cF +GN +Or +TX +Eo bP -pn +CR aC -cx -cI -cZ -dl -dx -aS -aS -aS -aS -aS -aS -fE -aS +PW +IN +bn +zv +Pc +Or +Or +Or +Or +Or +Or +SI +Or aC fO -gr -gr -gr +Xe +Xe +Xe gg -gr -gr -gr +Xe +Xe +Xe gg gg fK gy gy -lO +CQ gy gx -nv +Jy nY -gr -gr -gr -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +Xe +Xe +Xe +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh ad ad ad @@ -40886,17 +40886,17 @@ ad ad ad ad -eJ -eJ +fh +fh ad -eJ -eJ -eJ +fh +fh +fh ad ad ad ad -eJ +fh ad ad ad @@ -41045,67 +41045,67 @@ ag ag af an -aS -aS -aO -ax -Fm -Wn -Nc -ZJ -bB -bK +Or +Or +BM +cF +SG +OM +Pi +rr +Cy +HZ bR -cf +FG cp -aU -cJ +YE +Gm ae -aF -dy -dS -Nj -OZ -TB -LZ -fp -bS -aS -da -gA -gs -gA -gs -hf -gs -gs -iE -ja -jt -ng -kn -lc -OX -mo -mV -Lg -Vt -VN -QZ -gr -gr -eJ -gf -eJ -eJ -eJ -gf -eJ -eJ -eJ -eJ -eJ -gf +Eo +DC +jc +Ec +sS +YQ +hN +IT +MY +Or +Et +FV +cn +FV +cn +hK +cn +cn +Sv +aX +gQ +Nm +VM +iI +PL +Im +EY +tT +Cm +yv +Xz +Xe +Xe +fh +WE +fh +fh +fh +WE +fh +fh +fh +fh +fh +WE ad ad ad @@ -41144,16 +41144,16 @@ ad ad ad ad -eJ +fh ad -eJ +fh ad -eJ +fh ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -41297,72 +41297,72 @@ ad ad ae ag -aj -fg -aq +BS +JB +Cn ag an -aF -aS -aP -At -At -YA -wU +Eo +Or +qE +XA +XA +VE +OQ aC -yP -aS +zk +Or bQ -cg +Ha ae ae ae ae -aS -aS -AA -el -el -el -el -RW -fF -bL -ge -gl -gt -gA -gs -hg -gA -gA -gA -gA -ju -gs -gs -ld -lQ -gl -mW -Iu -oa -ld -pm -Pz -gr -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +Or +Or +Cb +Hu +Hu +Hu +Hu +lT +nd +Lx +AM +LK +Hs +FV +cn +Ll +FV +FV +FV +FV +QA +cn +cn +Hw +Vi +LK +BY +OH +Yr +Hw +vr +EP +Xe +fh +fh +fh +fh +fh +fh +fh +fh +fh ad ad -eJ +fh ad ad ad @@ -41401,15 +41401,15 @@ ad ad ad ad -eJ -eJ -eJ +fh +fh +fh ad -eJ +fh ad ad -eJ -eJ +fh +fh ad ad ad @@ -41554,72 +41554,72 @@ ad ad ae ag -ac -ao -bY -as -at -aS -aS -aP -QU -LF -Ci -Rs +yE +Bd +JT +Io +Di +Or +Or +qE +Fi +lU +Az +DD aC -Hr -bL -bS -ch -cs -aI -aS -da -aS -aS -AA -el -eA -eB -el -RW -fE -fU +pc +Lx +MY +wZ +hO +Hv +Or +Et +Or +Or +Cb +Hu +Ef +ai +Hu +lT +SI +VP ae fK -gr -gr -gr +Xe +Xe +Xe fK -gr -gr -gr +Xe +Xe +Xe gg gg -jR -gs -ld -gA -mp +zP +cn +Hw +FV +Ya fN -ny -Gd -ld -gs -Ss -gr -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +Ob +VL +Hw +cn +DL +Xe +fh +fh +fh +fh +fh +fh +fh +fh +fh ad ad -eJ +fh ad ad ad @@ -41662,10 +41662,10 @@ ad ad ad ad -eJ +fh ad ad -eJ +fh ad ad ad @@ -41811,72 +41811,72 @@ ad ad ae ag -rm -rm -ar -as -at -aS -aF -aP -AO -Xv -Ci -ZB +Na +Na +Mc +Io +Di +Or +Eo +qE +QS +yL +Az +ti aC -Nk -bM -bT -ci -aS -aS -aS -da -aS -aS -AA -el -eB -eO -el -RW -fE -fV +QP +eL +Bx +Gz +Or +Or +Or +Et +Or +Or +Cb +Hu +ai +ei +Hu +lT +SI +WQ ae -eJ -eJ -eJ -eJ -hh -eJ -eJ -eJ -gf +fh +fh +fh +fh +XU +fh +fh +fh +WE gg gg -ko -le -lR -mq +Hb +QI +wx +Gb fN -nz -BE -oG -LJ -MS -gr -eJ -eJ -gf -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +Dr +Jf +Ni +gp +Bg +Xe +fh +fh +WE +fh +fh +fh +fh +fh +fh +fh +fh +fh ad ad ad @@ -41919,10 +41919,10 @@ ad ad ad ad -eJ +fh ad -eJ -eJ +fh +fh ad ad ad @@ -42068,72 +42068,72 @@ ad ad ae ag -rm -ap -fu +Na +FX +aE ag ae -aG -aF -aP -Hy -HS -Ci -wU +Tb +Eo +qE +xc +Qw +Az +OQ aC -Cx -aF +Ez +Eo bP -cg +Ha aC aC aC aC -dm -aS -Zl -el -el -el -el -RW -fE -aF -aP -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +Gf +Or +Pw +Hu +Hu +Hu +Hu +lT +SI +Eo +qE +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh fK -gs -lf +cn +Bq fO fO fO fO -MM -oH +UE +dI fO fN fK gg gg -eJ -eJ -eJ -eJ -gf -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +WE +fh +fh +fh +fh +fh ad ad ad @@ -42176,9 +42176,9 @@ ad ad ad ad -eJ +fh ad -eJ +fh ad ad ad @@ -42330,67 +42330,67 @@ ag ag af an -aH -aS -aQ -Jw -Jw -HJ -jQ -jQ -bG -bN +UU +Or +Qc +FK +FK +Su +bE +bE +Bz +Mm bP -cj +dH cr -aZ -cK +XP +Xl aC -dn -dz -dV -HH -Gy -Gy -Jw -fr -fG -fW -aP -eJ -eJ -eJ -gf -eJ -eJ -gf -eJ -eJ -eJ -gr -gA -gs +hY +AQ +IY +Mg +BT +BT +FK +jz +tz +rK +qE +fh +fh +fh +WE +fh +fh +WE +fh +fh +fh +Xe +FV +cn fN -mr -mX +WU +UK nA -oe -oI -po -pQ -qs -qY +Te +Zt +JV +Ol +Pf +dP gg -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh ad ad -eJ -eJ -eJ +fh +fh +fh ad ad ad @@ -42428,14 +42428,14 @@ ad ad ad ad -eJ +fh ad ad ad ad -eJ -eJ -eJ +fh +fh +fh ad ad ad @@ -42587,68 +42587,68 @@ ae ae ae ae -aI -aS -aR -aS -aS -aS -aS -bx -bH -aS +Hv +Or +mR +Or +Or +Or +Or +TG +hl +Or bQ -Lk +Ih aC -cA -cI -db -bM -dA -dW -en -en -en -en -en -fH -fX -aP -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -gr -gs -gs +RY +IN +Fa +eL +BN +Ms +CN +CN +CN +CN +CN +NN +Gc +qE +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +Xe +cn +cn fO -ms -mY -nB -of -oJ +Up +em +Af +Bp +Zm fO -pR -qt -mt +Ja +WL +UZ gg -eJ -eJ -eJ -eJ +fh +fh +fh +fh ad ad ad -eJ -eJ -eJ -eJ +fh +fh +fh +fh ad ad ad @@ -42684,14 +42684,14 @@ ad ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh ad ad ad @@ -42844,68 +42844,68 @@ ad ad ad aC -aJ -aM +PB +Oh aC -aP -aP -aP -aP +qE +qE +qE +qE aC aC aD bU -EB +Ow co -cB -cL +sf +Vy aC -do -Ql -LW -Ql -Ql -eP -fb -TY -fI -fY +oC +ER +ZO +ER +ER +BH +dT +Nx +Dk +Bu an -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh gg -gs -lg +cn +lm fO -mt -km +UZ +LP fO -og -Li +SF +zl pp pS fO fO gg ad -eJ -eJ -eJ -eJ +fh +fh +fh +fh ad -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh ad ad ad @@ -42947,8 +42947,8 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -43112,64 +43112,64 @@ ad ad ad bP -cm +CV aC aC aC aC aC -aP -dY -eo -aP -Aa -QV +qE +Ki +VY +qE +wz +CM ae ae an an -eJ -eJ -eJ -gf +fh +fh +fh +WE gg -gr -gr -gr +Xe +Xe +Xe fK gg gg -kp -kp +Cj +Cj fN fN fO fN -KI -oL +oF +Je fN -pT -qu -mu +II +KB +Uq fO ad -eJ -eJ -eJ -eJ -gf -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -gf -eJ -eJ -eJ +fh +fh +fh +fh +WE +fh +fh +fh +fh +fh +fh +fh +fh +WE +fh +fh +fh ad ad ad @@ -43204,8 +43204,8 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -43369,66 +43369,66 @@ ad ad ad bP -ZF -ct -uh -ct -dc +Lv +Kj +Ba +Kj +Mr aD bd -dZ -aS -aP -eQ -fd +uO +Or +qE +wy +yW ae ad ad -gf -eJ -eJ -eJ +WE +fh +fh +fh gg gg -Kp -Be -We -Iy -Sq -Ln -KA -KA +Qo +Yb +fv +Xg +EQ +Md +Ig +Ig fN -mu -na +Uq +Yj nA -oi -oI -pq -pU -qv -qZ +Zd +Zt +GG +Np +DY +dF fN ad ad -gf -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -gf -eJ -eJ -eJ +WE +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +WE +fh +fh +fh ad ad ad @@ -43456,12 +43456,12 @@ ad ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh ad ad ad @@ -43629,38 +43629,38 @@ bV co cp cp -cM -cm +nc +CV aD -YL -ea -aS -aS -eR -BP +OG +vo +Or +Or +Tm +Wi ae -eJ -eJ -eJ -eJ -eJ -gB +fh +fh +fh +fh +fh +RL gg -JH -BO -Il -BO -KA -Ox -Fn -KA -Iv +am +SB +Ot +SB +Ig +PV +sb +Ig +eT fO -mv -mY -nC -of -oM +MR +em +BU +Bp +IS fO fN fO @@ -43669,24 +43669,24 @@ fO fO fK gg -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh ad ad ad @@ -43715,10 +43715,10 @@ ad ad ad ad -eJ -eJ -eJ -eJ +fh +fh +fh +fh ad ad ad @@ -43886,49 +43886,49 @@ ad ad ad ae -cN -UB +Jz +Fu dp -GF -bM -ep -aS -aS -Rw -aP -eJ -eJ -eJ -eJ -eJ -eJ -gr -TJ -KA -KA -KA -Iv -KA -BO -KA -KA +TU +eL +FI +Or +Or +GM +qE +fh +fh +fh +fh +fh +fh +Xe +Ei +Ig +Ig +Ig +eT +Ig +SB +Ig +Ig fO -ev -nb +Dv +So fO -oj -za +To +LC fO -pV +TC fO -ra +gR fN -sA -ts +WO +Ab gg gg -eJ -eJ +fh +fh vI vI vI @@ -43936,15 +43936,15 @@ vI vJ vI vI -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh +fh ad ad ad @@ -43975,7 +43975,7 @@ ad ad ad ad -eJ +fh ad ad ad @@ -44143,67 +44143,67 @@ ad ad ad ae -cN +Jz de aC -YY -eb -eb -eb -eb -Rw -aP -eJ -eJ -gf -eJ -eJ -eJ -gr -Xx -De -Lz -Lz -De -Iv -TI -ET -Nt +UW +Kv +Kv +Kv +Kv +GM +qE +fh +fh +WE +fh +fh +fh +Xe +LU +Ck +ez +ez +Ck +eT +BK +Ct +VV fO fN fN fO -QC -oO +Lf +NV fN -pW +qK fO -rb +Zc fN -sB -pX -tX +EU +OY +Ek gg -eJ -vl +fh +zp vJ -wb -rs +Wd +Fk vK -wM -wb +RA +Wd vI ad ad -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh +fh ad ad ad @@ -44231,8 +44231,8 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -44400,70 +44400,70 @@ ad ad ad ae -cN +Jz de -YH -Sw -aF -aS -aS -eS -Rw -aP -eJ -eJ -eJ -eJ -eJ -eJ -gr -EK -Rv -EK -Ly -EK -EK -De -Iv -Si -Aj +bw +jv +Eo +Or +Or +TW +GM +qE +fh +fh +fh +fh +fh +fh +Xe +Zq +Ue +Zq +Lu +Zq +Zq +Ck +eT +Zi +Nl fN -RP -Vb -ol -oP -pr -pX -qw -pX -rL -pX -pX -tY +AB +Fl +ZS +Zg +CC +OY +RS +OY +xf +OY +OY +rW gg -gr -vm +Xe +eK vJ -wc -wp +KU +zh vL -wp -wV +zh +kr vJ ad ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh ad ad ad @@ -44488,7 +44488,7 @@ ad ad ad ad -eJ +fh ad ad ad @@ -44497,7 +44497,7 @@ ad ad ad ad -eJ +fh ad ad ad @@ -44655,57 +44655,57 @@ ad ad ad ad -bX +Br an -cN +Jz de -Ej -Sm -eb -eb -eb -eb -BP -aP -eJ -eJ -eJ -eJ -eJ -eJ -gr -Kw -TF -KA -KA -KA -Rp -De -KA -Si -Jr +CE +jH +Kv +Kv +Kv +Kv +Wi +qE +fh +fh +fh +fh +fh +fh +Xe +Pd +IE +Ig +Ig +Ig +KM +Ck +Ig +Zi +KZ fO -WK -gA -om -oJ +lh +FV +wI +Zm fO -pY -qx -rc +Dq +Jx +Ii fO -sC -sC +Pq +Pq fN fN -LA -vn +JM +dK vK -wd -wq +XQ +FP vL -wN -si +RO +PZ vJ vJ vJ @@ -44714,13 +44714,13 @@ vI vI vJ vI -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh ad ad ad @@ -44744,8 +44744,8 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -44754,7 +44754,7 @@ ad ad ad ad -eJ +fh ad ad ad @@ -44911,41 +44911,41 @@ ad ad ad ad -bX -bW +Br +ob ae -cN +Jz df -Vz -Yq -aS -aS -aS -aS -Rl +IZ +Tu +Or +Or +Or +Or +By an -fJ -eJ -eJ -eJ -gf -eJ +VW +fh +fh +fh +WE +fh gg -Hc -LY -KA -KA -KA -VU -KA -Ux -Si -BO +FB +Uj +Ig +Ig +Ig +zx +Ig +Wh +Zi +SB fO -TM -nE -on -VO +tB +Ut +Yd +XM fO fN fN @@ -44954,31 +44954,31 @@ fO fN fN fN -ZE -uR -Ry +lk +RG +Al vL we -wr +IJ vL -wO +MO we vK -xl -xq -xw -xE -xl -xl +PP +tc +SD +St +PP +PP vJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -yh +fh +fh +fh +fh +fh +fh +fh +jV ad ad ad @@ -45000,8 +45000,8 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -45010,9 +45010,9 @@ ad ad ad ad -eJ -eJ -eJ +fh +fh +fh ad ad ad @@ -45167,75 +45167,75 @@ ad ad ad ad -bW -bX -bX +ob +Br +Br an -cN +Jz de -Uw -Sm -eb -eb -eb -eb -ME +Fy +jH +Kv +Kv +Kv +Kv +BD an an -eJ -eJ -eJ +fh +fh +fh ad ad fK -DJ -LY -zB -Iv -KQ -aw -KA -Fw -ZI -Ic +Qu +Uj +Eh +eT +zj +HF +Ig +Uk +Cz +YI fN -Ix -Gi -CK -CA -ps -Qz -qy -rd -GV -rd -rd -qy -rd -UO -vp -vM -wf -ws -wC -wt -wX +In +Lq +OA +YT +Vw +HP +aL +AK +My +AK +AK +aL +AK +ak +EI +fP +GT +Jh +bD +Tc +wA vK -xm -xr +QM +TN xx -xr +TN xM -xT +Wj vI vI vI vI -yg -eJ -eJ -eJ -yi +KS +fh +fh +fh +Ep ad ad ad @@ -45256,8 +45256,8 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -45268,7 +45268,7 @@ ad ad ad ad -eJ +fh ad ad ad @@ -45424,20 +45424,20 @@ ad ad ad ad -bX -bX -bX +Br +Br +Br an -dG +yJ df -WH -MU -aS -aS -aS -aS -La -ft +GE +Lc +Or +Or +Or +Or +MX +Um fK fK gg @@ -45446,19 +45446,19 @@ gg fK fK fO -DM +wG fN -YO +HY fO fO -Ze -Fw -Gt +Nu +Uk +ZH fO fO fO -nG -op +yZ +xd fO fO fN @@ -45468,36 +45468,36 @@ fN fN fO fO -uz +FD fO fN vK -wg -wt -wD -wP -sj +DG +Tc +YB +ku +et vL -xn -xs -xy -xF -xN -xU -ww -xZ -yc -ww -eu -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +Vx +Le +OV +KW +cR +ZP +zO +ba +fc +zO +Gr +fh +fh +fh +fh +fh +fh +fh +fh +fh ad ad ad @@ -45513,7 +45513,7 @@ ad ad ad ad -eJ +fh ad ad ad @@ -45524,8 +45524,8 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -45681,84 +45681,84 @@ ad ad ad ad -bX -bX -bX -aP -cP +Br +Br +Br +qE +HX df aC -UN -eb -eb -eb -eb -Em -fu -fL -fZ -gh -gm +Vl +Kv +Kv +Kv +Kv +HE +aE +DF +Dg +jA +nD fN -gC -gO -hp -hQ -ip -iJ -jd +yY +Qj +ho +LO +IK +Pu +WJ fO -YM -Zo -Ma -lV -mx -ng -nH -oq -oS -pt -ja -ja -re -rN -ng -tt -tZ -tZ -uT -Sg -vN -wh -wu -wE -wu -Gg -xg -xo -xo -wu -xG -wh -xV -xX -ya -yd +KY +no +yR +Qt +UC +Nm +EA +pk +NX +Kb +aX +aX +gk +eg +Nm +An +Xu +Xu +US +Dn +IH +VH +zK +BV +zK +di +xk +GU +GU +zK +XV +VH +Wp +ek +Wq +cG yf -eu -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +Gr +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh ad ad ad @@ -45767,22 +45767,22 @@ ad ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh ad ad ad ad -eJ +fh ad ad ad @@ -45939,108 +45939,108 @@ ad ad ad ad -bW -bX -aP -cQ -dg +ob +Br +qE +rV +Sx co -MC -ec -eq -eD -en -XN -PA -fM -fZ -fZ -fZ -gu -gD -gO -hq -hR -hr -iK -je -QL -VG -JD -DO -lW -my -my -nI -or -oT -my -my -my -rf -rO -sD -tu -ua -ua -ua -EL -vO -wi -wv -wF -wQ -Uy -xh -xp -xt -xz -xH -xP -xW -xY -yb -ye -ww -eu -eJ -eJ -eJ -eJ -eJ +gS +CJ +Pk +VQ +CN +ZG +UL +Tp +Dg +Dg +Dg +UG +Sc +Qj +zn +AW +QN +DU +Rx +WT +pi +KR +FQ +xj +KT +KT +KG +Dz +ow +KT +KT +KT +pZ +uf +kj +qF +PC +PC +PC +Jk +PR +RR +UT +Rz +iH +Ad +Ps +UM +DI +Lp +UP +TD +pl +TO +FT +RD +zO +Gr +fh +fh +fh +fh +fh ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh ad ad -eJ -eJ -gf +fh +fh +WE ad ad ad @@ -46196,109 +46196,109 @@ ad ad ad ad -bX -bX +Br +Br an -GH -cc +Wa +XW aC -Aa -Ql -Ql -Ql -Vo -CS -fw +wz +ER +ER +ER +oc +Pj +zr fN -ga -fZ -Hl +KP +Dg +Jg fO -gE -gO -hr -hS -iq -gO -gO +NL +Qj +QN +yQ +Zw +Qj +Qj jB -jY +XF fO fK gg gg -gr -gr -gr +Xe +Xe +Xe gg -gr -gr -gr +Xe +Xe +Xe fK -rP -sE +yT +zS gg -gr -gr -gr +Xe +Xe +Xe fK vI vI -ww -ww -ww +zO +zO +zO vI vI vJ -ww -xA -xI -ww +zO +Hz +Dc +zO vI vI vI vI vI -yg -eJ -eJ -eJ -eJ -eJ +KS +fh +fh +fh +fh +fh ad ad ad ad -eJ +fh ad -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh ad ad -eJ +fh ad ad ad ad -eJ -eJ -eJ -eJ -eJ -gf -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +WE +fh +fh +fh +fh ad ad ad @@ -46453,75 +46453,75 @@ ad ad ad ad -bX -bX +Br +Br an -cS -pn +Cw +CR aC -FH -ze -MQ -Ls -Gj +Pm +JE +Ym +cy +Kn aC -fx +XI fO fO -gi +Mk fO fO -gF -gO -gO -hT -gO -gO -gD +OF +Qj +Qj +AC +Qj +Qj +Sc jB -jZ -Js +CF +XZ ae -eJ -eJ -eJ -eJ -eJ -hh -eJ -eJ -eJ -gr -rQ -sF -gr -eJ -eJ -eJ -eJ -eJ -wj -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +XU +fh +fh +fh +Xe +Db +Rd +Xe +fh +fh +fh +fh +fh +GL +fh +fh +fh +fh ad vJ -xu -xB -xJ -xQ +ZW +OR +bC +Kc vI -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh ad ad ad @@ -46530,12 +46530,12 @@ ad ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh ad ad ad @@ -46548,14 +46548,14 @@ ad ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh ad ad ad @@ -46710,11 +46710,11 @@ ad ad ad ad -bW -bX +ob +Br an -cT -cc +He +XW aC aC aC @@ -46722,63 +46722,63 @@ aC aC aC aC -fy -bq -FR -bq -go +JK +zd +AE +zd +UQ fN -gG -gP -hs -hU -ir -dO -jf +Hm +NZ +zY +Of +Df +zU +Xp jC -ka -kw +Id +DK an -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -gr -rR -sG -gr -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh +fh +Xe +Oc +JS +Xe +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh ad vI -xu -xC -xK +ZW +Me +Nn xR vJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh ad ad ad @@ -46787,9 +46787,9 @@ ad ad ad ad -eJ -eJ -eJ +fh +fh +fh ad ad ad @@ -46806,14 +46806,14 @@ ad ad ad ad -gf -eJ -eJ -eJ -eJ -eJ -eJ -eJ +WE +fh +fh +fh +fh +fh +fh +fh ad ad ad @@ -46967,74 +46967,74 @@ ad ad ad ad -bX -bX +Br +Br ae -cU -dh -cq -tx -uh -ct -eF -ct -ct -VR -PQ -gb -gj -Zh +SO +CZ +Ko +PU +Ba +Kj +zW +Kj +Kj +Vr +CY +BX +ll +Oo fO fN fN fN -hV +az fO fN fO jC -Dw -kx +Xq +bg an -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -gr -rS -sF -gr -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh +fh +Xe +YV +Rd +Xe +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh vI -xv -xD -xL +Tv +SJ +zQ xS vI -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh +fh ad ad ad @@ -47045,9 +47045,9 @@ ad ad ad ad -eJ -eJ -eJ +fh +fh +fh ad ad ad @@ -47064,12 +47064,12 @@ ad ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh ad ad ad @@ -47233,63 +47233,63 @@ co co cp es -eG +GR cp fm fm fm gc -dh -gq -gb -gH -PQ -gb -hW -gH -Ty -gb -vq -kc +CZ +HC +BX +Ng +CY +BX +Av +Ng +Gl +BX +VF +Dl an an -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -gB +fh +fh +fh +fh +fh +fh +fh +fh +RL gg -rT -sH +Fo +Ge gg -ub -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +Is +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh vI vI vJ vI vJ vI -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh ad ad ad @@ -47303,9 +47303,9 @@ ad ad ad ad -eJ -eJ -eJ +fh +fh +fh ad ad ad @@ -47323,9 +47323,9 @@ ad ad ad ad -eJ -gf -eJ +fh +WE +fh ad ad ad @@ -47489,12 +47489,12 @@ ad ad ad ae -Ca -eH -eV +JQ +Es +Bl an -eJ -eJ +fh +fh gd fm fm @@ -47502,50 +47502,50 @@ fm dv dv fm -hX +AP fm fm fm jE an ae -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -gr -rQ -sF -gr -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +Xe +Db +Rd +Xe +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh ad ad ad @@ -47561,8 +47561,8 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -47580,7 +47580,7 @@ ad ad ad ad -eJ +fh ad ad ad @@ -47746,63 +47746,63 @@ ad ad ad ae -aP -eI -aP +qE +dJ +qE an -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -fn -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -qz -gr -rU -sI -gr -qz -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +zI +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +dU +Xe +Fj +Qm +Xe +dU +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh ad ad ad @@ -47819,8 +47819,8 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -47837,7 +47837,7 @@ ad ad ad ad -eJ +fh ad ad ad @@ -48003,61 +48003,61 @@ ad ad ad ad -eu -eu -eu -fn -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -qA -rg -Yo -Ta -rg -qB -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +Gr +Gr +Gr +zI +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +Wl +Da +JP +Lr +Da +zg +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh ad ad ad @@ -48076,9 +48076,9 @@ ad ad ad ad -eJ -eJ -eJ +fh +fh +fh ad ad ad @@ -48094,7 +48094,7 @@ ad ad ad ad -eJ +fh ad ad ad @@ -48261,54 +48261,54 @@ ad ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh +fh ad ad -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh +fh ad -eJ -eJ -eJ -eJ -eJ -pu -qa -qB +fh +fh +fh +fh +fh +Eu +Ex +zg fK -GB -FN +nV +EM fK -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh ad ad ad @@ -48334,8 +48334,8 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -48345,13 +48345,13 @@ ad ad ad ad -eJ +fh ad ad ad ad ad -eJ +fh ad ad ad @@ -48522,46 +48522,46 @@ ad ad ad ad -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh ad ad -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh ad ad ad -eJ -eJ -eJ -eJ -pv +fh +fh +fh +fh +Bb ni ni ln -rX -sL +ZQ +sJ ln ni ni -qb -qb +Mq +Mq ni ni -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh ad ad ad @@ -48592,8 +48592,8 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -48601,8 +48601,8 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -48782,42 +48782,42 @@ ad ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh ad ad ad -eJ -eJ -eJ -eJ -pv +fh +fh +fh +fh +Bb ni -qC -rh -rY -sM -tv +Pg +SP +DB +zD +JG uc -Ri -uU -vs -vP +PI +Oa +XO +ew ni ln -qb -qb -qb +Mq +Mq +Mq ln ln ad @@ -48849,16 +48849,16 @@ ad ad ad ad -eJ -eJ -eJ +fh +fh +fh ad ad ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -49041,41 +49041,41 @@ ad ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh ad -eJ -eJ -eJ -eJ -eJ -pv -qb -qD -ri -rZ -sM -tw +fh +fh +fh +fh +fh +Bb +Mq +DA +Bh +Ew +zD +jW ud -uB -uV -rj -vQ +UR +sK +dt +Ky uE -Jt -Ga -Hj -FZ -SL +nw +Vv +SC +eW +hJ ni ad ad @@ -49107,14 +49107,14 @@ ad ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh ad ad ad @@ -49299,40 +49299,40 @@ ad ad ad ad -eJ -eJ -eJ -eJ +fh +fh +fh +fh ad ad -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -pv -qb -qD -rj -sa -sN -Jj -ue -uC -uW -vt -vR -wk -zq -Cs -Mb -MJ -NY +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +Bb +Mq +DA +dt +xe +Wc +sd +KK +xO +Lt +ah +Ae +Er +Xj +Cq +Sf +Fb +MZ ni ad ad @@ -49364,8 +49364,8 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -49556,40 +49556,40 @@ ad ad ad ad -eJ -eJ -eJ +fh +fh +fh ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -pw +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +Xt ni ln -Kf -Yz -Pn -QJ +Tx +Pp +Jl +Qe ln -uD -sM -vu -vS -wl -Ft -zE -Fe -OE -WN +vW +zD +Xn +FS +Zf +Vq +wo +SE +Ws +dd ln ad ad @@ -49621,9 +49621,9 @@ ad ad ad ad -eJ -eJ -eJ +fh +fh +fh ad ad ad @@ -49813,39 +49813,39 @@ ad ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -pv -eJ +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +Bb +fh ni ni -sc -sP +Tg +Mh ln ln uE -uX -vv -vT -NG -Ve -Qq -TQ -Sd +ZY +Ns +FF +pP +MG +Jo +fk +VZ ln ln ad @@ -49879,8 +49879,8 @@ ad ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -50071,38 +50071,38 @@ ad ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh ad ad ad -eJ -eJ -pv -eJ +fh +fh +Bb +fh ni -Sh -YZ -Vf -GO -UD -qb -sM -vw -vU +hL +zC +Tn +Dt +YC +Mq +zD +NW +MA wn uE -wK +Ij uE -HO +hv ln ad ad @@ -50136,9 +50136,9 @@ ad ad ad ad -eJ -eJ -eJ +fh +fh +fh ad ad ad @@ -50331,11 +50331,11 @@ ad ad ad ad -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh ad ad ad @@ -50343,21 +50343,21 @@ ad ad ad ad -pv -eJ +Bb +fh ni -NQ -se -sR -tA -Vu -uF -sR -vx -vV +Vm +Xh +ty +YP +Am +aT +ty +OT +MD uE -wB -wL +QT +Os ln ln ni @@ -50388,15 +50388,15 @@ ad ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh ad -eJ -eJ +fh +fh ad ad ad @@ -50603,15 +50603,15 @@ ad px ad ln -NH -Vh -AG -AX -AR -qb -JY -LH -Qf +Yi +Uh +dM +EF +zV +Mq +HV +Mp +GZ ni ln ni @@ -50647,15 +50647,15 @@ ad ad ad ad -eJ -eJ -eJ -eJ +fh +fh +fh +fh ad ad -eJ -eJ -eJ +fh +fh +fh ad ad ad @@ -50861,13 +50861,13 @@ py ln ln ro -sg -sT -sT +dj +zH +zH ln ln uZ -vz +LN vX ni ad @@ -50907,17 +50907,17 @@ ad ad ad ad -eJ +fh ad ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh ad ad ad @@ -51111,21 +51111,21 @@ ln ln ln ln -nJ -os -oU -pz -qb -RX -rp -sh -sU -tC -ui +Hk +NF +GW +UJ +Mq +JN +KH +RQ +Pa +WS +kv ln -va -vA -vY +yM +UY +XR ln ad ad @@ -51164,7 +51164,7 @@ ad ad ad ad -eJ +fh ad ad ad @@ -51365,24 +51365,24 @@ ad ad ad ln -lX -mz +Lm +OW ln -nK -ot -oV -pA -qb -zt -mL -qH -sV -tD -uj -uG -vb -vB -vZ +Sr +wW +Cc +zf +Mq +OO +BI +dD +Ru +Ar +PN +sO +jD +Lj +CI ln ad ad @@ -51421,7 +51421,7 @@ ad ad ad ad -eJ +fh ad ad ad @@ -51622,24 +51622,24 @@ ad ad ad ln -lY -mA -nh -nK -ou -oW -pB -qc -qG -pj -rq -sW -tE -uk +YW +Ch +OP +Sr +Eq +yX +Nh +NP +VS +Wt +wT +KN +Ax +EG uH -vc -vC -wa +CL +Ui +EE ni ad ad @@ -51672,13 +51672,13 @@ ad ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh ad ad ad @@ -51879,20 +51879,20 @@ ad ad ad ln -lZ -lZ +CG +CG ni -nK -ot -oX -pC -qb -Xm -mZ -sk -sX -tF -ul +Sr +wW +Go +WR +Mq +Pr +hm +Ah +Wg +fa +Oe ln ln ln @@ -51935,7 +51935,7 @@ ad ad ad ad -eJ +fh ad ad ad @@ -52139,18 +52139,18 @@ ln ln ln ni -nL -ov -oY -pD -qb -HD -rt -sl -sY -tG -EV -uI +FW +HG +Tt +od +Mq +ES +VC +AD +Hd +cl +Sl +HN vd vD ln @@ -52192,7 +52192,7 @@ ad ad ad ad -eJ +fh ad ad ad @@ -52401,13 +52401,13 @@ ln ln ni ln -qJ -ru -sm -sZ -tH -Tk -uJ +RU +LG +Lw +eU +er +Hf +hj ve vE ln @@ -52449,7 +52449,7 @@ ad ad ad ad -eJ +fh ad ad ad @@ -52657,13 +52657,13 @@ ad ln oZ pE -qd -Co -rv -sn -rt -rj -uo +bm +ok +AT +Jn +VC +dt +UV ni ln ln @@ -52706,7 +52706,7 @@ ad ad ad ad -eJ +fh ad ad ad @@ -52914,14 +52914,14 @@ ad ln pa pF -qe -qL -rw -so -ta -rj -QB -uI +hI +ZX +Ir +Ai +Bj +dt +UH +HN vf vF ln @@ -52952,8 +52952,8 @@ ad ad ad ad -eJ -gf +fh +WE ad ad ad @@ -52963,7 +52963,7 @@ ad ad ad ad -eJ +fh ad ad ad @@ -53172,13 +53172,13 @@ ln ln ln ln -qM -rx -so -tb -tI -Yu -uJ +yy +Eg +Ai +av +Qv +Ea +hj vg vG ln @@ -53206,21 +53206,21 @@ ad ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh ad ad ad ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -53429,12 +53429,12 @@ ad ad ad ln -qN -qN -Fx -PX -tJ -ur +WI +WI +KC +Iz +Fc +EH ni ln ln @@ -53463,21 +53463,21 @@ ad ad ad ad -eJ -gf -eJ +fh +WE +fh ad ad ad -eJ +fh ad ad ad ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -53688,8 +53688,8 @@ ad ln ln ln -sq -td +Mt +Ys ln ni ni @@ -53719,22 +53719,22 @@ ad ad ad ad -eJ -eJ -eJ -eJ -eJ -gf -eJ -eJ -eJ +fh +fh +fh +fh +fh +WE +fh +fh +fh ad ad ad ad ad -eJ -eJ +fh +fh ad ad ad @@ -53976,22 +53976,22 @@ ad ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -gf -eJ +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +WE +fh ad -eJ -eJ +fh +fh ad ad ad @@ -54233,22 +54233,22 @@ ad ad ad ad -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh ad ad ad @@ -54491,20 +54491,20 @@ ad ad ad ad -gf -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +WE +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh ad ad ad @@ -54748,19 +54748,19 @@ ad ad ad ad -eJ -gf -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ +fh +WE +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh ad ad ad @@ -55012,11 +55012,11 @@ ad ad ad ad -eJ -gf -eJ -eJ -eJ +fh +WE +fh +fh +fh ad ad ad diff --git a/_maps/holodeck/petpark.dmm b/_maps/holodeck/petpark.dmm index 44938bac4168a..b6b940daa6038 100644 --- a/_maps/holodeck/petpark.dmm +++ b/_maps/holodeck/petpark.dmm @@ -49,7 +49,7 @@ /turf/open/floor/holofloor/grass, /area/template_noop) "r" = ( -/obj/item/trash/plate, +/obj/item/plate, /obj/effect/turf_decal/tile/red/opposingcorners, /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 diff --git a/_maps/holodeck/small/kitchen.dmm b/_maps/holodeck/small/kitchen.dmm index b9b21a567aa01..7fe33078a6b4c 100644 --- a/_maps/holodeck/small/kitchen.dmm +++ b/_maps/holodeck/small/kitchen.dmm @@ -5,7 +5,7 @@ /area/template_noop) "d" = ( /obj/structure/table/wood, -/obj/item/trash/plate, +/obj/item/plate, /obj/effect/turf_decal/siding/wood{ dir = 4 }, @@ -113,7 +113,7 @@ /area/template_noop) "G" = ( /obj/structure/table/wood, -/obj/item/trash/plate, +/obj/item/plate, /obj/effect/turf_decal/siding/wood{ dir = 8 }, diff --git a/_maps/holodeck/small/petpark.dmm b/_maps/holodeck/small/petpark.dmm index 518260dc3bc8a..227532eb51acf 100644 --- a/_maps/holodeck/small/petpark.dmm +++ b/_maps/holodeck/small/petpark.dmm @@ -37,7 +37,7 @@ /turf/open/floor/holofloor/grass, /area/template_noop) "r" = ( -/obj/item/trash/plate, +/obj/item/plate, /turf/open/floor/holofloor/carpet, /area/template_noop) "v" = ( diff --git a/_maps/map_files/EchoStation/EchoStation.dmm b/_maps/map_files/EchoStation/EchoStation.dmm index 838f461d953a8..074cd9975ff6f 100644 --- a/_maps/map_files/EchoStation/EchoStation.dmm +++ b/_maps/map_files/EchoStation/EchoStation.dmm @@ -1,7 +1,26 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/machinery/door/poddoor/preopen{ + id = "brigentrance"; + name = "Brig Blast Door" + }, +/turf/open/floor/plating, +/area/security/brig) "aav" = ( /turf/open/indestructible/sound/pool, /area/crew_quarters/fitness/recreation) +"aaz" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/crew{ + req_one_access = list(5,4) + }, +/turf/open/floor/iron/grid/steel, +/area/medical/patients_rooms) "aaU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/effect/turf_decal/stripes/line{ @@ -65,6 +84,12 @@ }, /turf/open/floor/iron/tech/grid, /area/ai_monitored/turret_protected/ai_upload) +"abN" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/iron/grid/steel, +/area/medical/patients_rooms) "abU" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -93,6 +118,32 @@ }, /turf/open/floor/iron/cafeteria, /area/crew_quarters/kitchen) +"acw" = ( +/obj/machinery/button/door{ + id = "Chefwindow"; + name = "Chef Shutters Control"; + pixel_y = -27; + req_one_access_txt = "28;25;35" + }, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/clipboard{ + name = "menu"; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/item/paper{ + pixel_y = 3 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Chefwindow"; + name = "Chef Window" + }, +/turf/open/floor/plating, +/area/crew_quarters/kitchen) "acU" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /turf/open/floor/iron/tech, @@ -100,31 +151,22 @@ "ade" = ( /turf/open/floor/carpet/blue, /area/crew_quarters/heads/hop) -"adf" = ( -/obj/effect/turf_decal/trimline/yellow, -/obj/structure/cable/yellow{ - icon_state = "4-16" +"adk" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/structure/cable/yellow{ - icon_state = "2-4" +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 +/obj/structure/cable{ + icon_state = "2-8" }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/hallway/primary/central) +/turf/open/floor/catwalk_floor/iron_dark, +/area/asteroid/paradise/surface) "adG" = ( /obj/structure/flora/rock, /turf/open/floor/plating/asteroid/basalt/planetary, /area/asteroid/paradise) -"adM" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/iron, -/area/hallway/primary/central) "aej" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/sign/warning/vacuum{ @@ -132,28 +174,6 @@ }, /turf/open/floor/engine/vacuum, /area/science/mixing/chamber) -"aep" = ( -/obj/structure/flora/grass/jungle/b, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "Engidesk"; - name = "engineering Security Door" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/grass/no_border, -/area/crew_quarters/heads/chief) -"aer" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/mineral/titanium, -/area/asteroid/paradise/surface) "aet" = ( /obj/effect/turf_decal/delivery, /obj/machinery/computer/rdservercontrol{ @@ -175,58 +195,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, /area/science/mixing) -"aeH" = ( -/obj/item/barcodescanner{ - name = "Scanner"; - pixel_x = -2; - pixel_y = 3 - }, -/turf/open/floor/plating/beach/coastline_t/sandwater_inner{ - dir = 8 - }, -/area/asteroid/paradise/surface) -"aeM" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/paper/monitorkey{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/folder/yellow, -/obj/item/toy/figure/ce{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/item/stamp/chief_engineer{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 5 - }, -/obj/machinery/camera/autoname/directional/east{ - network = list("ss13","engine") - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Engineer's Desk"; - departmentType = 4; - name = "Chief Engineer RC"; - pixel_x = 32; - pixel_y = 31 - }, -/obj/machinery/power/apc/auto_name/directional/east{ - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/mob/living/simple_animal/parrot/Poly, -/turf/open/floor/carpet/royalblue, -/area/crew_quarters/heads/chief) "aeN" = ( /obj/effect/landmark/start/cook, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ @@ -234,29 +202,28 @@ }, /turf/open/floor/iron/cafeteria, /area/crew_quarters/kitchen) +"aeP" = ( +/obj/docking_port/stationary{ + dwidth = 12; + height = 69; + id = "whiteship_home"; + name = "Auxiliary Dock"; + width = 25 + }, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface/grass) +"aeQ" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 9 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/engine/supermatter) "aeZ" = ( /obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/engine, /area/science/mixing/chamber) -"afq" = ( -/obj/structure/sign/departments/minsky/engineering/telecommmunications{ - pixel_x = -32 - }, -/obj/effect/turf_decal/trimline/dark/warning{ - dir = 4 - }, -/obj/effect/turf_decal/siding/dark{ - dir = 4 - }, -/obj/effect/turf_decal/siding/dark{ - dir = 8 - }, -/obj/machinery/camera/autoname/directional/west{ - network = list("ss13","engine","public") - }, -/turf/open/floor/iron/dark, -/area/engineering/hallway) "afw" = ( /turf/closed/wall, /area/crew_quarters/kitchen) @@ -312,13 +279,6 @@ /obj/machinery/computer/operating, /turf/open/floor/iron/white, /area/science/robotics) -"ahD" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) "ahQ" = ( /obj/effect/turf_decal/sand/plating, /obj/effect/turf_decal/stripes/line{ @@ -393,6 +353,16 @@ "ajB" = ( /turf/closed/wall/r_wall, /area/crew_quarters/heads/captain) +"ajJ" = ( +/obj/machinery/door/airlock{ + id_tag = "Toilet 2"; + name = "Toilet Unit" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/techmaint/planetary, +/area/hallway/primary/fore) "ajT" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ @@ -418,13 +388,6 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai_upload) -"akq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/curtain/directional{ - dir = 1 - }, -/turf/open/floor/plating, -/area/crew_quarters/theatre/backstage) "aky" = ( /obj/effect/decal/cleanable/glass, /turf/open/floor/plating/rust, @@ -471,25 +434,15 @@ /obj/effect/spawner/lootdrop/maintenance/two, /turf/open/floor/iron, /area/maintenance/department/eva) -"akL" = ( -/obj/effect/decal/cleanable/dirt/dust, +"akQ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, -/turf/open/floor/iron/techmaint/planetary, -/area/asteroid/paradise/surface) -"ald" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +/obj/structure/disposalpipe/sorting/unsorted/flip{ + dir = 8 }, -/turf/open/floor/iron/dark, -/area/hallway/primary/central) +/turf/open/floor/iron, +/area/quartermaster/sorting) "alg" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/stripes/line, @@ -513,6 +466,18 @@ }, /turf/open/floor/plating/asteroid/planetary, /area/quartermaster/storage) +"alr" = ( +/obj/structure/chair/fancy/bench/pew/right{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/chapel/main) "alt" = ( /obj/structure/railing/corner{ dir = 1 @@ -537,12 +502,6 @@ }, /turf/open/floor/plating/beach/sand, /area/asteroid/paradise/surface) -"alM" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/glass/reinforced/plasma, -/area/maintenance/department/security/brig) "alO" = ( /obj/structure/chair/wood, /obj/structure/sign/painting/library{ @@ -616,29 +575,15 @@ }, /turf/open/floor/iron/techmaint/planetary, /area/storage/tech) -"amM" = ( -/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ - alpha = 180 - }, -/obj/effect/turf_decal/loading_area{ - dir = 8; - pixel_y = -1 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "HoP Queue Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +"amC" = ( +/obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/holohoop{ + dir = 8 }, -/turf/open/floor/iron, -/area/hallway/primary/fore) +/turf/open/floor/prison/dark, +/area/security/prison) "amO" = ( /obj/machinery/door/window/brigdoor{ dir = 1; @@ -667,16 +612,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/bar) -"anK" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/hallway/primary/central) "anP" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 @@ -723,45 +658,6 @@ }, /turf/open/floor/iron, /area/engine/atmos) -"aou" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/siding/white/corner{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4, -/obj/effect/landmark/start/scientist, -/obj/effect/turf_decal/numbers/two_nine{ - dir = 1 - }, -/obj/structure/disposalpipe/sorting/mail/destination/testing_range{ - dir = 1 - }, -/turf/open/floor/iron/white/side{ - dir = 5 - }, -/area/science/lab) -"aoD" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/iron/techmaint/planetary, -/area/asteroid/paradise/surface) "aoG" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -792,14 +688,63 @@ }, /turf/open/floor/carpet/royalblue, /area/crew_quarters/heads/chief) +"aoJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/structure/lattice/catwalk/over, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/mixing) "aoM" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/brig) +"aoV" = ( +/obj/effect/turf_decal/box/white, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) "aoY" = ( /obj/structure/lattice/catwalk/over, /turf/open/openspace, /area/asteroid/paradise/surface) +"apg" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Doors Control"; + normaldoorcontrol = 1; + pixel_x = 4; + pixel_y = 36 + }, +/obj/machinery/button/door{ + id = "chemistry_shutters"; + id_tag = "cmoprivacy"; + name = "Chem Shutters Control"; + pixel_x = 4; + pixel_y = 27 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/iron/white, +/area/medical/apothecary) "apn" = ( /obj/effect/turf_decal/bot, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ @@ -835,9 +780,28 @@ }, /turf/open/floor/iron/white, /area/medical/medbay/central) +"apI" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/evac, +/turf/open/floor/iron, +/area/maintenance/department/science/central) "apP" = ( /turf/open/floor/plating/beach/sand, /area/asteroid/paradise/surface) +"apZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Engidesk"; + name = "engineering Security Door" + }, +/turf/open/floor/plating, +/area/engine/engineering) "aqa" = ( /obj/effect/turf_decal/sand/plating, /turf/open/floor/plating/asteroid/planetary, @@ -845,6 +809,23 @@ "aqn" = ( /turf/closed/wall, /area/science/server) +"aqp" = ( +/obj/effect/turf_decal/tile/dark_blue{ + alpha = 180; + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/hallway/primary/fore) "aqu" = ( /turf/closed/wall/r_wall, /area/science/mixing) @@ -866,6 +847,15 @@ }, /turf/open/floor/carpet/royalblue, /area/crew_quarters/heads/captain) +"aqH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/sorting/mail/destination/chapel{ + dir = 1 + }, +/turf/open/floor/iron, +/area/hallway/primary/central) "aqI" = ( /obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ alpha = 180 @@ -885,6 +875,24 @@ }, /turf/open/floor/iron/dark, /area/bridge) +"aqJ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/aft) +"arg" = ( +/obj/structure/table/wood, +/obj/item/flashlight, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/broken, +/area/library/abandoned) "arj" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -910,15 +918,28 @@ }, /turf/open/floor/iron/dark, /area/security/detectives_office) -"arF" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/box, -/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, -/obj/structure/cable/yellow{ +"arU" = ( +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/ai"; + icon_state = "control_stun"; + name = "AI Chamber turret control"; + pixel_x = -1; + pixel_y = 33 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/iron/white, -/area/medical/apothecary) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("aiupload") + }, +/turf/open/floor/iron/tech/grid, +/area/ai_monitored/turret_protected/aisat_interior) "arX" = ( /obj/effect/turf_decal/tile/blue/half/contrasted{ dir = 4 @@ -926,23 +947,6 @@ /obj/machinery/computer/med_data, /turf/open/floor/iron, /area/bridge) -"asc" = ( -/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ - alpha = 180 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/flasher{ - id = "hopflash"; - pixel_y = -26 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/fore) "asv" = ( /turf/open/floor/iron/dark, /area/engine/atmos) @@ -958,18 +962,18 @@ }, /turf/open/floor/iron, /area/teleporter) -"asV" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" +"asN" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/structure/sign/painting/library{ + pixel_x = 1; + pixel_y = -32 }, -/obj/machinery/ai_slipper{ - uses = 10 +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/turf/open/floor/prison, -/area/security/prison) +/turf/open/floor/iron, +/area/medical/surgery) "ata" = ( /obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, @@ -1005,13 +1009,40 @@ /obj/item/lightreplacer, /turf/open/floor/carpet/green, /area/crew_quarters/cafeteria) -"atE" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark/side{ +"ath" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron, +/area/hallway/primary/aft) +"ati" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 }, -/area/hallway/primary/central) +/obj/structure/chair/fancy/bench, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 1; + pixel_y = 32 + }, +/turf/open/floor/iron, +/area/security/prison) "aua" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxins_mixing_input, /obj/machinery/sparker/toxmix{ @@ -1041,71 +1072,21 @@ }, /turf/open/floor/plating, /area/maintenance/department/security/brig) -"auC" = ( -/obj/machinery/door/window{ - base_state = "rightsecure"; - dir = 4; - icon_state = "rightsecure"; - name = "Primary AI Core Access"; - obj_integrity = 300; - req_access_txt = "16" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "AI Core shutters"; - name = "AI Core Shutter" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/light_switch{ - pixel_x = 6; - pixel_y = 24 - }, +"auy" = ( /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/camera/autoname/directional/south{ - network = list("aiupload") +/obj/structure/cable{ + icon_state = "1-4" }, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/asteroid/paradise/surface) "auE" = ( /turf/closed/wall/r_wall, /area/science/robotics) -"auJ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/chapel/main) -"auW" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/tech, -/area/science/mixing/chamber) "avl" = ( /obj/machinery/door/airlock{ id_tag = "Cabin3"; @@ -1126,14 +1107,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plating/airless, /area/maintenance/disposal) -"avK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/wallframe/firealarm{ - pixel_x = 1; - pixel_y = -33 - }, -/turf/open/floor/wood, -/area/library/abandoned) "avP" = ( /obj/effect/landmark/start/head_of_personnel, /obj/machinery/newscaster{ @@ -1145,31 +1118,6 @@ }, /turf/open/floor/carpet/blue, /area/crew_quarters/heads/hop) -"awd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/aft) -"awm" = ( -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/caution{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/supermatter) "aww" = ( /obj/machinery/atmospherics/pipe/manifold/yellow/visible/layer4{ dir = 4 @@ -1206,25 +1154,31 @@ }, /turf/open/floor/catwalk_floor/iron_dark, /area/quartermaster/storage) -"axi" = ( -/obj/structure/cable{ - icon_state = "1-2" +"axj" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/department/science/central) +"axk" = ( +/obj/structure/closet/crate/science, +/obj/item/circuitboard/computer/shuttle/exploration_shuttle, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/circuitboard/machine/shuttle/heater, +/turf/open/floor/mineral/titanium, +/area/asteroid/paradise/surface) +"axr" = ( +/obj/structure/window/reinforced{ + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 2 }, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron/dark, -/area/engine/engineering) -"axj" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/department/science/central) +/turf/open/floor/iron/grid/steel, +/area/bridge) "axA" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ @@ -1247,25 +1201,17 @@ /obj/effect/decal/cleanable/shreds, /turf/open/floor/iron/dark, /area/science/robotics) -"ayl" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/white/corner{ +"axZ" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/segment{ dir = 8 }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) -"ayp" = ( +/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, /obj/structure/cable/yellow{ - icon_state = "0-8" + icon_state = "4-8" }, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/cmo) +/turf/open/floor/iron/grid/steel, +/area/medical/patients_rooms) "ayz" = ( /obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ alpha = 180; @@ -1290,6 +1236,19 @@ /obj/structure/flora/ausbushes/lavendergrass, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise/surface) +"ayY" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron, +/area/bridge) +"azd" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/medbay/central) "azg" = ( /obj/machinery/modular_fabricator/autolathe, /obj/machinery/door/window/eastright{ @@ -1302,31 +1261,30 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron, /area/science/lab) -"azl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/rnd/production/protolathe/department/engineering{ - req_access_txt = "32" +"azk" = ( +/obj/effect/turf_decal/sand/plating, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/fans/tiny{ + density = 1; + icon = 'icons/effects/effects.dmi'; + icon_state = "m_shield"; + max_integrity = 1e+007 }, -/obj/structure/window/plasma/reinforced, -/turf/open/floor/iron, -/area/engine/engineering) -"azs" = ( -/obj/machinery/camera/autoname/directional/south{ - network = list("ss13","engine") +/turf/open/floor/plating/asteroid/basalt/planetary, +/area/quartermaster/storage) +"azE" = ( +/obj/structure/railing{ + dir = 8 }, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Gas to Chamber" +/obj/effect/turf_decal/siding/dark{ + dir = 8 }, -/obj/effect/turf_decal/delivery, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable/yellow{ - icon_state = "0-8" +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 8 }, -/turf/open/floor/engine, -/area/engine/supermatter) +/area/hallway/primary/central) "azS" = ( /obj/item/radio/intercom{ dir = 1; @@ -1338,6 +1296,23 @@ }, /turf/open/floor/wood, /area/hallway/secondary/service) +"azU" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/hallway/primary/fore) +"aAe" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/catwalk_floor/iron_dark, +/area/asteroid/paradise/surface) "aAh" = ( /obj/effect/turf_decal/bot, /obj/structure/extinguisher_cabinet{ @@ -1346,17 +1321,21 @@ /obj/machinery/atmospherics/components/unary/thermomachine/freezer/on, /turf/open/floor/iron/dark, /area/science/server) -"aAu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/iron/grid/steel, -/area/medical/patients_rooms) -"aAy" = ( -/obj/structure/railing/corner{ +"aAj" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/structure/lattice, -/turf/open/openspace, -/area/engineering/hallway) +/obj/item/clothing/glasses/meson/engine, +/obj/item/stack/sheet/mineral/copper{ + amount = 5; + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/storage/belt/utility/full/engi, +/obj/structure/window/plasma/reinforced, +/turf/open/floor/iron, +/area/engine/engineering) "aAB" = ( /obj/effect/decal/cleanable/oil, /obj/effect/turf_decal/stripes/line, @@ -1443,6 +1422,31 @@ /obj/effect/mapping_helpers/airlock/abandoned, /turf/open/floor/plating, /area/maintenance/department/engine) +"aCf" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/carpet/red, +/area/security/detectives_office) "aCk" = ( /obj/machinery/atmospherics/components/unary/thermomachine/heater{ dir = 1 @@ -1454,23 +1458,6 @@ "aCm" = ( /turf/closed/wall, /area/maintenance/department/bridge) -"aCq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Mix to Turbine" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/iron/tech, -/area/engine/atmos) "aCA" = ( /obj/effect/turf_decal/bot, /obj/machinery/portable_atmospherics/pump, @@ -1492,6 +1479,13 @@ /obj/item/pool/rubber_ring, /turf/open/floor/plating/beach/water, /area/asteroid/paradise/surface/water) +"aDa" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/openspace, +/area/engineering/hallway) "aDi" = ( /obj/effect/turf_decal/siding/white{ dir = 8 @@ -1502,6 +1496,12 @@ }, /turf/open/floor/iron/cafeteria, /area/crew_quarters/kitchen) +"aDl" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/maintenance/department/science/xenobiology) "aDn" = ( /obj/effect/turf_decal/tile/dark_green/fourcorners/contrasted, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -1509,17 +1509,6 @@ }, /turf/open/floor/iron, /area/hydroponics) -"aDq" = ( -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced/prison, -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" - }, -/turf/open/floor/plating, -/area/security/prison) "aDD" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2{ dir = 6 @@ -1536,6 +1525,15 @@ "aEi" = ( /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai) +"aEs" = ( +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/structure/table/wood, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/wood, +/area/library/abandoned) "aEG" = ( /obj/structure/railing{ dir = 1 @@ -1549,6 +1547,23 @@ "aEM" = ( /turf/closed/wall/r_wall, /area/science/server) +"aFd" = ( +/obj/machinery/airalarm/directional/north{ + pixel_y = -23 + }, +/mob/living/simple_animal/bot/mulebot{ + home_destination = "QM #3"; + suffix = "#3" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "QM #3" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/quartermaster/warehouse) "aFj" = ( /obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior, /obj/effect/mapping_helpers/airlock/locked, @@ -1587,17 +1602,6 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat/foyer) -"aFR" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/railing/corner, -/obj/effect/turf_decal/siding/white/corner, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) "aFU" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/closet, @@ -1628,10 +1632,11 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, /area/maintenance/department/crew_quarters/bar) -"aGW" = ( -/obj/structure/frame/machine, -/turf/open/floor/iron, -/area/hallway/primary/fore) +"aGT" = ( +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/hallway/primary/central) "aHp" = ( /obj/machinery/telecomms/processor/preset_three, /obj/effect/turf_decal/stripes/line{ @@ -1658,6 +1663,19 @@ }, /turf/open/floor/iron, /area/medical/storage) +"aHD" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark, +/area/engineering/hallway) "aIa" = ( /obj/effect/landmark/start/assistant, /obj/structure/cable/yellow{ @@ -1671,13 +1689,25 @@ }, /turf/open/floor/catwalk_floor/iron_dark, /area/crew_quarters/fitness/recreation) -"aIl" = ( -/obj/machinery/airalarm/directional/east, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark/side{ - dir = 4 +"aIw" = ( +/obj/structure/railing/corner{ + dir = 8 }, -/area/hallway/primary/central) +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/structure/disposalpipe/sorting/mail/destination/ce_office/flip, +/turf/open/floor/iron/dark, +/area/engineering/hallway) "aIx" = ( /obj/machinery/meter, /obj/structure/cable{ @@ -1718,23 +1748,6 @@ }, /turf/open/floor/grass/no_border, /area/bridge) -"aJe" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/tech, -/area/science/mixing/chamber) "aJn" = ( /obj/machinery/light_switch{ pixel_x = -23; @@ -1822,6 +1835,17 @@ }, /turf/open/floor/iron/tech, /area/science/mixing/chamber) +"aJD" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/numbers/two_nine, +/turf/open/floor/iron, +/area/maintenance/department/cargo) "aJO" = ( /obj/item/radio/intercom{ pixel_x = -1; @@ -1859,10 +1883,34 @@ }, /turf/open/floor/iron/dark, /area/science/mixing) +"aJT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/aft) "aJU" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/science/xenobiology) +"aJV" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue{ + alpha = 180; + dir = 4 + }, +/turf/open/floor/iron/dark/side, +/area/hallway/primary/central) "aKf" = ( /obj/machinery/door/poddoor/incinerator_toxmix, /turf/open/floor/engine/vacuum, @@ -1909,32 +1957,6 @@ /obj/effect/landmark/start/botanist, /turf/open/floor/iron, /area/hydroponics) -"aKI" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/crew_quarters/heads/cmo) -"aKM" = ( -/obj/effect/landmark/start/quartermaster, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/carpet/orange, -/area/quartermaster/qm) "aLc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ @@ -1954,12 +1976,48 @@ /obj/machinery/door/poddoor/incinerator_toxmix, /turf/open/floor/engine/vacuum, /area/science/mixing/chamber) +"aLo" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/light, +/obj/structure/sign/warning/pods{ + pixel_y = -32 + }, +/turf/open/floor/iron, +/area/maintenance/department/chapel) "aLz" = ( /obj/machinery/door/poddoor/incinerator_atmos_aux, /obj/structure/lattice/catwalk/over, /obj/effect/turf_decal/sand/plating, /turf/open/floor/plating/asteroid/planetary, /area/maintenance/disposal/incinerator) +"aLD" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/glass/reinforced/plasma, +/area/maintenance/department/security/brig) +"aLI" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/suit_storage_unit/cmo, +/turf/open/floor/iron/white, +/area/crew_quarters/heads/cmo) +"aLU" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/medical/surgery) "aMt" = ( /obj/machinery/vending/custom{ pixel_y = -1 @@ -1987,12 +2045,27 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating/dirt/planetary, /area/asteroid/paradise/surface/grass) +"aNd" = ( +/obj/machinery/door/morgue{ + dir = 1; + name = "Private Study"; + req_access_txt = "37" + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/carpet/royalblack, +/area/library/abandoned) "aNk" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 }, /turf/open/floor/prison, /area/security/prison) +"aNl" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/hallway/primary/fore) "aNF" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -2020,14 +2093,12 @@ dir = 4 }, /area/crew_quarters/cafeteria) -"aNW" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 8 +"aNV" = ( +/obj/structure/railing{ + dir = 1 }, -/area/hallway/primary/central) +/turf/open/floor/iron/dark, +/area/hallway/primary/aft) "aOw" = ( /obj/effect/turf_decal/stripes/corner, /obj/structure/railing/corner, @@ -2083,19 +2154,6 @@ }, /turf/open/floor/iron, /area/maintenance/department/science/central) -"aOX" = ( -/mob/living/simple_animal/pet/dog/corgi/Ian{ - density = 0; - dir = 1; - pixel_y = 4 - }, -/obj/item/toy/plush/ian, -/obj/structure/bed/dogbed/ian, -/obj/item/storage/secure/safe{ - pixel_x = 38 - }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/heads/hop) "aPc" = ( /turf/closed/wall, /area/science/explab) @@ -2135,22 +2193,6 @@ }, /turf/open/floor/iron/dark, /area/engine/atmos) -"aPE" = ( -/obj/structure/table/wood, -/obj/item/camera_film{ - pixel_y = 9 - }, -/obj/item/camera_film{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/sign/poster/official/random{ - pixel_x = 1; - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/library/abandoned) "aPL" = ( /obj/machinery/light/small, /turf/open/floor/plating/asteroid/basalt/planetary, @@ -2180,20 +2222,6 @@ }, /turf/open/floor/iron/freezer, /area/crew_quarters/kitchen/coldroom) -"aPZ" = ( -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_x = 32; - pixel_y = 29 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/hallway/primary/central) "aQg" = ( /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron/dark, @@ -2217,12 +2245,6 @@ /obj/effect/turf_decal/sand/plating, /turf/open/floor/plating/beach/sand, /area/asteroid/paradise/surface) -"aQK" = ( -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark/side{ - dir = 9 - }, -/area/hallway/primary/aft) "aQW" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/dirt/dust, @@ -2246,26 +2268,20 @@ }, /turf/open/floor/iron/dark, /area/crew_quarters/heads/hos) -"aRd" = ( -/obj/item/seeds/tower, +"aRb" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/obj/effect/turf_decal/delivery, -/obj/machinery/hydroponics, -/turf/open/floor/iron, -/area/maintenance/department/medical/morgue) +/obj/machinery/camera/autoname/directional/west{ + c_tag = "Teleporter Room" + }, +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole/bookmanagement, +/turf/open/floor/carpet/royalblack, +/area/library/abandoned) "aRf" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/spawner/lootdrop/glowstick/lit, /turf/open/floor/iron/techmaint/planetary, /area/asteroid/paradise/surface) -"aRh" = ( -/obj/structure/railing/corner, -/obj/effect/turf_decal/siding/dark/corner, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/iron, -/area/hallway/primary/aft) "aRi" = ( /obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior, /obj/effect/mapping_helpers/airlock/locked, @@ -2274,44 +2290,20 @@ /turf/open/floor/engine, /area/science/mixing/chamber) "aRk" = ( -/obj/structure/disposalpipe/junction, -/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/iron/grid/steel, -/area/medical/patients_rooms) -"aRB" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light{ +/obj/structure/chair/stool/bar/directional/west, +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark, +/area/engineering/hallway) +"aRu" = ( +/obj/machinery/light/small{ dir = 1 }, -/turf/open/floor/plating/asteroid/planetary, -/area/hallway/primary/fore) -"aRG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 10 +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","cargo") }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/engine/engineering) +/turf/open/floor/plating, +/area/quartermaster/warehouse) "aRP" = ( /obj/structure/table, /obj/item/clipboard{ @@ -2329,13 +2321,6 @@ /obj/effect/turf_decal/siding/wood, /turf/open/floor/carpet/blue, /area/crew_quarters/heads/hop) -"aRR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron, -/area/hallway/primary/fore) "aRY" = ( /obj/machinery/atmospherics/components/binary/pump, /obj/machinery/light/small{ @@ -2356,59 +2341,6 @@ "aSh" = ( /turf/open/floor/wood/broken, /area/crew_quarters/cafeteria) -"aSp" = ( -/obj/machinery/button/door{ - id = "hopshutter"; - name = "Privacy Shutter Control"; - pixel_x = -38; - pixel_y = 26; - req_access_txt = "57" - }, -/obj/machinery/button/door{ - id = "hopqueue"; - name = "Queue Shutter Control"; - pixel_x = -38; - pixel_y = 37; - req_access_txt = "57" - }, -/obj/machinery/button/flasher{ - id = "hopflash"; - pixel_x = -25; - pixel_y = 37 - }, -/obj/machinery/keycard_auth{ - pixel_x = -25; - pixel_y = 27 - }, -/obj/structure/chair/office, -/obj/effect/landmark/start/head_of_personnel, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/heads/hop) -"aSs" = ( -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/railing, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible/layer5{ - dir = 4 - }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/engine/atmos) "aSC" = ( /obj/machinery/door/airlock{ id_tag = "Cabin1"; @@ -2426,6 +2358,12 @@ /obj/structure/sign/warning/nosmoking, /turf/closed/wall, /area/medical/surgery) +"aSS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/wardrobe/curator_wardrobe, +/obj/effect/turf_decal/bot, +/turf/open/floor/carpet/royalblack, +/area/library/abandoned) "aST" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{ dir = 9 @@ -2445,28 +2383,10 @@ /obj/machinery/computer/crew, /turf/open/floor/iron, /area/bridge) -"aTh" = ( -/obj/item/toy/plush/moth/firewatch{ - name = "Zinnia"; - pixel_x = -10 - }, -/obj/item/toy/plush/lizard_plushie{ - name = "Walks-upon-Embers"; - pixel_x = 5 - }, -/turf/open/floor/plating/asteroid/basalt/planetary, -/area/asteroid/paradise) "aTx" = ( /obj/machinery/atmospherics/pipe/simple/general/visible, /turf/closed/wall/r_wall, /area/science/mixing/chamber) -"aTW" = ( -/obj/structure/lattice/catwalk/over, -/obj/structure/chair/foldable{ - dir = 8 - }, -/turf/open/openspace, -/area/hallway/primary/fore) "aTZ" = ( /obj/structure/chair/office/light{ dir = 8 @@ -2475,18 +2395,6 @@ /obj/effect/landmark/start/security_officer, /turf/open/floor/iron/dark, /area/security/brig) -"aUd" = ( -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/spawner/structure/window/reinforced/prison, -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" - }, -/turf/open/floor/plating, -/area/security/prison) "aUf" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -2498,6 +2406,17 @@ "aUl" = ( /turf/closed/indestructible/rock/bedrock, /area/quartermaster/storage) +"aUy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/iron, +/area/hallway/primary/central) "aUN" = ( /obj/structure/table/reinforced, /obj/item/paper_bin{ @@ -2537,18 +2456,6 @@ }, /turf/open/floor/iron/white, /area/crew_quarters/heads/hor) -"aUQ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/firealarm/directional/south, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron/dark, -/area/engine/engineering) "aVf" = ( /obj/item/stack/sheet/wood/ten, /obj/structure/table, @@ -2586,6 +2493,15 @@ }, /turf/open/floor/iron/dark, /area/security/detectives_office) +"aVH" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/tile/dark_green/fourcorners/contrasted, +/obj/item/plant_analyzer{ + pixel_x = 2; + pixel_y = -8 + }, +/turf/open/floor/iron, +/area/maintenance/department/medical/morgue) "aVS" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/closet/firecloset/full, @@ -2603,41 +2519,14 @@ /obj/effect/landmark/start/cook, /turf/open/floor/iron/cafeteria, /area/crew_quarters/kitchen) -"aWi" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/siding/dark{ - dir = 1 - }, -/obj/effect/turf_decal/siding/dark, -/turf/open/floor/iron/dark, -/area/hallway/primary/central) -"aWm" = ( -/obj/effect/turf_decal/tile/purple/fourcorners/contrasted, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/science/lab) -"aWs" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "4-8" +"aWo" = ( +/obj/structure/table/wood, +/obj/machinery/door/poddoor/shutters{ + id = "commissaryshutters3"; + name = "Vacant Commissary Shutters #3" }, -/turf/open/floor/iron/techmaint/planetary, -/area/asteroid/paradise/surface) +/turf/open/floor/plating, +/area/hallway/primary/fore) "aWy" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 5 @@ -2658,14 +2547,31 @@ }, /turf/open/floor/iron, /area/maintenance/department/eva) -"aXp" = ( -/obj/effect/turf_decal/sand/plating, -/obj/machinery/light{ +"aWK" = ( +/obj/machinery/computer/card/minor/hos, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","security") + }, +/turf/open/floor/iron/dark, +/area/crew_quarters/heads/hos) +"aWU" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/machinery/power/port_gen/pacman, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, /turf/open/floor/iron, -/area/hallway/primary/fore) +/area/hallway/primary/aft) "aXq" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -2705,22 +2611,6 @@ }, /turf/open/floor/plating, /area/science/research) -"aYk" = ( -/obj/machinery/shower{ - dir = 8; - name = "emergency shower"; - pixel_y = -3 - }, -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Creature Pen"; - req_access_txt = "47" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/circuit/telecomms/server, -/area/science/xenobiology) "aYp" = ( /obj/structure/table, /obj/item/storage/toolbox/electrical, @@ -2730,9 +2620,16 @@ }, /turf/open/floor/circuit/red, /area/ai_monitored/turret_protected/ai) -"aZf" = ( -/obj/structure/window/reinforced{ - dir = 8 +"aYB" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/freezer, +/area/hallway/primary/fore) +"aZf" = ( +/obj/structure/window/reinforced{ + dir = 8 }, /obj/structure/chair/fancy/sofa/old/right{ dir = 4 @@ -2752,6 +2649,14 @@ /obj/item/kirbyplants/random, /turf/open/floor/engine, /area/ai_monitored/turret_protected/ai) +"aZv" = ( +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/hallway/primary/fore) +"aZV" = ( +/turf/closed/wall/r_wall/rust, +/area/quartermaster/storage) "baa" = ( /turf/closed/wall/r_wall, /area/medical/morgue) @@ -2788,6 +2693,18 @@ "baE" = ( /turf/closed/wall/r_wall, /area/chapel/main) +"baK" = ( +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/spawner/structure/window/reinforced/prison, +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" + }, +/turf/open/floor/plating, +/area/security/prison) "baM" = ( /obj/structure/flora/ausbushes/lavendergrass, /turf/open/floor/plating/asteroid/planetary, @@ -2800,10 +2717,20 @@ }, /turf/open/floor/prison/dark, /area/security/prison) -"bbd" = ( -/turf/open/floor/iron/dark/side{ - dir = 4 +"bbc" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/spawner/randomvend/snack, +/obj/machinery/light, +/obj/machinery/status_display/evac{ + pixel_y = -32 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 }, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron/dark, /area/hallway/primary/fore) "bbg" = ( /obj/structure/cable/yellow{ @@ -2820,6 +2747,18 @@ }, /turf/open/floor/plating, /area/maintenance/department/engine/atmos) +"bbB" = ( +/obj/structure/destructible/cult/tome, +/obj/item/book/codex_gigas, +/obj/structure/light_construct{ + dir = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/library/abandoned) +"bbH" = ( +/obj/effect/turf_decal/numbers/two_nine, +/turf/open/floor/iron, +/area/hallway/primary/aft) "bbJ" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -2827,52 +2766,6 @@ }, /turf/open/floor/carpet/red, /area/security/detectives_office) -"bcb" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/grass/no_border, -/area/hallway/primary/aft) -"bce" = ( -/obj/structure/window/plasma/reinforced{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"bcs" = ( -/obj/structure/flora/grass/jungle/b, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "Engidesk"; - name = "engineering Security Door" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/grass/no_border, -/area/crew_quarters/heads/chief) -"bcJ" = ( -/obj/structure/railing/corner, -/obj/effect/turf_decal/siding/wood, -/obj/machinery/camera/autoname/directional/north, -/obj/machinery/vending/games{ - pixel_y = -1 - }, -/turf/open/floor/carpet/green, -/area/crew_quarters/cafeteria) "bcS" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -2911,15 +2804,78 @@ }, /turf/open/floor/iron/sepia, /area/quartermaster/storage) +"bdQ" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/landmark/start/scientist, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white/side{ + dir = 5 + }, +/area/science/lab) "bdW" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/spawner/lootdrop/glowstick/lit, /turf/open/floor/plating, /area/maintenance/department/science/central) +"beh" = ( +/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ + alpha = 180 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/evac, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/fore) "bet" = ( /obj/structure/sign/departments/custodian, /turf/closed/wall, /area/crew_quarters/cafeteria) +"beK" = ( +/obj/structure/flora/rock/pile/largejungle{ + pixel_x = -2; + pixel_y = -27 + }, +/turf/open/floor/grass/no_border, +/area/hallway/primary/aft) +"bfl" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/hallway/primary/central) "bfz" = ( /obj/structure/spider/stickyweb, /turf/open/floor/plating/asteroid/planetary, @@ -2930,6 +2886,12 @@ }, /turf/open/floor/iron/dark, /area/engine/engineering) +"bfR" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/hallway/primary/fore) "bga" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -2947,11 +2909,6 @@ }, /turf/open/floor/iron, /area/maintenance/department/engine/atmos) -"bgd" = ( -/obj/structure/lattice/catwalk/over, -/obj/structure/ladder, -/turf/open/openspace, -/area/engineering/hallway) "bge" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2969,6 +2926,14 @@ }, /turf/open/floor/iron, /area/bridge) +"bgo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/space_heater, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark, +/area/engine/engineering) "bgs" = ( /turf/open/floor/plating/beach/coastline_b{ dir = 10 @@ -3001,26 +2966,42 @@ }, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"bhu" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/dark/warning{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/engineering/hallway) "bhE" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/iron, /area/maintenance/department/science/xenobiology) -"bid" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/sand/plating, -/obj/structure/chair/fancy/plastic, -/turf/open/floor/iron/techmaint/planetary, -/area/asteroid/paradise/surface) +"bic" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/digital_clock/directional/east, +/turf/open/floor/iron/dark, +/area/bridge/meeting_room) +"bii" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "Engidesk"; + name = "engineering Security Door" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/grass/no_border, +/area/crew_quarters/heads/chief) "bip" = ( /obj/structure/railing{ dir = 4 @@ -3034,26 +3015,6 @@ /obj/structure/flora/ausbushes/lavendergrass, /turf/open/floor/plating/asteroid/basalt/planetary, /area/quartermaster/storage) -"biD" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) -"biE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{ - dir = 8 - }, -/obj/machinery/door/airlock/public/glass/incinerator{ - frequency = null; - req_access_txt = "11"; - req_one_access = null - }, -/turf/open/floor/plating/asteroid/planetary, -/area/asteroid/paradise) "biN" = ( /obj/machinery/door/airlock/public/glass{ name = "Holodeck Access" @@ -3071,58 +3032,16 @@ }, /turf/open/floor/prison/dark, /area/security/prison) -"biR" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = 24 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = 5; - pixel_y = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/camera/autoname/directional/east{ - network = list("ss13","engine") - }, -/obj/item/storage/toolbox/emergency{ - pixel_x = 3; - pixel_y = -1 - }, -/obj/item/extinguisher/advanced{ - pixel_x = -8; - pixel_y = 2 - }, -/obj/effect/loot_jobscale/medical/burn_kit, -/turf/open/floor/iron, -/area/maintenance/disposal/incinerator) "biV" = ( /obj/structure/sign/warning/radiation/rad_area, /turf/closed/wall/r_wall/rust, /area/engine/engineering) -"bjl" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 +"bjJ" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/iron/dark, -/area/hallway/primary/central) +/turf/open/floor/catwalk_floor/iron_dark, +/area/asteroid/paradise/surface) "bkn" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/southleft{ @@ -3182,6 +3101,20 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/carpet/blue, /area/crew_quarters/cafeteria) +"bkP" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/catwalk_floor/iron_dark, +/area/asteroid/paradise/surface) "bkW" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -3194,33 +3127,53 @@ }, /turf/open/floor/iron, /area/security/brig) -"bkZ" = ( -/obj/structure/railing{ - dir = 1 +"bkX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/directional{ + dir = 4 }, /obj/structure/cable/yellow{ - icon_state = "4-8" + icon_state = "0-2" }, /obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/layer_manifold{ dir = 4 }, -/turf/open/floor/iron, -/area/engine/engineering) +/turf/open/floor/plating, +/area/crew_quarters/heads/chief) "ble" = ( /obj/structure/table, /obj/structure/bedsheetbin, /obj/item/storage/box/bodybags, /turf/open/floor/iron/dark, /area/medical/morgue) +"blt" = ( +/obj/structure/window/plasma/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/rad_collector/anchored, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"blA" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/iron/techmaint/planetary, +/area/hallway/primary/fore) "blO" = ( /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise) +"bmi" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 4; + initialize_directions = 4 + }, +/turf/open/floor/iron/tech, +/area/engine/engineering) "bmC" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -3253,6 +3206,22 @@ /obj/structure/sign/departments/minsky/security/command, /turf/closed/wall/r_wall, /area/bridge/meeting_room) +"bnO" = ( +/obj/item/seeds/flower/poppy, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/hydroponics, +/turf/open/floor/iron, +/area/maintenance/department/medical/morgue) +"bnS" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/dark/corner, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/central) "bnW" = ( /obj/structure/table/reinforced, /obj/item/storage/box/flashbangs{ @@ -3304,6 +3273,21 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/maintenance/department/cargo) +"bot" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/machinery/light, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/science/research) "bov" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2{ dir = 9 @@ -3345,26 +3329,19 @@ }, /turf/open/floor/dock/drydock, /area/quartermaster/storage) -"bpo" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/openspace, -/area/hallway/primary/fore) -"bpx" = ( -/obj/structure/table, -/obj/item/shovel/spade, -/obj/item/reagent_containers/glass/bottle/nutrient/rh{ - pixel_x = 5 - }, -/obj/item/reagent_containers/glass/bottle/nutrient/ez{ - pixel_x = -5 +"bpp" = ( +/obj/structure/fence, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) +"bpL" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 }, -/obj/item/reagent_containers/syringe, -/obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/maintenance/department/medical/morgue) +/obj/machinery/photocopier, +/turf/open/floor/iron/dark, +/area/bridge/meeting_room) "bpM" = ( /obj/structure/sink/kitchen{ pixel_y = 28 @@ -3446,14 +3423,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/tech/grid, /area/ai_monitored/turret_protected/aisat_interior) -"bqR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/hallway/primary/fore) "bra" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ @@ -3461,6 +3430,18 @@ }, /turf/open/floor/plating, /area/storage/tech) +"brs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/blackbox_recorder, +/turf/open/floor/circuit/telecomms/mainframe{ + initial_gas_mix = "o2=22;n2=82;TEMP=293.15" + }, +/area/tcommsat/computer) "brZ" = ( /obj/machinery/holopad, /obj/effect/turf_decal/box, @@ -3494,52 +3475,25 @@ /obj/structure/railing, /turf/open/openspace, /area/maintenance/department/crew_quarters/bar) -"bsL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 +"btj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 }, -/obj/structure/window/reinforced, -/obj/machinery/camera/autoname/directional/west{ - network = list("ss13","security") +/turf/open/floor/iron/dark/corner{ + dir = 8 }, -/obj/structure/table, -/turf/open/floor/iron, -/area/security/brig) +/area/hallway/primary/fore) "btw" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/closed/wall, /area/maintenance/department/engine) -"btE" = ( -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/start/medical_doctor, -/obj/structure/chair/fancy/plastic, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/medical/surgery) -"btG" = ( -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = -25 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 +"bty" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/frame/computer{ + anchored = 1 }, -/turf/open/floor/wood, -/area/chapel/office) +/turf/open/floor/mineral/plastitanium, +/area/asteroid/paradise/surface) "btK" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -3562,18 +3516,9 @@ }, /turf/open/floor/wood, /area/crew_quarters/heads/captain) -"buj" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_one_access_txt = "7;29;12" - }, -/turf/open/floor/plating, -/area/maintenance/department/science/central) +"btX" = ( +/turf/closed/wall, +/area/library/abandoned) "bum" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 @@ -3590,6 +3535,21 @@ }, /turf/closed/wall/r_wall, /area/medical/patients_rooms) +"buG" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/iron, +/area/hallway/primary/fore) +"buU" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron, +/area/hallway/primary/fore) "buV" = ( /obj/machinery/door/poddoor/shutters{ id = "armory"; @@ -3607,12 +3567,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) -"bvt" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) "bvw" = ( /turf/open/openspace, /area/asteroid/paradise) @@ -3638,6 +3592,21 @@ /obj/structure/ladder, /turf/open/floor/plating, /area/maintenance/department/chapel) +"bvV" = ( +/obj/machinery/nanite_program_hub, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science RC"; + pixel_y = 30; + receive_ore_updates = 1 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","rd") + }, +/turf/open/floor/iron, +/area/science/research) "bvY" = ( /obj/structure/curtain/directional{ dir = 4 @@ -3645,27 +3614,6 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/security/detectives_office) -"bwa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/lawyer, -/turf/open/floor/plating, -/area/library/abandoned) -"bwk" = ( -/obj/machinery/light, -/obj/machinery/camera/autoname/directional/south{ - network = list("ss13","rd") - }, -/obj/machinery/power/apc/auto_name/directional/south{ - pixel_y = -24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 8 - }, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) "bwp" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -3702,20 +3650,27 @@ /obj/machinery/power/smes/engineering, /turf/open/floor/iron/dark, /area/engine/engineering) -"bwC" = ( -/obj/effect/turf_decal/box/white, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 +"bwD" = ( +/obj/machinery/door/airlock/highsecurity{ + id_tag = "Emergancycap"; + name = "Safe Room"; + req_access_txt = "10"; + security_level = 6 + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 + dir = 1 }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/iron/white, -/area/medical/surgery) +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/closeup, +/turf/open/floor/plating, +/area/crew_quarters/heads/captain) "bwI" = ( /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/plating, @@ -3739,6 +3694,23 @@ /obj/structure/lattice, /turf/open/openspace, /area/maintenance/department/crew_quarters/bar) +"bxz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/firealarm/directional/east, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/engineering/hallway) "bxD" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -3763,66 +3735,38 @@ /obj/machinery/space_heater, /turf/open/floor/iron, /area/ai_monitored/turret_protected/aisat/maint) -"byi" = ( -/obj/machinery/nanite_program_hub, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science RC"; - pixel_y = 30; - receive_ore_updates = 1 +"byk" = ( +/obj/structure/closet/secure_closet/lethalshots, +/obj/effect/turf_decal/bot, +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","rd") +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" }, -/turf/open/floor/iron, -/area/science/research) -"bym" = ( -/obj/machinery/computer/teleporter{ - dir = 1 +/obj/structure/cable/yellow{ + icon_state = "0-2" }, -/obj/effect/turf_decal/stripes/line{ +/obj/machinery/light{ dir = 1 }, -/obj/item/hand_tele{ - pixel_x = 1; - pixel_y = 7 +/turf/open/floor/iron/dark, +/area/ai_monitored/security/armory) +"byu" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 }, -/obj/machinery/requests_console{ - department = "EVA"; - pixel_x = 1; - pixel_y = -33 +/obj/structure/cable/yellow{ + icon_state = "0-2" }, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/iron/dark, -/area/teleporter) +/turf/open/floor/iron, +/area/maintenance/department/security/brig) "byH" = ( /obj/effect/spawner/room/threexfive, /turf/open/floor/plating, /area/maintenance/department/engine/atmos) -"bzj" = ( -/obj/structure/stairs, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_x = -15; - pixel_y = -31 - }, -/turf/open/floor/pod/dark, -/area/hallway/primary/fore) -"bzr" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/numbers/two_nine{ - dir = 1 - }, -/turf/open/floor/iron, -/area/hallway/primary/central) "bzE" = ( /obj/structure/cable{ icon_state = "4-8" @@ -3839,45 +3783,23 @@ name = "mainframe floor" }, /area/tcommsat/server) -"bAa" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark/side{ - dir = 6 - }, -/area/hallway/primary/central) -"bAs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - req_access_txt = "11" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible/layer5{ - dir = 4 +"bzO" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12"; + security_level = 6 }, -/turf/open/floor/iron/dark, -/area/engine/atmos) +/turf/open/floor/plating, +/area/maintenance/department/security/brig) "bAw" = ( /turf/open/floor/plating/dirt/jungle/wasteland, /area/asteroid/paradise/surface/sand) +"bAN" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/hallway/primary/aft) "bAQ" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -3890,6 +3812,28 @@ /obj/effect/spawner/lootdrop/maintenance/four, /turf/open/floor/iron/sepia, /area/quartermaster/storage) +"bBn" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Construction Area" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/wood, +/area/library/abandoned) +"bBz" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 34 + }, +/obj/machinery/camera/autoname/directional/north{ + c_tag = "Corporate Meeting Room" + }, +/obj/structure/chair/fancy/comfy{ + color = "#596479" + }, +/turf/open/floor/carpet/blue, +/area/bridge/meeting_room) "bBH" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -3897,41 +3841,6 @@ /obj/structure/railing/corner, /turf/open/floor/iron/techmaint/planetary, /area/asteroid/paradise/surface) -"bBJ" = ( -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/chapel/office) -"bBK" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/secure_closet/freezer/meat{ - req_access = null; - req_one_access_txt = "28;25;35" - }, -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/iron/freezer, -/area/crew_quarters/kitchen/coldroom) "bBQ" = ( /obj/effect/turf_decal/sand/plating, /obj/structure/flora/rock, @@ -3951,12 +3860,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/dorms) -"bDq" = ( -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/medical/medbay/central) "bDz" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 9 @@ -3987,9 +3890,6 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/storage) -"bDV" = ( -/turf/open/floor/wood, -/area/library/abandoned) "bDW" = ( /obj/effect/turf_decal/delivery, /obj/structure/cable/yellow{ @@ -4025,6 +3925,19 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, /turf/open/floor/plating/asteroid/planetary, /area/quartermaster/storage) +"bEx" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/engineering/hallway) "bEB" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch"; @@ -4033,26 +3946,40 @@ /obj/effect/mapping_helpers/airlock/abandoned, /turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat/maint) -"bEO" = ( -/turf/open/floor/glass/reinforced/plasma, -/area/engineering/hallway) +"bEQ" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/freezer, +/area/crew_quarters/kitchen/coldroom) +"bFv" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","rd") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/science/mixing) "bFY" = ( /obj/machinery/atmospherics/miner/station/n2o, /obj/machinery/atmospherics/pipe/simple/green/hidden, /turf/open/floor/engine/n2o, /area/engine/atmos) -"bGh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" +"bGc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/ai_slipper{ + uses = 10 }, -/turf/open/floor/plating, -/area/security/prison) +/turf/open/floor/iron/dark, +/area/bridge) "bGl" = ( /obj/machinery/power/compressor{ comp_id = "incineratorturbineLeft"; @@ -4068,23 +3995,6 @@ }, /turf/open/floor/engine/vacuum, /area/maintenance/disposal/incinerator) -"bGq" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced/prison, -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" - }, -/turf/open/floor/plating, -/area/security/prison) "bGD" = ( /obj/effect/turf_decal/sand/plating, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, @@ -4102,6 +4012,17 @@ }, /turf/open/floor/prison/dark, /area/security/prison) +"bGP" = ( +/obj/machinery/power/solar{ + id = "portsolar"; + name = "Port Solar Array" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/iron/solarpanel, +/area/asteroid/paradise/surface) "bHi" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/railing/corner, @@ -4151,20 +4072,33 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /turf/open/floor/engine, /area/ai_monitored/turret_protected/ai) +"bIF" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) "bIK" = ( /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise/surface) -"bIZ" = ( -/obj/structure/sign/painting/library{ - pixel_y = 32 +"bIO" = ( +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 }, -/obj/machinery/shower{ - name = "emergency shower"; - pixel_y = 7 +/obj/structure/cable/yellow{ + icon_state = "0-4" }, -/obj/effect/turf_decal/stripes/end, -/turf/open/floor/noslip/white, -/area/medical/medbay/central) +/obj/structure/toilet{ + dir = 4; + pixel_y = 2 + }, +/turf/open/floor/prison/dark, +/area/security/prison/shielded) "bJi" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch"; @@ -4177,6 +4111,14 @@ /obj/structure/flora/rock/pile, /turf/open/floor/plating/asteroid/basalt/planetary, /area/engine/atmos) +"bJr" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/turf_decal/tile/red{ + alpha = 180; + dir = 1 + }, +/turf/open/floor/iron/dark/side, +/area/hallway/primary/central) "bJQ" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 1 @@ -4186,6 +4128,14 @@ }, /turf/open/floor/iron/dark, /area/engine/engineering) +"bJS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/rnd/production/circuit_imprinter, +/obj/structure/window/plasma/reinforced, +/turf/open/floor/iron, +/area/engine/engineering) "bKc" = ( /obj/machinery/air_sensor/atmos/nitrogen_tank, /obj/machinery/atmospherics/pipe/manifold/yellow/hidden/layer2{ @@ -4200,6 +4150,18 @@ }, /turf/open/floor/plating, /area/quartermaster/sorting) +"bKO" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark, +/area/hallway/primary/central) +"bKR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopshutter"; + name = "Privacy Shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hop) "bKV" = ( /obj/structure/closet/crate, /obj/effect/spawner/lootdrop/maintenance/two, @@ -4223,13 +4185,6 @@ }, /turf/open/floor/prison, /area/security/prison) -"bLn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/iron, -/area/hallway/primary/fore) "bLZ" = ( /obj/effect/turf_decal/siding/white{ alpha = 100 @@ -4271,17 +4226,16 @@ }, /turf/open/floor/iron, /area/security/brig) -"bMB" = ( -/obj/effect/turf_decal/tile/dark_red{ - alpha = 180; - color = "#DE3A3A"; - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 +"bMq" = ( +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 + dir = 4 + }, +/obj/structure/railing, +/obj/structure/cable/yellow{ + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -4289,10 +4243,11 @@ /obj/structure/disposalpipe/segment{ dir = 5 }, -/turf/open/floor/iron/dark/side{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/orange/visible/layer5{ + dir = 4 }, -/area/hallway/primary/fore) +/turf/open/floor/catwalk_floor/iron_dark, +/area/engine/atmos) "bMN" = ( /obj/effect/turf_decal/siding/white{ alpha = 100 @@ -4310,37 +4265,35 @@ dir = 9 }, /area/asteroid/paradise/surface/water) -"bNd" = ( -/obj/structure/railing{ - dir = 4 +"bMW" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" }, -/turf/open/floor/plating/asteroid/planetary, -/area/asteroid/paradise/surface) -"bNF" = ( -/obj/effect/turf_decal/box/white, /obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/junction, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) -"bOd" = ( -/obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/cable{ - icon_state = "1-8" +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/obj/structure/cable{ - icon_state = "2-8" +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/turf/open/floor/catwalk_floor/iron_dark, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/iron, +/area/security/brig) +"bNd" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise/surface) -"bOh" = ( -/obj/structure/lattice/catwalk/over, -/obj/item/kirbyplants/random, -/turf/open/openspace, -/area/engineering/hallway) "bOi" = ( /obj/structure/fence/corner{ dir = 4 @@ -4349,15 +4302,6 @@ dir = 5 }, /area/asteroid/paradise/surface) -"bOk" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/dark/corner{ - dir = 8 - }, -/turf/open/floor/iron, -/area/hallway/primary/aft) "bOo" = ( /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 1 @@ -4370,51 +4314,6 @@ dir = 4 }, /area/science/research) -"bOv" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"bOK" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/britcup{ - pixel_x = 5; - pixel_y = 8 - }, -/obj/item/restraints/handcuffs{ - pixel_x = -2; - pixel_y = -2 - }, -/turf/open/floor/iron, -/area/security/brig) -"bOM" = ( -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/light, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/crew_quarters/heads/cmo) "bOR" = ( /obj/effect/turf_decal/delivery, /obj/item/xenoartifact, @@ -4435,13 +4334,6 @@ }, /turf/open/floor/iron, /area/maintenance/department/crew_quarters/bar) -"bPd" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/dark_blue{ - alpha = 180 - }, -/turf/open/floor/iron, -/area/hallway/primary/central) "bPo" = ( /obj/machinery/door/airlock/mining{ name = "Quartermaster's Office"; @@ -4450,7 +4342,7 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, /area/quartermaster/qm) -"bPK" = ( +"bPr" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -4485,21 +4377,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"bQM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/visible{ - dir = 8 - }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/engine/engineering) "bRk" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -4514,27 +4391,27 @@ }, /turf/open/floor/iron, /area/maintenance/disposal/incinerator) -"bRN" = ( -/obj/structure/disposalpipe/segment{ - dir = 2 +"bRn" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 +/obj/structure/cable/yellow{ + icon_state = "1-4" }, -/turf/open/floor/iron/white, -/area/medical/surgery) -"bSm" = ( -/obj/item/radio/intercom{ - broadcasting = 1; - canhear_range = 6; - dir = 8; - name = "Station Intercom (Court)"; - pixel_x = 33; - pixel_y = -4 +/turf/open/floor/iron/techmaint/planetary, +/area/asteroid/paradise/surface) +"bSl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/turf/open/floor/plating, -/area/library/abandoned) +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/central) "bSF" = ( /obj/machinery/meter{ target_layer = 4 @@ -4547,11 +4424,6 @@ }, /turf/open/floor/iron/tech, /area/engine/atmos) -"bSK" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/security/brig) "bSM" = ( /obj/structure/railing, /obj/effect/decal/cleanable/dirt/dust, @@ -4569,13 +4441,33 @@ }, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/bar) -"bTi" = ( -/obj/effect/turf_decal/siding/red{ - alpha = 100; - dir = 8 +"bSN" = ( +/obj/machinery/door/poddoor/incinerator_toxmix{ + id = "EmergancyescapeShutter"; + name = "Emergancy Escape Shutters" }, -/turf/open/floor/plating/beach/coastline_b{ - dir = 1 +/turf/open/floor/plating, +/area/maintenance/department/science/central) +"bSX" = ( +/obj/machinery/computer/prisoner/management, +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/keycard_auth{ + pixel_x = -32 + }, +/turf/open/floor/iron/dark, +/area/crew_quarters/heads/hos) +"bTi" = ( +/obj/effect/turf_decal/siding/red{ + alpha = 100; + dir = 8 + }, +/turf/open/floor/plating/beach/coastline_b{ + dir = 1 }, /area/asteroid/paradise/surface/water) "bTY" = ( @@ -4603,13 +4495,22 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/wood, /area/crew_quarters/cafeteria) -"bUT" = ( -/obj/structure/sign/directions/supply{ - dir = 8; - pixel_y = 10 +"bUC" = ( +/obj/structure/window/plasma/reinforced{ + dir = 4 }, -/turf/closed/wall, -/area/hallway/primary/aft) +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/rad_collector/anchored, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/supermatter) "bVa" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -4617,6 +4518,21 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/maintenance/department/bridge) +"bVM" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/frame/computer{ + anchored = 1; + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) "bVS" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 @@ -4641,16 +4557,15 @@ /obj/machinery/icecream_vat, /turf/open/floor/iron/freezer, /area/crew_quarters/kitchen/coldroom) -"bWA" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "4-8" +"bWT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/obj/effect/turf_decal/evac/evac_big{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 }, -/turf/open/floor/plating, -/area/maintenance/department/eva) +/turf/open/floor/iron/tech, +/area/engine/atmos) "bXa" = ( /obj/machinery/modular_fabricator/autolathe, /obj/effect/turf_decal/stripes/box, @@ -4677,29 +4592,14 @@ /obj/effect/spawner/room/tenxfive, /turf/open/floor/plating, /area/maintenance/department/eva) -"bYh" = ( -/obj/effect/turf_decal/tile/dark_blue{ - alpha = 180 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, +"bYf" = ( +/obj/effect/turf_decal/sand/plating, +/obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 9 + icon_state = "4-8" }, -/area/hallway/primary/fore) +/turf/open/floor/plating/asteroid/planetary, +/area/asteroid/paradise/surface) "bYj" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch"; @@ -4719,32 +4619,60 @@ }, /turf/open/floor/plating, /area/hydroponics) -"bZb" = ( -/obj/machinery/button/door{ - id = "Chefwindow"; - name = "Chef Shutters Control"; - pixel_y = -27; - req_one_access_txt = "28;25;35" +"bYp" = ( +/obj/structure/closet/l3closet/virology, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/clipboard{ - name = "menu"; - pixel_x = -2; - pixel_y = 4 +/obj/item/storage/box/beakers{ + pixel_x = 4; + pixel_y = 14 }, -/obj/structure/disposalpipe/segment{ - dir = 8 +/obj/item/storage/bag/bio, +/obj/item/slime_scanner, +/obj/item/storage/box/syringes, +/turf/open/floor/iron/grid/steel, +/area/science/xenobiology) +"bYs" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/modular_computer/console/preset/curator, +/obj/structure/light_construct{ + dir = 1 }, -/obj/item/paper{ - pixel_y = 3 +/turf/open/floor/carpet/royalblack, +/area/library/abandoned) +"bYy" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Chefwindow"; - name = "Chef Window" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) +/turf/open/floor/catwalk_floor/iron_dark, +/area/hallway/primary/central) +"bYA" = ( +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/central) +"bYV" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/mob/living/simple_animal/pet/hamster/vector{ + pixel_x = 1; + pixel_y = 10 + }, +/turf/open/floor/iron, +/area/asteroid/paradise) "bZe" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ @@ -4778,6 +4706,12 @@ }, /turf/open/floor/carpet/purple, /area/crew_quarters/cafeteria) +"bZO" = ( +/obj/structure/railing{ + dir = 5 + }, +/turf/open/openspace, +/area/engineering/hallway) "cae" = ( /turf/closed/wall/r_wall, /area/science/mixing/chamber) @@ -4830,25 +4764,12 @@ name = "mainframe floor" }, /area/tcommsat/server) -"caO" = ( -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/department/medical/central) -"cbd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood/broken, -/area/library/abandoned) -"cbg" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/fans/tiny{ - density = 1; - icon = 'icons/effects/effects.dmi'; - icon_state = "m_shield"; - max_integrity = 1e+007 - }, -/turf/open/floor/plating/asteroid/basalt/planetary, -/area/quartermaster/storage) +"caT" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/bot, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) "cbh" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/dirt/dust, @@ -4864,6 +4785,23 @@ "cbm" = ( /turf/closed/mineral/random/air, /area/quartermaster/storage) +"cbu" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_y = 25 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_y = 21 + }, +/obj/effect/turf_decal/siding/wood, +/obj/item/food/spaghetti/beefnoodle{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/turf_decal/siding/white, +/obj/structure/railing, +/turf/open/floor/carpet/green, +/area/crew_quarters/cafeteria) "cbI" = ( /obj/structure/railing, /turf/open/floor/iron/stairs/right{ @@ -4874,15 +4812,17 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/iron/grid/steel, /area/medical/patients_rooms) -"cci" = ( -/obj/machinery/ai_slipper{ - uses = 10 +"ccc" = ( +/obj/structure/railing/corner{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/cable/yellow{ + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/iron, -/area/science/mixing) +/area/hallway/primary/central) "ccl" = ( /obj/structure/flora/ausbushes/sparsegrass, /turf/open/floor/plating/asteroid/basalt/planetary, @@ -4912,6 +4852,24 @@ }, /turf/open/floor/plating/asteroid/basalt/planetary, /area/asteroid/paradise) +"cdn" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/engine/engineering) "cdq" = ( /obj/structure/window/plasma/reinforced{ dir = 4 @@ -4940,23 +4898,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/medical/central) -"ceg" = ( -/obj/effect/turf_decal/tile/dark_blue{ - alpha = 180; - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark/side{ - dir = 10 - }, -/area/hallway/primary/fore) "cel" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/power/apc/auto_name/directional/west{ @@ -4975,15 +4916,6 @@ /obj/machinery/computer/station_alert, /turf/open/floor/engine, /area/ai_monitored/turret_protected/aisat/foyer) -"cen" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark/side{ - dir = 5 - }, -/area/hallway/primary/aft) "ceR" = ( /obj/structure/table, /obj/machinery/status_display/ai{ @@ -5028,69 +4960,54 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/storage) -"cfw" = ( -/obj/structure/stairs, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/pod/dark, -/area/hallway/primary/fore) -"cgb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +"cfJ" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 }, -/obj/structure/disposalpipe/multiz/down{ +/obj/effect/landmark/start/chief_medical_officer, +/turf/open/floor/iron/white, +/area/crew_quarters/heads/cmo) +"cgc" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/lootdrop/donkpockets{ + pixel_x = -1; + pixel_y = 11 + }, +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light{ dir = 8 }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/hallway/primary/fore) -"cgu" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron, +/area/engineering/hallway) +"cgI" = ( +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 +/turf/open/floor/iron/showroomfloor, +/area/crew_quarters/fitness/recreation) +"cgQ" = ( +/obj/effect/turf_decal/tile/purple/fourcorners/contrasted, +/obj/structure/railing, +/obj/effect/turf_decal/siding/white, +/obj/machinery/ai_slipper{ + uses = 10 }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/engine/engineering) -"cgP" = ( -/obj/structure/railing{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/turf/open/openspace, -/area/maintenance/department/security/brig) +/turf/open/floor/iron/white, +/area/science/lab) "chG" = ( /turf/open/floor/plating/beach/coastline_b{ dir = 8 }, /area/asteroid/paradise/surface/water) -"chS" = ( -/obj/effect/spawner/structure/window/hollow/survival_pod/directional, -/obj/structure/curtain/directional{ - dir = 8 - }, -/turf/open/floor/plating, -/area/hallway/primary/fore) -"cid" = ( -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/science/robotics) "cii" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/techstorage/service, @@ -5112,6 +5029,15 @@ /obj/structure/closet/crate, /turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat/maint) +"ciU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/hallway/primary/fore) "cjj" = ( /obj/effect/turf_decal/siding/white/corner{ alpha = 100; @@ -5129,11 +5055,6 @@ /obj/structure/closet/crate, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/dorms) -"cjI" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/chair/fancy/plastic, -/turf/open/floor/iron, -/area/maintenance/department/chapel) "cjJ" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -5142,6 +5063,24 @@ slowdown = 0 }, /area/asteroid/paradise/surface) +"cks" = ( +/obj/item/radio/intercom{ + pixel_y = 23 + }, +/obj/machinery/button/door{ + id = "psypriv"; + name = "Psycology Shutters Control"; + pixel_y = 37 + }, +/obj/structure/table/wood, +/obj/machinery/computer/med_data/laptop{ + pixel_y = 4 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","medbay") + }, +/turf/open/floor/wood, +/area/medical/exam_room) "ckI" = ( /turf/open/floor/plating/beach/coastline_b{ dir = 4 @@ -5156,19 +5095,21 @@ }, /turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat/maint) -"clc" = ( -/obj/structure/railing/corner, -/obj/effect/turf_decal/siding/dark/corner, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/central) -"clm" = ( -/obj/structure/fence{ - dir = 8 +"cle" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/structure/sign/warning/securearea, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/effect/spawner/structure/window, +/obj/structure/curtain/directional{ + color = "#ACD1E9"; + icon_state = "bathroom-open"; + icon_type = "bathroom" + }, +/turf/open/floor/plating, +/area/medical/surgery) "clO" = ( /obj/machinery/vending/boozeomat, /turf/closed/wall, @@ -5180,6 +5121,85 @@ }, /turf/open/floor/plating, /area/maintenance/department/cargo) +"cmk" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/iron, +/area/quartermaster/sorting) +"cmD" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"cmN" = ( +/turf/open/floor/glass/reinforced/plasma, +/area/engineering/hallway) +"cmR" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/maintenance/department/engine/atmos) +"cmS" = ( +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/chapel/office) +"cmT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/engine/engineering) "cmX" = ( /obj/effect/turf_decal/tile/red/anticorner/contrasted, /obj/machinery/photocopier, @@ -5238,13 +5258,6 @@ }, /turf/open/floor/iron, /area/engine/atmos) -"cnD" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/sign/map/echo{ - pixel_x = -32 - }, -/turf/open/floor/iron, -/area/hallway/primary/fore) "cnJ" = ( /obj/structure/flora/ausbushes/sparsegrass, /turf/open/floor/plating/asteroid/planetary, @@ -5257,36 +5270,42 @@ }, /turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat/maint) -"cnW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/tech, -/area/engine/atmos) -"cnX" = ( -/obj/machinery/door/airlock/security{ - name = "Detective's Office"; - req_access_txt = "4" +"cnT" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Engi Desk"; + req_one_access_txt = "32;19" }, -/obj/structure/cable/yellow{ - icon_state = "4-8" +/obj/item/paper_bin{ + pixel_x = 7; + pixel_y = 2 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +/obj/item/pen{ + pixel_x = 7; + pixel_y = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/obj/structure/desk_bell{ + pixel_x = -6; + pixel_y = 3 }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/closeup{ - dir = 1 +/obj/machinery/door/poddoor/preopen{ + id = "Engidesk"; + name = "engineering Security Door" }, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 2 }, -/turf/open/floor/wood, -/area/security/detectives_office) +/turf/open/floor/iron/dark, +/area/engine/engineering) +"cnW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/tech, +/area/engine/atmos) "com" = ( /obj/structure/table, /obj/effect/turf_decal/stripes/line{ @@ -5319,19 +5338,10 @@ }, /turf/open/floor/iron/dark, /area/teleporter) -"coB" = ( -/obj/structure/chair/stool/bar/directional/west, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","engine") - }, -/turf/open/floor/iron/dark, -/area/engineering/hallway) +"coy" = ( +/obj/effect/spawner/structure/window/shuttle, +/turf/open/floor/plating, +/area/asteroid/paradise/surface) "coF" = ( /obj/structure/closet/crate/hydroponics{ req_access_txt = "35;28" @@ -5341,15 +5351,6 @@ /obj/item/clothing/mask/vape, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/bar) -"coO" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/sign/map/echo{ - pixel_x = -32 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/aft) "coR" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 @@ -5364,10 +5365,6 @@ /obj/item/clothing/head/chaplain/nun_hood, /turf/open/floor/carpet/green, /area/chapel/main) -"cpc" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/mineral/plastitanium, -/area/asteroid/paradise/surface) "cpg" = ( /obj/machinery/holopad, /obj/effect/turf_decal/box, @@ -5376,38 +5373,22 @@ }, /turf/open/floor/iron, /area/science/robotics) -"cpt" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-16" - }, -/obj/effect/turf_decal/trimline/yellow, -/obj/effect/landmark/start/station_engineer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 10 +"cpu" = ( +/obj/structure/toilet{ + pixel_x = -1; + pixel_y = 6 }, -/obj/machinery/atmospherics/pipe/simple/orange/visible/layer5{ - dir = 4 +/obj/machinery/button/door{ + id = "Toilet 2"; + name = "Toilet Bolt Control"; + normaldoorcontrol = 1; + pixel_y = -32; + specialfunctions = 4 }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/engine/atmos) +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small, +/turf/open/floor/iron/techmaint/planetary, +/area/hallway/primary/fore) "cpL" = ( /obj/machinery/door/airlock/command{ name = "Gateway Access"; @@ -5426,16 +5407,42 @@ /obj/effect/turf_decal/stripes/closeup, /turf/open/floor/iron/dark, /area/gateway) -"cqi" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light{ +"cpM" = ( +/obj/effect/turf_decal/tile/black/opposingcorners{ dir = 1 }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","cargo") +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot, +/obj/machinery/power/apc/auto_name/directional/south{ + pixel_y = -24 }, -/turf/open/floor/plating/asteroid/basalt/planetary, -/area/quartermaster/storage) +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/iron/white, +/area/crew_quarters/heads/hor) +"cpR" = ( +/obj/effect/spawner/lootdrop/aimodule_harmless, +/obj/effect/spawner/lootdrop/aimodule_harmless, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = -1; + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/spawner/lootdrop/aimodule_harmless, +/obj/machinery/power/apc/auto_name/directional/east{ + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/table/reinforced, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) "cqs" = ( /obj/machinery/holopad, /obj/structure/cable/yellow{ @@ -5446,14 +5453,10 @@ }, /turf/open/floor/carpet/red, /area/medical/exam_room) -"cqv" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/hallway/primary/aft) +"cqB" = ( +/obj/structure/frame/machine, +/turf/open/floor/iron, +/area/hallway/primary/fore) "cqD" = ( /obj/effect/spawner/structure/window, /obj/machinery/door/poddoor/preopen{ @@ -5462,27 +5465,14 @@ }, /turf/open/floor/plating, /area/science/lab) -"cqF" = ( -/obj/machinery/light_switch{ - pixel_x = -24; - pixel_y = 27 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/machinery/status_display/ai{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/security/detectives_office) +"cqR" = ( +/obj/structure/frame/machine, +/turf/open/floor/wood, +/area/library/abandoned) +"crm" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/asteroid/paradise/surface) "crG" = ( /turf/open/floor/iron, /area/science/robotics) @@ -5511,43 +5501,20 @@ /turf/open/floor/iron/techmaint/planetary, /area/asteroid/paradise/surface) "csf" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"csB" = ( -/obj/effect/turf_decal/tile/dark_red{ - alpha = 180; - color = "#DE3A3A"; - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 6 - }, -/area/hallway/primary/fore) -"csG" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/delivery, -/obj/structure/cable/yellow{ - icon_state = "2-4" +/obj/structure/railing{ + dir = 10 }, -/obj/structure/cable/yellow{ - icon_state = "1-2" +/turf/open/openspace, +/area/engineering/hallway) +"css" = ( +/obj/structure/railing{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 10 +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 }, /turf/open/floor/iron, -/area/maintenance/department/engine/atmos) +/area/hallway/primary/aft) "csL" = ( /obj/structure/chair/stool{ pixel_y = 8 @@ -5567,9 +5534,6 @@ dir = 5 }, /area/asteroid/paradise/surface) -"csX" = ( -/turf/open/floor/iron, -/area/hallway/primary/fore) "cto" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -5586,10 +5550,48 @@ }, /turf/open/floor/carpet/red, /area/crew_quarters/heads/hos) +"ctM" = ( +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","rd"); + dir = 4 + }, +/turf/open/floor/iron/white, +/area/science/robotics) "ctU" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/medical/medbay/central) +"cuZ" = ( +/obj/machinery/button/door{ + id = "hopshutter"; + name = "Privacy Shutter Control"; + pixel_x = -38; + pixel_y = 26; + req_access_txt = "57" + }, +/obj/machinery/button/door{ + id = "hopqueue"; + name = "Queue Shutter Control"; + pixel_x = -38; + pixel_y = 37; + req_access_txt = "57" + }, +/obj/machinery/button/flasher{ + id = "hopflash"; + pixel_x = -25; + pixel_y = 37 + }, +/obj/machinery/keycard_auth{ + pixel_x = -25; + pixel_y = 27 + }, +/obj/structure/chair/office, +/obj/effect/landmark/start/head_of_personnel, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/heads/hop) "cvu" = ( /obj/machinery/power/terminal{ dir = 8 @@ -5613,11 +5615,18 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/closed/wall, /area/crew_quarters/heads/chief) -"cwu" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/iron/techmaint/planetary, +"cvE" = ( +/obj/effect/spawner/structure/window/hollow/survival_pod/directional, +/obj/structure/curtain/directional{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/primary/fore) +"cwc" = ( +/obj/machinery/shuttle/engine/plasma{ + dir = 1 + }, +/turf/open/floor/plating/dirt/planetary, /area/asteroid/paradise/surface) "cwz" = ( /obj/structure/cable/yellow{ @@ -5636,6 +5645,17 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/maintenance/department/bridge) +"cxj" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 12; + pixel_y = 3 + }, +/turf/open/floor/iron/grid/steel, +/area/medical/patients_rooms) "cxy" = ( /obj/machinery/light{ dir = 4 @@ -5645,17 +5665,6 @@ }, /turf/open/floor/wood, /area/chapel/main) -"cxE" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - alpha = 180; - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/security/brig) "cxL" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/dark/visible{ @@ -5671,15 +5680,6 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /turf/open/floor/catwalk_floor/iron_dark, /area/maintenance/disposal/incinerator) -"cxT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/structure/disposalpipe/sorting/mail/destination/chapel{ - dir = 1 - }, -/turf/open/floor/iron, -/area/hallway/primary/central) "cyj" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -5721,17 +5721,10 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/wood, /area/crew_quarters/dorms) -"cyP" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/iron, -/area/maintenance/department/crew_quarters/bar) -"czv" = ( -/obj/effect/turf_decal/stripes/line, +"cyT" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, -/area/hallway/primary/central) +/area/maintenance/department/medical/central) "czB" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -5789,38 +5782,47 @@ /obj/item/paicard, /turf/open/floor/plating, /area/hallway/secondary/service) -"cBo" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" +"cAK" = ( +/obj/machinery/airalarm/all_access{ + dir = 4; + pixel_x = 24 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 7 }, -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ +/obj/item/pen{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/machinery/light{ dir = 4 }, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/catwalk_floor/iron_dark, -/area/crew_quarters/heads/hop) -"cBp" = ( -/obj/structure/railing/corner{ +/obj/machinery/power/terminal{ dir = 1 }, -/obj/effect/turf_decal/siding/dark/corner{ - dir = 8 +/obj/structure/cable{ + icon_state = "0-2" }, -/turf/open/floor/iron/dark/side{ - dir = 9 +/obj/machinery/camera/autoname/directional/east{ + network = list("ss13","engine") }, -/area/hallway/primary/central) +/obj/item/storage/toolbox/emergency{ + pixel_x = 3; + pixel_y = -1 + }, +/obj/item/extinguisher/advanced{ + pixel_x = -8; + pixel_y = 2 + }, +/obj/effect/loot_jobscale/medical/burn_kit, +/turf/open/floor/iron, +/area/maintenance/disposal/incinerator) "cBs" = ( /obj/machinery/holopad, /obj/effect/turf_decal/stripes/line, @@ -5830,6 +5832,16 @@ /obj/effect/turf_decal/box, /turf/open/floor/engine, /area/security/nuke_storage) +"cBx" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/maintenance/department/engine) "cBz" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -5839,23 +5851,29 @@ /obj/effect/spawner/lootdrop/maintenance/two, /turf/open/floor/iron, /area/maintenance/department/eva) -"cCc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +"cBL" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 }, -/turf/open/floor/iron, -/area/hallway/primary/aft) -"cCy" = ( -/obj/effect/turf_decal/siding/dark, -/obj/machinery/ai_slipper{ - uses = 10 +/obj/structure/disposalpipe/segment{ + dir = 10 }, -/obj/structure/railing/corner{ +/turf/open/floor/iron/sepia, +/area/quartermaster/storage) +"cCo" = ( +/obj/effect/turf_decal/siding/dark{ dir = 8 }, -/obj/structure/railing/corner, -/turf/open/floor/iron/dark/side, -/area/hallway/primary/central) +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/engineering/hallway) "cCz" = ( /obj/structure/sign/departments/minsky/security/security, /turf/closed/wall/r_wall, @@ -5865,33 +5883,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/wood, /area/crew_quarters/heads/captain) -"cCH" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/vending/wallmed{ - pixel_x = -32 - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","medbay") - }, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/layer_4, -/turf/open/floor/iron/grid/steel, -/area/medical/medbay/central) -"cDv" = ( -/obj/structure/table/wood, -/obj/item/screwdriver, -/obj/item/hatchet, -/obj/item/paicard, -/turf/open/floor/iron, -/area/hallway/primary/fore) "cDx" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -5925,6 +5916,16 @@ /obj/effect/spawner/lootdrop/maintenance/two, /turf/open/floor/iron, /area/maintenance/department/crew_quarters/dorms) +"cDE" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/machinery/camera/autoname/directional/east{ + network = list("ss13","security") + }, +/turf/open/floor/iron, +/area/security/brig) "cDM" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -5935,6 +5936,17 @@ }, /turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat/maint) +"cDT" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 + }, +/obj/structure/bookcase/manuals/medical, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/wood, +/area/medical/exam_room) "cDV" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/curtain/directional{ @@ -5942,15 +5954,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/dorms) -"cDX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/obj/structure/disposalpipe/sorting/mail/destination/threatre{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/cafeteria) "cDY" = ( /obj/structure/window/reinforced{ dir = 8 @@ -5963,20 +5966,6 @@ }, /turf/open/floor/carpet/green, /area/crew_quarters/cafeteria) -"cEi" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2, -/obj/structure/window/plasma/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/thermomachine/heater/layer_4, -/turf/open/floor/iron, -/area/engine/atmos) "cEk" = ( /obj/effect/turf_decal/sand/plating, /turf/open/floor/plating/asteroid/basalt/planetary, @@ -5986,41 +5975,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroid/basalt/planetary, /area/asteroid/paradise) -"cED" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on, -/turf/open/floor/iron/dark/telecomms{ - initial_gas_mix = "o2=22;n2=82;TEMP=293.15" - }, -/area/tcommsat/computer) -"cEZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/landmark/start/scientist, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/grid/steel, -/area/science/mixing) "cFb" = ( /obj/structure/ladder, /turf/open/floor/pod/dark, /area/maintenance/department/security/brig) +"cFf" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/library/abandoned) "cFp" = ( /obj/structure/chair/fancy/comfy{ color = "#596479"; @@ -6061,32 +6023,6 @@ }, /turf/open/floor/iron/sepia, /area/quartermaster/storage) -"cGz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/numbers/two_nine{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/hallway/primary/central) -"cGQ" = ( -/obj/machinery/camera/autoname/directional/north, -/turf/open/openspace, -/area/crew_quarters/kitchen) -"cHc" = ( -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","rd") - }, -/turf/open/openspace, -/area/science/explab) "cHg" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/computer/atmos_control/tank/mix_tank, @@ -6111,6 +6047,34 @@ }, /turf/open/floor/iron/techmaint/planetary, /area/asteroid/paradise/surface) +"cHY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "brigentrance"; + name = "Brig Blast Door" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/warden) +"cIo" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/iron, +/area/hallway/primary/central) "cIr" = ( /obj/machinery/holopad, /obj/effect/turf_decal/box, @@ -6142,21 +6106,35 @@ /mob/living/simple_animal/bot/cleanbot/medbay, /turf/open/floor/iron/grid/steel, /area/medical/medbay/central) -"cJf" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 +"cJd" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + alpha = 180; + dir = 4 }, -/turf/open/floor/iron, -/area/maintenance/department/crew_quarters/dorms) -"cJx" = ( -/obj/effect/spawner/structure/window, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/newscaster{ + pixel_y = 33 }, -/turf/open/floor/plating, -/area/science/mixing) +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/rnd/production/techfab/department/security, +/turf/open/floor/iron/dark, +/area/security/warden) +"cJf" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/iron, +/area/maintenance/department/crew_quarters/dorms) +"cJn" = ( +/turf/open/floor/wood, +/area/library/abandoned) +"cJo" = ( +/obj/effect/landmark/observer_start, +/turf/open/floor/glass/reinforced, +/area/hallway/primary/central) "cJP" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/door/airlock/engineering{ @@ -6181,12 +6159,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, /area/maintenance/department/crew_quarters/dorms) -"cJR" = ( -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/hallway/primary/central) "cKi" = ( /obj/structure/table/reinforced, /obj/item/aiModule/supplied/freeform, @@ -6209,11 +6181,26 @@ }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) +"cKl" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/numbers/two_nine{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/central) "cKs" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/sand/plating, /turf/open/floor/plating/asteroid/basalt/planetary, /area/quartermaster/storage) +"cKB" = ( +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) "cKK" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -6221,50 +6208,9 @@ /obj/machinery/telecomms/processor/preset_two, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) -"cLp" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "brigentrance"; - name = "Brig Blast Door" - }, -/turf/open/floor/plating, -/area/security/brig) -"cLw" = ( -/obj/structure/toilet{ - pixel_x = -1; - pixel_y = 6 - }, -/obj/machinery/button/door{ - id = "Toilet 1"; - name = "Toilet Bolt Control"; - normaldoorcontrol = 1; - pixel_y = -31; - specialfunctions = 4 - }, -/obj/machinery/light/small, -/turf/open/floor/iron/techmaint/planetary, +"cKT" = ( +/turf/closed/wall/mineral/titanium/survival/nodiagonal, /area/hallway/primary/fore) -"cLN" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/multiz{ - dir = 8 - }, -/turf/open/floor/carpet/royalblue, -/area/crew_quarters/heads/chief) "cLW" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/chair/office/light{ @@ -6273,6 +6219,10 @@ /obj/effect/landmark/start/roboticist, /turf/open/floor/iron, /area/science/robotics) +"cMd" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/mineral/titanium/survival, +/area/hallway/primary/fore) "cMn" = ( /obj/structure/railing, /turf/open/openspace, @@ -6282,32 +6232,18 @@ /obj/structure/reflector/box, /turf/open/floor/iron, /area/engine/engineering) -"cNt" = ( -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/ai"; - icon_state = "control_stun"; - name = "AI Chamber turret control"; - pixel_x = -1; - pixel_y = 33 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +"cNL" = ( +/obj/machinery/door/airlock/security{ + name = "Autopsy"; + req_access_txt = "4" }, -/obj/machinery/camera/autoname/directional/north{ - network = list("aiupload") +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/turf/open/floor/iron/tech/grid, -/area/ai_monitored/turret_protected/aisat_interior) -"cNI" = ( -/obj/effect/turf_decal/evac, -/turf/open/floor/iron, -/area/hallway/primary/central) +/obj/effect/turf_decal/stripes/closeup, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/security/detectives_office) "cOp" = ( /turf/open/openspace, /area/crew_quarters/kitchen) @@ -6329,56 +6265,12 @@ }, /turf/open/floor/plating/dirt/planetary, /area/asteroid/paradise/surface) -"cPi" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron/dark, -/area/engine/engineering) -"cPv" = ( -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = 40 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/medical/surgery) "cQe" = ( /obj/structure/stairs{ dir = 8 }, /turf/open/floor/pod/dark, /area/engine/atmos) -"cQs" = ( -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/obj/machinery/button/door{ - desc = "A remote control-switch for secure storage."; - id = "engsm"; - name = "Radiation shutters Toggle"; - pixel_y = 26; - req_access_txt = "11" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/caution{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/supermatter) "cRd" = ( /obj/structure/sign/directions/evac{ pixel_y = 7 @@ -6393,31 +6285,6 @@ }, /turf/closed/wall/r_wall, /area/bridge) -"cRh" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/mixer/layer4{ - dir = 4 - }, -/turf/open/floor/iron/tech, -/area/engine/atmos) -"cRo" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/dark/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/hallway/primary/central) "cRp" = ( /obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ alpha = 180; @@ -6437,50 +6304,41 @@ }, /turf/open/floor/iron, /area/security/brig) -"cRT" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/item/paper/pamphlet/centcom/visitor_info{ - default_raw_text = " XCC-P5831 Visitor Information
\ntGreetings, visitor, to XCC-P5831! As you may know, this outpost was once \ntused as Nanotrasen's CENTRAL COMMAND STATION, organizing and coordinating company \ntprojects across the vastness of space.
\ntSince the completion of the much more efficient CC-A5831 on March 8, 2553, XCC-P5831 no longer \ntacts as NT's base of operations but still plays a very important role its corporate affairs; \ntserving as a supply and repair depot, as well as being host to its most important legal proceedings\nt and the thrilling pay-per-view broadcasts of PLASTEEL CHEF and THUNDERDOME LIVE.
\ntWe hope you enjoy your stay!"; - pixel_x = -3; - pixel_y = 6 +"cRw" = ( +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 }, -/obj/item/paper/pamphlet/centcom/visitor_info{ - default_raw_text = " XCC-P5831 Visitor Information
\ntGreetings, visitor, to XCC-P5831! As you may know, this outpost was once \ntused as Nanotrasen's CENTRAL COMMAND STATION, organizing and coordinating company \ntprojects across the vastness of space.
\ntSince the completion of the much more efficient CC-A5831 on March 8, 2553, XCC-P5831 no longer \ntacts as NT's base of operations but still plays a very important role its corporate affairs; \ntserving as a supply and repair depot, as well as being host to its most important legal proceedings\nt and the thrilling pay-per-view broadcasts of PLASTEEL CHEF and THUNDERDOME LIVE.
\ntWe hope you enjoy your stay!"; - pixel_x = 1; - pixel_y = 4 +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/obj/item/paper/pamphlet/centcom/visitor_info{ - default_raw_text = " XCC-P5831 Visitor Information
\ntGreetings, visitor, to XCC-P5831! As you may know, this outpost was once \ntused as Nanotrasen's CENTRAL COMMAND STATION, organizing and coordinating company \ntprojects across the vastness of space.
\ntSince the completion of the much more efficient CC-A5831 on March 8, 2553, XCC-P5831 no longer \ntacts as NT's base of operations but still plays a very important role its corporate affairs; \ntserving as a supply and repair depot, as well as being host to its most important legal proceedings\nt and the thrilling pay-per-view broadcasts of PLASTEEL CHEF and THUNDERDOME LIVE.
\ntWe hope you enjoy your stay!"; - pixel_x = 7; - pixel_y = 2 +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/obj/machinery/camera/autoname/directional/east, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) -"cSx" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible/layer2{ +/obj/effect/turf_decal/tile/blue/half/contrasted{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible/layer2, -/obj/structure/window/plasma/reinforced{ - dir = 1 +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "medbay" }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 +/obj/machinery/door/airlock/medical/glass{ + emergency = 1; + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_one_access_txt = "5" }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2/layer4{ - dir = 8 +/turf/open/floor/iron/white, +/area/medical/medbay/central) +"cRX" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 }, -/turf/open/floor/iron, -/area/engine/atmos) +/obj/structure/closet/firecloset/full, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/central) "cSZ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 @@ -6501,13 +6359,21 @@ }, /turf/open/floor/iron/dark, /area/engine/engineering) -"cTe" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/multiz/down{ +"cTf" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Vacant Office APC"; + pixel_y = 24 + }, +/obj/effect/mapping_helpers/apc/discharged, +/obj/structure/light_construct{ dir = 1 }, -/turf/open/floor/plating, -/area/maintenance/department/bridge) +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/wood, +/area/library/abandoned) "cTB" = ( /obj/structure/chair{ dir = 8 @@ -6518,28 +6384,24 @@ /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/plating/rust, /area/science/test_area) -"cTP" = ( -/obj/item/target/alien/anchored, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/camera/preset/toxins{ - dir = 4 - }, -/turf/open/floor/plating/rust, -/area/science/test_area) -"cUr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark/side{ - dir = 5 - }, -/area/hallway/primary/aft) "cUA" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/science/mixing) +"cVb" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/hallway/primary/central) "cVj" = ( /obj/effect/mapping_helpers/airlock/abandoned, /obj/structure/cable/yellow{ @@ -6557,6 +6419,21 @@ /obj/effect/turf_decal/stripes/closeup, /turf/open/floor/wood, /area/maintenance/department/science/xenobiology) +"cVk" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/iron, +/area/quartermaster/sorting) "cVl" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 8 @@ -6574,10 +6451,6 @@ /obj/structure/sign/departments/minsky/research/research, /turf/closed/wall/r_wall, /area/science/xenobiology) -"cWg" = ( -/obj/structure/filingcabinet/employment, -/turf/open/floor/wood/broken, -/area/library/abandoned) "cXb" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -6595,11 +6468,6 @@ }, /turf/open/openspace, /area/ai_monitored/turret_protected/aisat/maint) -"cXw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/stool/directional/west, -/turf/open/floor/carpet/royalblack, -/area/library/abandoned) "cXy" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt, @@ -6620,10 +6488,6 @@ slowdown = 0 }, /area/asteroid/paradise/surface) -"cXB" = ( -/obj/structure/fence, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) "cXD" = ( /obj/effect/turf_decal/bot, /obj/machinery/light{ @@ -6641,6 +6505,17 @@ }, /turf/open/floor/iron, /area/medical/storage) +"cXG" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/structure/chair/fancy/bench, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron, +/area/security/prison) "cXI" = ( /turf/open/floor/iron, /area/maintenance/department/eva) @@ -6657,16 +6532,6 @@ /obj/effect/decal/cleanable/oil/slippery, /turf/open/floor/plating/airless, /area/science/mixing) -"cYu" = ( -/obj/structure/railing/corner, -/obj/effect/turf_decal/siding/dark/corner, -/obj/effect/turf_decal/siding/dark{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 5 - }, -/area/hallway/primary/central) "cYK" = ( /obj/effect/turf_decal/tile/black/opposingcorners{ dir = 1 @@ -6691,12 +6556,6 @@ /obj/effect/decal/cleanable/greenglow, /turf/open/floor/plating/rust, /area/science/test_area) -"cZZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/hallway/primary/central) "dao" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -6704,16 +6563,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/tech, /area/engine/atmos) -"dap" = ( -/obj/docking_port/stationary{ - dwidth = 12; - height = 69; - id = "whiteship_home"; - name = "Auxiliary Dock"; - width = 25 - }, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface/grass) "dav" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/beach/sand, @@ -6762,49 +6611,65 @@ }, /turf/open/floor/iron, /area/teleporter) -"dbV" = ( -/obj/structure/flora/grass/jungle, -/turf/open/floor/plating/asteroid/planetary, -/area/asteroid/paradise) -"dcz" = ( -/obj/effect/turf_decal/siding/white{ - alpha = 100; - dir = 4 +"dbP" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" }, -/obj/structure/sink{ - dir = 1; - pixel_y = 28 +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 8 }, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/iron/white, -/area/crew_quarters/fitness/recreation) -"dcB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/railing/corner{ - dir = 4 +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","security") }, -/turf/open/floor/iron/dark/corner{ - dir = 4 +/turf/open/floor/iron, +/area/security/brig) +"dbT" = ( +/obj/machinery/seed_extractor, +/obj/machinery/status_display/evac{ + pixel_y = -32 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/maintenance/department/medical/morgue) +"dbV" = ( +/obj/structure/flora/grass/jungle, +/turf/open/floor/plating/asteroid/planetary, +/area/asteroid/paradise) +"dbX" = ( +/obj/structure/sink/kitchen{ + pixel_y = 22 }, +/turf/open/floor/iron/dark, /area/hallway/primary/aft) -"dcS" = ( -/obj/item/storage/pod{ - pixel_x = 5; - pixel_y = 32 +"dcG" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -30 +/turf/open/floor/plating, +/area/maintenance/department/engine) +"dcS" = ( +/obj/effect/turf_decal/delivery, +/obj/item/bikehorn/rubberducky, +/obj/structure/curtain, +/obj/machinery/shower{ + dir = 8 }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/iron, -/area/medical/surgery) +/turf/open/floor/noslip/standard, +/area/hallway/primary/fore) "dcZ" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/dock/drydock, @@ -6815,10 +6680,6 @@ }, /turf/open/floor/iron/dark, /area/security/brig) -"ddQ" = ( -/obj/structure/stairs, -/turf/open/floor/pod/dark, -/area/hallway/primary/central) "ddW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 9 @@ -6849,6 +6710,22 @@ /obj/effect/turf_decal/stripes/closeup, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) +"deH" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/delivery, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron, +/area/maintenance/department/engine/atmos) "deX" = ( /obj/machinery/conveyor{ dir = 4; @@ -6871,15 +6748,6 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"dfi" = ( -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light, -/turf/open/floor/iron/freezer, -/area/hallway/primary/fore) "dfX" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -6890,19 +6758,16 @@ }, /turf/open/floor/iron, /area/ai_monitored/turret_protected/aisat/maint) -"dfZ" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/siding/dark{ - dir = 4 +"dgd" = ( +/obj/effect/turf_decal/box/white, +/obj/structure/cable/yellow{ + icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/iron/dark/side{ - dir = 6 +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 }, -/area/hallway/primary/aft) +/turf/open/floor/circuit/telecomms/server, +/area/science/server) "dgf" = ( /obj/structure/closet/secure_closet/genpop{ anchored = 0 @@ -6920,33 +6785,44 @@ }, /turf/open/floor/iron, /area/maintenance/department/medical/central) -"dgZ" = ( -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/asteroid/planetary, -/area/asteroid/paradise/surface/sand) -"dhb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 +"dgF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "chemistry Shutters" }, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 +/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/turf/open/floor/iron/dark/corner{ +/turf/open/floor/plating, +/area/medical/apothecary) +"dgG" = ( +/turf/open/floor/iron/dark/side{ dir = 8 }, -/area/hallway/primary/fore) -"dhj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, +/area/hallway/primary/central) +"dhx" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 + }, /obj/structure/cable/yellow{ - icon_state = "1-8" + icon_state = "0-2" }, -/obj/machinery/door/poddoor/preopen{ - id = "brigentrance"; - name = "Brig Blast Door" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/turf/open/floor/plating, -/area/security/brig) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white/side, +/area/science/research) "dhL" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -7014,12 +6890,44 @@ }, /turf/open/floor/plating/asteroid/planetary, /area/crew_quarters/dorms) +"diQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/hallway/primary/aft) "diS" = ( /obj/structure/closet, /obj/effect/spawner/lootdrop/maintenance/two, /obj/item/paicard, /turf/open/floor/plating, /area/maintenance/department/bridge) +"diU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/plating, +/area/library/abandoned) +"diV" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/medical_doctor, +/obj/structure/chair/fancy/plastic, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/medical/surgery) "djm" = ( /turf/open/openspace, /area/crew_quarters/heads/hor) @@ -7039,27 +6947,6 @@ /obj/effect/decal/cleanable/greenglow, /turf/open/floor/plating/dirt/jungle/wasteland, /area/asteroid/paradise/surface) -"djP" = ( -/obj/machinery/door/airlock/highsecurity{ - id_tag = "Emergancycap"; - name = "Safe Room"; - req_access_txt = "10"; - security_level = 6 - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/closeup, -/turf/open/floor/plating, -/area/crew_quarters/heads/captain) "dkt" = ( /obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ alpha = 180; @@ -7091,30 +6978,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/white, /area/science/lab) -"dkC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters"; - name = "chemistry Shutters" - }, -/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/medical/apothecary) -"dlf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/central) "dlh" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/chair/office, @@ -7124,23 +6987,25 @@ }, /turf/open/floor/iron/sepia, /area/quartermaster/storage) -"dme" = ( -/obj/structure/railing{ - dir = 4 +"dlw" = ( +/obj/machinery/door/airlock/external/glass{ + autoclose = 0.1 }, -/obj/effect/turf_decal/siding/dark{ +/turf/open/floor/plating/dirt/planetary, +/area/asteroid/paradise/surface) +"dmw" = ( +/obj/machinery/camera/autoname/directional/north, +/obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 4 }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 +/obj/item/radio/intercom{ + dir = 1; + pixel_x = 1; + pixel_y = 23 }, -/area/hallway/primary/central) +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/iron, +/area/janitor) "dmN" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -7155,6 +7020,10 @@ }, /turf/open/floor/iron, /area/science/lab) +"dmW" = ( +/obj/structure/railing/corner, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/central) "dnf" = ( /turf/closed/wall/r_wall, /area/security/warden) @@ -7164,43 +7033,31 @@ }, /turf/open/floor/engine/airless, /area/engine/atmos) -"dnD" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 +"dnM" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 }, -/obj/effect/turf_decal/siding/white, -/turf/open/floor/iron, -/area/medical/medbay/central) -"dnQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 9 +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) +/obj/machinery/light/small, +/turf/open/floor/iron/dark, +/area/engineering/hallway) "dnZ" = ( /obj/structure/ladder, /turf/open/floor/pod/dark, /area/maintenance/department/bridge) -"doQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor{ - id = "AIwindows"; - name = "AI View Blast Door" +"dou" = ( +/obj/machinery/light{ + dir = 1 }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) +/obj/effect/turf_decal/delivery, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/engine, +/area/science/explab) "doY" = ( /obj/machinery/door/poddoor/shutters/radiation/preopen{ id = "engsm"; @@ -7221,35 +7078,10 @@ "dpo" = ( /turf/open/floor/plating, /area/maintenance/department/eva) -"dpQ" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/asteroid/paradise/surface) -"dqd" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/iron, -/area/hallway/primary/central) "dqm" = ( /obj/effect/turf_decal/stripes/corner, /turf/open/floor/engine/light, /area/holodeck/small) -"dqn" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/hallway) "dqs" = ( /obj/structure/cable/yellow{ icon_state = "2-4" @@ -7267,6 +7099,13 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/medical/apothecary) +"drs" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) "dry" = ( /obj/machinery/holopad, /obj/effect/turf_decal/box, @@ -7313,14 +7152,6 @@ }, /turf/open/floor/iron, /area/maintenance/department/science/central) -"drY" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/iron, -/area/hallway/primary/central) "dsq" = ( /obj/structure/window/reinforced{ dir = 8 @@ -7331,20 +7162,39 @@ /obj/machinery/computer/card, /turf/open/floor/iron, /area/bridge) -"dsu" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/obj/structure/disposalpipe/segment{ +"dsv" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Kitchen" + }, +/obj/structure/disposalpipe/multiz{ + dir = 8 + }, +/turf/open/floor/plating, +/area/crew_quarters/kitchen/coldroom) +"dsz" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ dir = 4 }, /obj/structure/cable/yellow{ - icon_state = "1-2" + icon_state = "1-4" }, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8; - initialize_directions = 8 +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/turf/open/floor/iron/tech, -/area/engine/engineering) +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/multiz{ + dir = 4 + }, +/turf/open/floor/carpet/royalblue, +/area/crew_quarters/heads/chief) "dta" = ( /obj/structure/sign/warning/radiation/rad_area, /turf/closed/wall, @@ -7357,34 +7207,25 @@ }, /turf/open/floor/engine/o2, /area/engine/atmos) +"dtO" = ( +/obj/structure/sign/directions/evac{ + dir = 4 + }, +/turf/closed/wall/mineral/titanium/survival, +/area/hallway/primary/fore) "dtZ" = ( /obj/structure/railing/corner, /turf/open/floor/wood, /area/crew_quarters/cafeteria) -"dul" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/flora/tree/jungle/small, -/turf/open/floor/grass/no_border, -/area/hallway/primary/aft) "dur" = ( /turf/closed/wall, /area/bridge) -"duC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/multiz{ - dir = 1 +"duv" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/visible{ + dir = 8 }, -/turf/open/floor/iron/dark, -/area/quartermaster/storage) +/turf/open/floor/iron/tech, +/area/engine/atmos) "duJ" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/flora/ausbushes/sparsegrass, @@ -7430,23 +7271,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroid/basalt/planetary, /area/asteroid/paradise) -"dxm" = ( -/obj/effect/turf_decal/trimline/yellow, -/obj/structure/cable/yellow{ - icon_state = "8-16" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +"dwr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/bot, +/obj/machinery/digital_clock/directional/north, /turf/open/floor/iron, -/area/hallway/primary/central) +/area/security/brig) "dxs" = ( /obj/effect/turf_decal/sand/plating, /obj/effect/decal/cleanable/dirt/dust, @@ -7455,15 +7289,6 @@ }, /turf/open/floor/iron, /area/crew_quarters/dorms) -"dxw" = ( -/obj/structure/lattice, -/turf/open/openspace, -/area/crew_quarters/heads/cmo) -"dxx" = ( -/obj/structure/lattice/catwalk/over, -/obj/structure/marker_beacon, -/turf/open/openspace, -/area/engineering/hallway) "dxH" = ( /obj/structure/chair/fancy/plastic{ dir = 8 @@ -7485,11 +7310,50 @@ }, /turf/open/floor/plating, /area/maintenance/department/cargo) +"dyd" = ( +/obj/effect/landmark/start/assistant, +/obj/structure/cable/yellow{ + icon_state = "2-32" + }, +/obj/effect/turf_decal/trimline/yellow, +/obj/structure/lattice/catwalk/over, +/turf/open/openspace, +/area/hallway/primary/fore) "dyt" = ( /obj/effect/turf_decal/sand/plating, /obj/structure/flora/ausbushes/lavendergrass, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise/surface) +"dyv" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/item/beacon, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"dyQ" = ( +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","security") + }, +/obj/structure/lattice/catwalk/over, +/turf/open/openspace, +/area/maintenance/department/security/brig) +"dzb" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8; + initialize_directions = 8 + }, +/turf/open/floor/iron/tech, +/area/engine/engineering) "dzp" = ( /obj/structure/flora/grass/jungle/b, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -7516,6 +7380,17 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, /area/maintenance/department/medical/morgue) +"dzA" = ( +/obj/machinery/flasher{ + id = "hopflash"; + pixel_y = 27 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) "dzD" = ( /obj/effect/turf_decal/tile/dark_green{ dir = 4 @@ -7557,6 +7432,18 @@ "dAb" = ( /turf/open/floor/plating/dirt/jungle/wasteland, /area/asteroid/paradise/surface/grass) +"dAf" = ( +/obj/structure/chair/fancy/bench/corporate{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/engineering/hallway) "dAh" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/disposalpipe/segment{ @@ -7598,6 +7485,22 @@ }, /turf/open/floor/plating/beach/water, /area/asteroid/paradise/surface/water) +"dBG" = ( +/obj/structure/table/wood, +/obj/item/camera_film{ + pixel_y = 9 + }, +/obj/item/camera_film{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/sign/poster/official/random{ + pixel_x = 1; + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/library/abandoned) "dBS" = ( /obj/structure/closet/crate/freezer/blood, /obj/effect/turf_decal/bot, @@ -7607,12 +7510,6 @@ }, /turf/open/floor/iron, /area/medical/surgery) -"dCe" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) "dCl" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -7621,44 +7518,21 @@ slowdown = 0 }, /area/asteroid/paradise/surface) -"dCm" = ( -/obj/structure/table_frame/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/folder/white{ - pixel_x = 7; - pixel_y = -9 - }, -/obj/structure/light_construct, -/turf/open/floor/wood, -/area/library/abandoned) -"dCq" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/hallway/primary/central) "dCr" = ( /turf/open/floor/plating/beach/coastline_t, /area/asteroid/paradise/surface/sand) -"dCA" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -32; - pixel_y = -1 +"dCG" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/dark/corner, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/central) +"dCK" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 }, -/turf/open/floor/plating/dirt/planetary, -/area/asteroid/paradise/surface) +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/security/brig) "dCL" = ( /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /obj/effect/turf_decal/bot, @@ -7667,23 +7541,17 @@ }, /turf/open/floor/iron/dark, /area/science/mixing) -"dCZ" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/asteroid/paradise/surface) -"dDB" = ( -/obj/structure/window/plasma/reinforced{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-4" +"dDA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 }, -/obj/machinery/power/rad_collector/anchored, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 +/obj/structure/window/reinforced, +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","security") }, -/turf/open/floor/plating, -/area/engine/supermatter) +/obj/structure/table, +/turf/open/floor/iron, +/area/security/brig) "dDM" = ( /obj/machinery/door/airlock{ id_tag = "Cabin4"; @@ -7692,10 +7560,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/carpet/purple, /area/crew_quarters/dorms) -"dDR" = ( -/obj/structure/flora/ash/tall_shroom, -/turf/open/floor/plating/asteroid/planetary, -/area/asteroid/paradise) "dEr" = ( /obj/machinery/door/airlock/command{ name = "Research Director's Office"; @@ -7717,6 +7581,19 @@ }, /turf/open/floor/iron, /area/crew_quarters/heads/hor) +"dEu" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/kirbyplants/random, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/side{ + dir = 4 + }, +/area/science/lab) "dEz" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -7724,19 +7601,12 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/iron/dark, /area/engine/engineering) -"dEG" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/flashlight/lamp{ - pixel_y = 8 - }, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = -6 +"dEF" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 5 }, -/turf/open/floor/wood, -/area/library/abandoned) +/area/hallway/primary/central) "dEU" = ( /obj/machinery/nuclearbomb/selfdestruct, /turf/open/floor/circuit/green{ @@ -7775,6 +7645,19 @@ }, /turf/open/floor/iron/grid/steel, /area/hydroponics) +"dFz" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "Engidesk"; + name = "engineering Security Door" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/grass/no_border, +/area/crew_quarters/heads/chief) "dFE" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -7784,35 +7667,6 @@ slowdown = 0 }, /area/asteroid/paradise/surface) -"dGg" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrig"; - name = "Brig"; - req_one_access_txt = "1;4" - }, -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "brigentrance"; - name = "Brig Blast Door" - }, -/turf/open/floor/iron/dark, -/area/security/brig) "dGh" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -7839,6 +7693,9 @@ /obj/structure/closet/crate, /turf/open/floor/plating, /area/maintenance/department/chapel) +"dGX" = ( +/turf/open/openspace, +/area/asteroid/paradise/surface) "dHc" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -7859,6 +7716,12 @@ /obj/effect/turf_decal/sand/plating, /turf/open/floor/plating/asteroid/planetary, /area/quartermaster/storage) +"dHs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/openspace, +/area/hallway/primary/central) "dHA" = ( /obj/structure/cable{ icon_state = "1-2" @@ -7955,42 +7818,24 @@ "dIK" = ( /turf/open/floor/plating/airless, /area/science/mixing) -"dJP" = ( -/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ - alpha = 180 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ +"dJL" = ( +/obj/machinery/power/terminal{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 +/obj/machinery/light{ + dir = 1 }, -/turf/open/floor/iron, -/area/hallway/primary/fore) -"dJY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 }, -/obj/machinery/power/port_gen/pacman, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/simple/green/visible/layer2{ - dir = 8 +/obj/structure/cable/yellow{ + icon_state = "0-2" }, -/obj/structure/cable/yellow, -/obj/item/stack/sheet/mineral/plasma/ten, -/obj/item/wrench{ - pixel_x = -4; - pixel_y = 5 +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on, +/turf/open/floor/iron/dark/telecomms{ + initial_gas_mix = "o2=22;n2=82;TEMP=293.15" }, -/turf/open/floor/iron/dark, -/area/engine/engineering) +/area/tcommsat/computer) "dKx" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -8017,15 +7862,24 @@ }, /turf/open/floor/iron/grid/steel, /area/science/xenobiology) -"dLt" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron/white/side{ - dir = 9 +"dLq" = ( +/obj/structure/railing{ + dir = 1 }, -/area/asteroid/paradise) +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/turf/open/floor/iron, +/area/engine/engineering) "dLK" = ( /obj/machinery/atmospherics/pipe/layer_manifold/visible, /obj/structure/table, @@ -8054,35 +7908,34 @@ }, /turf/open/floor/plating, /area/maintenance/department/science/central) -"dMS" = ( -/turf/closed/wall/rust, -/area/quartermaster/storage) -"dMX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" +"dMc" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" }, -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "1-4" }, -/turf/open/floor/plating, -/area/security/prison) -"dNe" = ( -/obj/effect/turf_decal/trimline/dark_blue/filled/line{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/machinery/light{ +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 5 }, -/obj/machinery/digital_clock/directional/east, -/turf/open/floor/iron/dark, -/area/bridge/meeting_room) +/turf/open/floor/iron, +/area/security/brig) +"dMS" = ( +/turf/closed/wall/rust, +/area/quartermaster/storage) "dNl" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 1 @@ -8116,6 +7969,17 @@ slowdown = 0 }, /area/asteroid/paradise/surface) +"dOa" = ( +/obj/structure/ladder, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/pod/dark, +/area/maintenance/department/engine) "dOk" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -8134,17 +7998,6 @@ /obj/structure/flora/ausbushes/sparsegrass, /turf/open/floor/plating/asteroid/planetary, /area/quartermaster/storage) -"dOv" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/dark/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/hallway/primary/central) "dOG" = ( /obj/structure/tank_dispenser/oxygen{ pixel_x = -1; @@ -8158,32 +8011,6 @@ }, /turf/open/floor/iron/dark, /area/teleporter) -"dOQ" = ( -/obj/item/wallframe/extinguisher_cabinet{ - pixel_x = 31; - pixel_y = 1 - }, -/obj/structure/closet/toolcloset, -/obj/item/stack/sheet/iron/fifty{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/stack/sheet/iron/fifty{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/wood/fifty, -/obj/item/stack/sheet/wood/fifty, -/obj/item/stack/rods/fifty, -/obj/item/bluespace_capsule, -/obj/item/wrench{ - pixel_x = -4; - pixel_y = 5 - }, -/turf/open/floor/plating, -/area/library/abandoned) "dOT" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -8206,24 +8033,64 @@ slowdown = 0 }, /area/asteroid/paradise/surface) -"dPx" = ( -/obj/item/kirbyplants/random, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/aft) "dPG" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/rust, /area/science/test_area) +"dPH" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/siding/white/corner{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4, +/obj/effect/landmark/start/scientist, +/obj/effect/turf_decal/numbers/two_nine{ + dir = 1 + }, +/obj/structure/disposalpipe/sorting/mail/destination/testing_range{ + dir = 1 + }, +/turf/open/floor/iron/white/side{ + dir = 5 + }, +/area/science/lab) "dPK" = ( /obj/machinery/anesthetic_machine, /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/medical/surgery) +"dPL" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/hallway/primary/aft) +"dPN" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/fore) "dPV" = ( /obj/effect/decal/cleanable/cobweb, /obj/structure/sign/painting/library{ @@ -8284,20 +8151,16 @@ }, /turf/open/floor/iron/dark, /area/engine/engineering) -"dRN" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron/white, -/area/medical/apothecary) "dRP" = ( /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/department/bridge) +"dRW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/science/mixing) "dSa" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -8329,12 +8192,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/tech, /area/engine/engineering) -"dSg" = ( -/obj/structure/railing{ - dir = 9 - }, -/turf/open/openspace, -/area/engineering/hallway) "dSI" = ( /obj/structure/table/reinforced, /obj/item/clipboard{ @@ -8371,6 +8228,15 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/maintenance/department/security/brig) +"dTr" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/hallway/primary/central) "dTC" = ( /obj/item/grown/log/tree, /obj/item/grown/log/tree{ @@ -8385,6 +8251,15 @@ }, /turf/open/floor/wood, /area/asteroid/paradise/surface) +"dTL" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/openspace, +/area/hallway/primary/fore) "dUi" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -8421,6 +8296,20 @@ }, /turf/open/floor/iron/dark, /area/storage/tech) +"dVA" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/freezer/meat{ + req_access = null; + req_one_access_txt = "28;25;35" + }, +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/iron/freezer, +/area/crew_quarters/kitchen/coldroom) "dWd" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -8436,51 +8325,6 @@ /obj/machinery/power/tesla_coil, /turf/open/floor/iron, /area/engine/engineering) -"dWn" = ( -/obj/structure/curtain, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/siding/white, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay"; - req_one_access_txt = "5" - }, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/iron/white/side{ - dir = 1 - }, -/area/medical/genetics/cloning) -"dWt" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/hallway/primary/aft) -"dWz" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/iron, -/area/medical/surgery) "dXb" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced, @@ -8497,14 +8341,33 @@ }, /turf/open/floor/plating, /area/medical/storage) -"dXj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Mix to SM" +"dXn" = ( +/obj/machinery/computer/security/wooden_tv{ + desc = "Welcome to KOZU 5... your number one source for weather, news, and entertainment. And now, the weather forecast for tomorrow..."; + name = "Budget TV"; + network = list("public"); + pixel_x = 2; + pixel_y = 8 }, -/turf/open/floor/iron/tech, -/area/engine/atmos) +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/asteroid/paradise/surface) +"dXG" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/digital_clock/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/chapel/main) "dXH" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch"; @@ -8523,23 +8386,51 @@ }, /turf/open/floor/wood, /area/crew_quarters/cafeteria) -"dYJ" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "4-8" +"dYY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/wood, +/area/crew_quarters/cafeteria) +"dZF" = ( +/obj/structure/window/plasma/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 4 }, -/turf/open/floor/iron, -/area/maintenance/department/engine/atmos) +/turf/open/floor/plating, +/area/engine/supermatter) "eaA" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, /area/maintenance/department/crew_quarters/dorms) -"ebd" = ( +"eaE" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/evac, /turf/open/floor/iron, -/area/asteroid/paradise) +/area/hallway/primary/central) +"ebh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_one_access_txt = "7;29;12" + }, +/turf/open/floor/plating, +/area/maintenance/department/science/central) "ebn" = ( /obj/structure/flora/grass/jungle/b, /obj/structure/flora/ausbushes/fullgrass, @@ -8558,19 +8449,17 @@ /obj/structure/flora/ausbushes/fullgrass, /turf/open/floor/plating/asteroid/planetary, /area/quartermaster/storage) -"ebE" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/structure/disposalpipe/trunk{ +"ebF" = ( +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/window/reinforced{ dir = 8 }, -/obj/machinery/disposal/bin, -/turf/open/floor/iron/white, -/area/medical/genetics/cloning) +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/grass/no_border, +/area/hallway/primary/fore) "ebG" = ( /mob/living/simple_animal/hostile/gorilla{ aggro_vision_range = 3; @@ -8583,6 +8472,24 @@ /obj/structure/flora/ash/tall_shroom, /turf/open/floor/plating/asteroid/basalt/planetary, /area/asteroid/paradise) +"ebU" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","public") + }, +/turf/open/floor/plating, +/area/library/abandoned) +"eci" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/tree/jungle{ + plane = -3 + }, +/turf/open/floor/grass/no_border, +/area/hallway/primary/aft) "ecq" = ( /obj/effect/turf_decal/stripes/end, /obj/machinery/pipedispenser/disposal/transit_tube, @@ -8601,19 +8508,29 @@ }, /turf/open/floor/carpet/green, /area/crew_quarters/cafeteria) -"edh" = ( -/obj/structure/railing{ - dir = 4 +"ecx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/machinery/light{ - dir = 1 +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8; + initialize_directions = 8 }, -/obj/machinery/camera/autoname/directional/north{ - network = list("aiupload") +/turf/open/floor/iron/tech, +/area/engine/engineering) +"ecH" = ( +/obj/structure/stairs{ + dir = 4 }, -/obj/machinery/firealarm/directional/north, -/turf/open/openspace, -/area/hallway/primary/fore) +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/pod/dark, +/area/crew_quarters/cafeteria) +"ecI" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/hallway/primary/central) "eec" = ( /obj/structure/railing, /turf/open/openspace, @@ -8647,12 +8564,22 @@ }, /turf/open/floor/iron/white, /area/science/xenobiology) -"eeI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 +"efa" = ( +/obj/structure/railing/corner{ + dir = 4 }, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/fore) +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/junction/flip, +/obj/machinery/atmospherics/pipe/simple/orange/visible/layer5{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/engine/engineering) "eff" = ( /obj/item/target, /obj/structure/window/reinforced, @@ -8661,56 +8588,27 @@ }, /turf/open/floor/plating/rust, /area/science/test_area) -"efm" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/three, -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 +"efr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "detectivewindows"; + name = "Detective Privacy Blast Door" }, /obj/structure/cable/yellow{ icon_state = "0-8" }, /turf/open/floor/plating, -/area/maintenance/department/engine/atmos) -"eft" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"efu" = ( -/obj/structure/fence{ - dir = 8 - }, -/obj/structure/sign/warning/electricshock, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) +/area/security/detectives_office) "efD" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat/maint) -"efR" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/treatment, -/obj/item/stock_parts/subspace/treatment, -/obj/item/stock_parts/subspace/treatment, -/obj/item/stock_parts/subspace/treatment, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/book/manual/wiki/tcomms{ - pixel_x = 17; - pixel_y = 4 - }, -/obj/item/radio/intercom{ - pixel_y = 28 - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","engine") - }, -/turf/open/floor/iron/dark, -/area/engine/atmos) +"egS" = ( +/obj/machinery/biogenerator, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/maintenance/department/medical/morgue) "eha" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/dirt/dust, @@ -8747,31 +8645,6 @@ }, /turf/open/floor/iron, /area/science/lab) -"eht" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/tech, -/area/science/mixing/chamber) "ehD" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -8784,22 +8657,6 @@ "ehJ" = ( /turf/open/openspace, /area/maintenance/department/chapel) -"eit" = ( -/obj/structure/toilet{ - pixel_x = -1; - pixel_y = 6 - }, -/obj/machinery/button/door{ - id = "Toilet 2"; - name = "Toilet Bolt Control"; - normaldoorcontrol = 1; - pixel_y = -32; - specialfunctions = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small, -/turf/open/floor/iron/techmaint/planetary, -/area/hallway/primary/fore) "eiO" = ( /obj/machinery/gateway{ dir = 1 @@ -8821,23 +8678,6 @@ }, /turf/open/floor/iron, /area/maintenance/department/science/central) -"eiZ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/light/floor, -/turf/open/floor/iron/dark, -/area/hallway/primary/aft) -"ejm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/wardrobe/curator_wardrobe, -/obj/effect/turf_decal/bot, -/turf/open/floor/carpet/royalblack, -/area/library/abandoned) "ejD" = ( /obj/machinery/hydroponics/constructable, /obj/effect/turf_decal/stripes/line{ @@ -8856,14 +8696,11 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/showroomfloor, /area/crew_quarters/cryopods) -"ejR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/iron, -/area/hallway/primary/aft) +"ejO" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/spawner/structure/window/hollow/survival_pod/directional, +/turf/open/floor/plating, +/area/hallway/primary/fore) "ekv" = ( /obj/machinery/light, /obj/effect/turf_decal/stripes/line{ @@ -8877,14 +8714,6 @@ }, /turf/open/floor/iron/dark, /area/science/robotics) -"ekI" = ( -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_x = -13; - pixel_y = -11 - }, -/obj/structure/chair/fancy/plastic, -/turf/open/floor/plating/beach/sand, -/area/asteroid/paradise/surface/sand) "ekR" = ( /obj/effect/turf_decal/delivery, /obj/effect/decal/cleanable/glass, @@ -8897,62 +8726,45 @@ }, /turf/open/floor/iron/white, /area/science/research) +"ekS" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/multiz{ + dir = 8 + }, +/turf/open/floor/carpet/royalblue, +/area/crew_quarters/heads/chief) "elx" = ( /obj/structure/sign/departments/minsky/research/research, /turf/closed/wall/r_wall, /area/science/research) -"elD" = ( -/obj/machinery/portable_atmospherics/canister/plasma, -/obj/effect/turf_decal/delivery, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","rd") - }, -/turf/open/floor/iron/dark, -/area/science/mixing) -"elZ" = ( -/obj/effect/decal/cleanable/dirt/dust, +"elK" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/white, +/area/medical/medbay/central) +"elM" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable{ - icon_state = "1-2" + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" }, +/obj/effect/turf_decal/sand/plating, /turf/open/floor/catwalk_floor/iron_dark, /area/asteroid/paradise/surface) "emp" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/science/explab) -"emr" = ( -/obj/machinery/light{ - dir = 1; - light_color = "#7AC3FF" - }, -/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue/opposingcorners, -/obj/structure/sign/poster/official/ian{ - pixel_y = 32 - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","medbay") - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/white, -/area/medical/medbay/central) -"emw" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/structure/chair/fancy/bench, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron, -/area/security/prison) "enb" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -8965,37 +8777,17 @@ }, /turf/open/floor/catwalk_floor/iron_dark, /area/science/robotics) -"enr" = ( -/obj/structure/railing{ - dir = 5 - }, -/obj/effect/turf_decal/siding/dark{ - dir = 5 - }, -/obj/machinery/space_heater, -/turf/open/floor/iron/dark, -/area/hallway/primary/central) -"enI" = ( -/obj/effect/turf_decal/box/white, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) -"eog" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/photocopier, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/multiz{ - dir = 2 +"enQ" = ( +/obj/machinery/ai_slipper{ + uses = 10 }, -/turf/open/floor/iron/dark, -/area/quartermaster/storage) +/turf/open/floor/iron, +/area/hallway/primary/aft) +"eoc" = ( +/obj/structure/flora/rock/pile, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/asteroid/basalt/planetary, +/area/asteroid/paradise) "eop" = ( /obj/effect/turf_decal/bot, /obj/structure/closet/secure_closet/freezer/kitchen{ @@ -9016,26 +8808,29 @@ }, /turf/open/floor/iron/freezer, /area/crew_quarters/kitchen/coldroom) -"eoG" = ( -/obj/machinery/light{ - dir = 4 +"eot" = ( +/turf/open/floor/iron/dark/side{ + dir = 6 }, -/obj/machinery/status_display/ai{ - pixel_x = 32 +/area/hallway/primary/aft) +"eoE" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/structure/table/reinforced, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/obj/item/restraints/handcuffs{ - pixel_y = 3 +/obj/machinery/ai_slipper{ + uses = 10 }, -/turf/open/floor/iron, -/area/bridge) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/tech, +/area/science/mixing) "eoQ" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -9061,6 +8856,12 @@ }, /turf/open/floor/iron/sepia, /area/quartermaster/storage) +"epb" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/closed/mineral/random/air, +/area/engine/atmos) "epj" = ( /obj/machinery/stasis{ dir = 8 @@ -9075,14 +8876,34 @@ }, /turf/open/floor/iron/tech/grid, /area/ai_monitored/turret_protected/aisat/foyer) -"epN" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cmoshutter"; - name = "CMO Office Shutters" +"epm" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/medbay/central) +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/catwalk_floor/iron_dark, +/area/asteroid/paradise/surface) +"epO" = ( +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 + }, +/obj/machinery/chem_dispenser/drinks, +/obj/structure/table, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron/dark, +/area/crew_quarters/kitchen) "epS" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -9090,46 +8911,22 @@ /obj/machinery/telecomms/server/presets/security, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"epX" = ( -/obj/structure/fence{ - dir = 8 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) -"eqb" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/button/door{ - id = "commissaryshutters1"; - name = "Commissary Shutters Control #1"; - pixel_x = -32; - pixel_y = -32 +"eqC" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 }, -/turf/open/floor/iron, -/area/maintenance/department/chapel) -"eqi" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Kitchen" +/obj/effect/turf_decal/siding/dark{ + dir = 4 }, -/obj/structure/disposalpipe/multiz{ +/obj/effect/turf_decal/siding/dark{ dir = 8 }, -/turf/open/floor/plating, -/area/crew_quarters/kitchen/coldroom) -"eqG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "detectivewindows"; - name = "Detective Privacy Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" +/obj/item/radio/intercom{ + pixel_x = -32; + pixel_y = -3 }, -/turf/open/floor/plating, -/area/security/detectives_office) +/turf/open/floor/iron/dark, +/area/engineering/hallway) "eqK" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -9153,13 +8950,6 @@ "erN" = ( /turf/open/floor/plating/beach/coastline_t, /area/asteroid/paradise/surface) -"erO" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/machinery/camera/autoname/directional/west{ - network = list("ss13","public") - }, -/turf/open/floor/plating/asteroid/planetary, -/area/hallway/primary/fore) "erT" = ( /obj/structure/closet/crate/trashcart, /obj/effect/decal/cleanable/dirt/dust, @@ -9173,12 +8963,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/iron/white, /area/medical/genetics/cloning) -"esb" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/openspace, -/area/hallway/primary/fore) "esx" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ @@ -9196,6 +8980,19 @@ /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, /area/security/brig) +"esI" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/iron/white/side, +/area/science/lab) "esK" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/techstorage/rnd, @@ -9206,41 +9003,71 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, /area/storage/tech) -"esO" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/landmark/observer_start, -/turf/open/floor/iron, -/area/hallway/primary/fore) -"esU" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/iron, -/area/maintenance/department/eva) "esW" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/closet/firecloset/full, /turf/open/floor/iron, /area/maintenance/department/crew_quarters/bar) -"ety" = ( -/obj/structure/fence, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) -"etV" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input/layer4, -/turf/open/floor/engine/n2, -/area/engine/atmos) +"ett" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/iron/dark, +/area/hallway/primary/central) +"eug" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/flashlight/lamp{ + pixel_y = 8 + }, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = -6 + }, +/turf/open/floor/wood, +/area/library/abandoned) +"euD" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/hallway/primary/central) "euN" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/closet, /obj/effect/spawner/lootdrop/maintenance/two, /turf/open/floor/iron, /area/maintenance/department/engine) +"euR" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/floor, +/turf/open/floor/iron/dark, +/area/hallway/primary/aft) +"evc" = ( +/obj/structure/chair/fancy/plastic, +/obj/item/cigbutt{ + pixel_x = -13; + pixel_y = -9 + }, +/obj/effect/decal/cleanable/ash{ + pixel_x = -18; + pixel_y = -4 + }, +/turf/open/floor/plating/asteroid/planetary, +/area/asteroid/paradise/surface) "eve" = ( /obj/machinery/light_switch{ pixel_x = 23; @@ -9260,22 +9087,6 @@ /obj/effect/spawner/lootdrop/costume, /turf/open/floor/plating, /area/maintenance/department/chapel) -"evw" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/junction/flip, -/obj/machinery/atmospherics/pipe/simple/orange/visible/layer5{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/engine/engineering) "evM" = ( /obj/structure/flora/rock/pile, /turf/open/floor/plating/grass, @@ -9291,6 +9102,12 @@ "evW" = ( /turf/closed/wall/r_wall, /area/science/xenobiology) +"ewd" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/aft) "ewl" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 1 @@ -9305,40 +9122,35 @@ /obj/effect/turf_decal/trimline/yellow, /turf/open/floor/carpet/purple, /area/crew_quarters/heads/hor) -"ewn" = ( +"ewJ" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 +/obj/machinery/button/door{ + id = "commissaryshutters1"; + name = "Commissary Shutters Control #1"; + pixel_x = -32; + pixel_y = -32 }, -/obj/structure/cable/yellow{ - icon_state = "0-2" +/turf/open/floor/iron, +/area/maintenance/department/chapel) +"exa" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/spawner/structure/window/hollow/survival_pod/directional, +/obj/structure/curtain/directional{ + dir = 4 }, /turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"ewP" = ( +/area/hallway/primary/fore) +"exf" = ( +/obj/structure/fence/cut/large, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) +"exl" = ( +/obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/iron, -/area/hallway/primary/central) -"exd" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/mineral/plastitanium, -/area/asteroid/paradise/surface) +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) "exo" = ( /obj/structure/table, /obj/effect/turf_decal/tile/yellow/fourcorners/contrasted{ @@ -9359,24 +9171,6 @@ }, /turf/open/floor/iron, /area/engine/atmos) -"exs" = ( -/obj/machinery/atmospherics/components/binary/volume_pump/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/hallway/primary/aft) -"exx" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/hallway/primary/aft) "exI" = ( /obj/structure/chair/wood/normal{ dir = 1; @@ -9385,12 +9179,17 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/plating/beach/sand, /area/asteroid/paradise/surface) -"exJ" = ( -/obj/structure/railing{ - dir = 8 +"eyg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" }, -/turf/open/floor/iron, -/area/hallway/primary/fore) +/obj/machinery/door/poddoor/preopen{ + id = "brigentrance"; + name = "Brig Blast Door" + }, +/turf/open/floor/plating, +/area/security/warden) "eyh" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -9454,6 +9253,21 @@ }, /turf/open/floor/plating, /area/bridge/meeting_room) +"ezh" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/chapel/main) "ezz" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -9469,6 +9283,15 @@ "ezN" = ( /turf/open/floor/iron/stairs, /area/asteroid/paradise/surface) +"ezT" = ( +/obj/item/kirbyplants/random, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/hallway/primary/central) "ezZ" = ( /obj/machinery/door/poddoor/shutters/radiation/preopen{ id = "engsm"; @@ -9480,6 +9303,20 @@ /obj/effect/turf_decal/caution, /turf/open/floor/plating, /area/engine/supermatter) +"eAb" = ( +/obj/effect/turf_decal/tile/black/opposingcorners{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","rd") + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/iron/white, +/area/crew_quarters/heads/hor) "eAc" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -9490,44 +9327,13 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/dark, /area/science/mixing) -"eAu" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/iron/dark, -/area/engine/engineering) "eAO" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/engine/engineering) -"eAU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/evac{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{ - dir = 9 - }, -/turf/open/floor/iron/tech, -/area/engine/engineering) +/turf/open/floor/iron, +/area/maintenance/department/science/central) "eAX" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/vending/clothing, @@ -9543,13 +9349,26 @@ }, /turf/open/floor/plating/asteroid/planetary, /area/crew_quarters/dorms) -"eBt" = ( -/obj/effect/turf_decal/tile/blue/opposingcorners{ +"eBu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + alpha = 180; dir = 1 }, -/obj/machinery/suit_storage_unit/cmo, -/turf/open/floor/iron/white, -/area/crew_quarters/heads/cmo) +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/turf/open/floor/iron, +/area/hallway/primary/central) "eBA" = ( /obj/machinery/computer/station_alert{ dir = 1 @@ -9565,20 +9384,6 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) -"eBH" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/catwalk_floor/iron_dark, -/area/asteroid/paradise/surface) "eBK" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch"; @@ -9641,13 +9446,6 @@ /obj/effect/spawner/room/fivexfour, /turf/open/floor/plating, /area/maintenance/department/medical/central) -"eCL" = ( -/obj/item/seeds/tea, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/hydroponics, -/turf/open/floor/iron, -/area/maintenance/department/medical/morgue) "eDg" = ( /obj/effect/turf_decal/siding/white{ alpha = 100 @@ -9672,6 +9470,12 @@ }, /turf/open/floor/pod/dark, /area/maintenance/department/crew_quarters/dorms) +"eDp" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/fore) "eDq" = ( /obj/machinery/light_switch{ pixel_x = 25; @@ -9694,50 +9498,13 @@ dir = 4 }, /area/science/research) -"eDU" = ( -/obj/structure/railing/corner, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/medical/medbay/central) -"eDW" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/obj/structure/disposalpipe/multiz{ - dir = 2 - }, -/turf/open/floor/iron/white/side, -/area/science/lab) -"eDX" = ( -/obj/effect/spawner/room/fivexfour, -/turf/open/floor/plating, -/area/maintenance/department/engine/atmos) -"eEc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 +"eDX" = ( +/obj/effect/spawner/room/fivexfour, +/turf/open/floor/plating, +/area/maintenance/department/engine/atmos) +"eEc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 }, /obj/structure/disposalpipe/segment{ dir = 6 @@ -9775,44 +9542,24 @@ }, /turf/open/floor/iron/dark, /area/security/brig) -"eEY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "brigentrance"; - name = "Brig Blast Door" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/warden) -"eFi" = ( -/obj/structure/chair{ - dir = 4 +"eEP" = ( +/obj/structure/railing/corner{ + dir = 1 }, -/obj/machinery/digital_clock/directional/north, -/turf/open/floor/iron, -/area/science/mixing) -"eFl" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark/corner{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/iron/white, -/area/medical/surgery) -"eFA" = ( +/area/hallway/primary/aft) +"eFh" = ( /obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/light/small{ dir = 8 }, /turf/open/openspace, -/area/engineering/hallway) +/area/hallway/primary/fore) "eFI" = ( /obj/effect/turf_decal/delivery, /obj/effect/decal/cleanable/dirt/dust, @@ -9840,12 +9587,6 @@ }, /turf/open/floor/iron/dark, /area/security/brig) -"eGE" = ( -/obj/structure/sign/poster/official/moth8{ - pixel_y = 31 - }, -/turf/open/floor/glass/reinforced, -/area/crew_quarters/heads/cmo) "eGO" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch"; @@ -9893,6 +9634,22 @@ }, /turf/open/floor/iron/white, /area/crew_quarters/fitness/recreation) +"eHG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/numbers/two_nine{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/hallway/primary/central) "eHY" = ( /obj/structure/closet/secure_closet/freezer/fridge{ req_access = null; @@ -9909,20 +9666,74 @@ "eIc" = ( /turf/closed/wall/r_wall, /area/maintenance/department/engine) -"eIe" = ( -/obj/structure/frame/machine, -/turf/open/floor/wood, -/area/library/abandoned) -"eIh" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/under/suit/tan, -/obj/item/reagent_containers/food/drinks/bottle/champagne{ - pixel_x = 6; - pixel_y = 10 +"eIP" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "bridgewindows"; + name = "Bridge View Blast doors"; + pixel_x = -6; + pixel_y = -2; + req_access_txt = "19" }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/carpet/purple, -/area/crew_quarters/dorms) +/obj/machinery/button/door{ + id = "bridgedoors"; + name = "Bridge Access Blast door"; + pixel_x = -6; + pixel_y = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ + alpha = 180 + }, +/obj/machinery/light, +/obj/machinery/power/apc/auto_name/directional/south{ + pixel_y = -24 + }, +/obj/structure/cable/yellow, +/obj/item/camera{ + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor/iron/dark, +/area/bridge) +"eIZ" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + alpha = 180 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/hallway/primary/fore) +"eJp" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/structure/closet/firecloset/full, +/obj/effect/turf_decal/bot, +/obj/item/extinguisher/advanced{ + pixel_x = -1; + pixel_y = -2 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/central) +"eJs" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark, +/area/engineering/hallway) "eJw" = ( /obj/structure/cable{ icon_state = "1-4" @@ -9933,22 +9744,24 @@ "eJz" = ( /turf/closed/wall/r_wall, /area/security/nuke_storage) -"eKj" = ( -/obj/structure/curtain, -/obj/machinery/shower{ - dir = 8 +"eJA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","public") }, -/obj/effect/turf_decal/delivery, -/obj/item/soap/nanotrasen, /turf/open/floor/iron, -/area/hallway/primary/fore) +/area/maintenance/department/crew_quarters/dorms) +"eKt" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/mineral/titanium, +/area/asteroid/paradise/surface) "eKX" = ( /turf/closed/wall, /area/chapel/office) -"eLG" = ( -/obj/structure/chair/wood/wings, -/turf/open/floor/carpet/green, -/area/library/abandoned) "eMb" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch"; @@ -9976,34 +9789,21 @@ }, /turf/open/floor/plating, /area/bridge) -"eMx" = ( -/obj/effect/turf_decal/delivery, -/obj/item/bikehorn/rubberducky, -/obj/structure/curtain, -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/noslip/standard, -/area/hallway/primary/fore) -"eMU" = ( -/obj/structure/railing{ - dir = 6 - }, -/obj/structure/lattice, -/turf/open/openspace, -/area/engineering/hallway) -"eMV" = ( -/obj/effect/turf_decal/trimline/dark/warning{ +"eMn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/effect/turf_decal/siding/dark{ +/obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 }, -/obj/effect/turf_decal/siding/dark{ +/obj/structure/window/plasma/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/components/trinary/mixer/airmix/layer2/flipped{ dir = 8 }, -/turf/open/floor/iron/dark, -/area/engineering/hallway) +/turf/open/floor/iron, +/area/engine/atmos) "eNg" = ( /obj/effect/turf_decal/siding/wood, /obj/item/reagent_containers/glass/bucket{ @@ -10020,6 +9820,20 @@ /obj/item/seeds/carrot/parsnip, /turf/open/floor/wood, /area/asteroid/paradise/surface) +"eNn" = ( +/obj/item/radio/intercom{ + pixel_y = -34 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/iron/white, +/area/medical/apothecary) +"eNy" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input/layer4, +/turf/open/floor/engine/n2, +/area/engine/atmos) "eNz" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -10033,6 +9847,11 @@ /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/dorms) +"eNV" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/department/chapel) "eOa" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 @@ -10084,16 +9903,12 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat/foyer) -"eOX" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/machinery/camera/autoname/directional/east{ - network = list("ss13","security") +"ePf" = ( +/obj/machinery/ai_slipper{ + uses = 10 }, -/turf/open/floor/iron, -/area/security/brig) +/turf/open/floor/iron/tech, +/area/engine/atmos) "ePt" = ( /obj/structure/cable{ icon_state = "1-2" @@ -10129,6 +9944,37 @@ /obj/effect/turf_decal/stripes/closeup, /turf/open/floor/plating, /area/chapel/office) +"ePW" = ( +/obj/structure/urinal{ + dir = 1; + pixel_x = 1; + pixel_y = 33 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/item/radio/intercom{ + dir = 1; + pixel_x = -31; + pixel_y = -2 + }, +/turf/open/floor/iron/freezer, +/area/hallway/primary/fore) +"ePY" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/hallway/primary/central) +"eQb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/wood, +/area/library/abandoned) "eQo" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/turf_decal/bot, @@ -10159,14 +10005,39 @@ /obj/item/clothing/glasses/hud/security/sunglasses, /turf/open/floor/carpet/red, /area/security/detectives_office) -"eQz" = ( -/obj/effect/turf_decal/trimline/yellow, -/obj/structure/lattice/catwalk/over, +"eQy" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/engineering/hallway) +"eQG" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/iron/tech, +/area/science/mixing) +"eQW" = ( +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 + }, /obj/structure/cable/yellow{ - icon_state = "2-16" + icon_state = "0-4" }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) +/obj/machinery/space_heater, +/turf/open/floor/iron, +/area/maintenance/department/medical/central) +"eRP" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/openspace, +/area/engineering/hallway) "eSh" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -10191,16 +10062,11 @@ }, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/dorms) -"eTo" = ( -/obj/structure/fence/cut/large, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) -"eTr" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating/asteroid/planetary, -/area/asteroid/paradise/surface) +"eTk" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/hallway) "eTz" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -10217,54 +10083,11 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/storage) -"eTC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/disposalpipe/sorting/mail/destination/bar{ - dir = 1 - }, -/turf/open/floor/wood/broken, -/area/crew_quarters/cafeteria) -"eTE" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/siding/dark{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/hallway/primary/central) "eTK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating/asteroid/basalt/planetary, /area/asteroid/paradise) -"eUd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/machinery/processor, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","security","prison","public") - }, -/obj/item/radio/intercom{ - desc = "Talk through this. It looks like it has been modified to not broadcast."; - name = "Prison Intercom (General)"; - pixel_y = 24; - prison_radio = 1 - }, -/turf/open/floor/prison/dark, -/area/security/prison) "eUf" = ( /obj/effect/turf_decal/bot, /obj/machinery/camera/autoname/directional/east, @@ -10282,12 +10105,6 @@ dir = 4 }, /area/bridge) -"eUh" = ( -/obj/structure/disposalpipe/multiz/down{ - dir = 4 - }, -/turf/open/openspace, -/area/hallway/primary/central) "eUm" = ( /obj/machinery/holopad, /obj/structure/disposalpipe/segment{ @@ -10305,6 +10122,21 @@ /obj/machinery/digital_clock/directional/north, /turf/open/floor/carpet/green, /area/crew_quarters/cafeteria) +"eUG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/visible{ + dir = 8 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/engine/engineering) "eUY" = ( /obj/structure/flora/rock/pile, /turf/open/floor/plating/asteroid/planetary, @@ -10319,6 +10151,18 @@ /obj/machinery/vending/wardrobe/sec_wardrobe, /turf/open/floor/iron, /area/security/brig) +"eVn" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/door/airlock/public/glass{ + name = "bathroom" + }, +/turf/open/floor/iron/freezer, +/area/hallway/primary/fore) "eVo" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/stripes/line{ @@ -10345,6 +10189,12 @@ }, /turf/open/floor/iron/sepia, /area/quartermaster/storage) +"eVz" = ( +/obj/structure/railing{ + dir = 10 + }, +/turf/open/openspace, +/area/hallway/primary/fore) "eVD" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -10362,17 +10212,37 @@ }, /turf/open/floor/iron, /area/medical/apothecary) -"eWh" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/tree/jungle{ - plane = -3 +"eWk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 10 }, -/turf/open/floor/grass/no_border, /area/hallway/primary/aft) -"eWn" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/engine) +"eWs" = ( +/obj/structure/flora/rock/pile, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/catwalk_floor/iron_dark, +/area/asteroid/paradise/surface) +"eWv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/structure/ladder, +/turf/open/floor/pod/dark, +/area/maintenance/department/chapel) "eWC" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -10398,12 +10268,15 @@ }, /turf/open/floor/plating, /area/maintenance/department/science/central) -"eXk" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/asteroid/paradise/surface) "eXn" = ( /turf/open/floor/plating, /area/maintenance/department/crew_quarters/bar) +"eXt" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) "eXz" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ @@ -10419,6 +10292,15 @@ "eXB" = ( /turf/closed/wall, /area/maintenance/department/crew_quarters/dorms) +"eXD" = ( +/obj/machinery/power/solar{ + id = "portsolar"; + name = "Port Solar Array" + }, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/cable, +/turf/open/floor/iron/solarpanel, +/area/asteroid/paradise/surface) "eYg" = ( /obj/structure/stairs{ dir = 8 @@ -10439,6 +10321,15 @@ /obj/effect/spawner/lootdrop/maintenance/two, /turf/open/floor/plating, /area/maintenance/department/science/central) +"eYx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) "eYE" = ( /obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt/dust, @@ -10450,6 +10341,23 @@ }, /turf/open/floor/iron, /area/science/research) +"eYZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/camera/autoname/directional/west, +/obj/machinery/digital_clock/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/hallway/primary/aft) +"eZe" = ( +/obj/structure/table/wood, +/obj/item/screwdriver, +/obj/item/hatchet, +/obj/item/paicard, +/turf/open/floor/iron, +/area/hallway/primary/fore) "eZf" = ( /obj/structure/sign/warning/fire{ pixel_x = 32 @@ -10469,18 +10377,24 @@ }, /turf/open/floor/engine, /area/maintenance/disposal/incinerator) +"eZr" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/engine, +/area/engine/supermatter) "eZt" = ( /turf/closed/wall/rust, /area/science/xenobiology) -"eZv" = ( -/obj/structure/railing, -/obj/effect/turf_decal/tile/purple/fourcorners/contrasted, -/obj/effect/turf_decal/siding/white, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +"eZB" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 }, -/turf/open/floor/iron/white, -/area/science/lab) +/turf/open/floor/iron, +/area/hallway/primary/central) "eZE" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/closed/wall, @@ -10498,6 +10412,12 @@ }, /turf/open/floor/catwalk_floor/iron_dark, /area/crew_quarters/fitness/recreation) +"eZG" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron/techmaint/planetary, +/area/asteroid/paradise/surface) "eZI" = ( /obj/structure/lattice/catwalk/over, /turf/open/openspace, @@ -10512,6 +10432,10 @@ }, /turf/open/floor/iron, /area/hallway/secondary/service) +"eZZ" = ( +/obj/structure/frame/machine, +/turf/open/floor/plating/asteroid/basalt/planetary, +/area/asteroid/paradise) "fae" = ( /obj/machinery/camera/motion/directional/south{ c_tag = "MiniSat Exterior 1"; @@ -10524,6 +10448,50 @@ /obj/machinery/light, /turf/open/openspace, /area/crew_quarters/heads/hor) +"fao" = ( +/obj/structure/railing{ + dir = 6 + }, +/turf/open/openspace, +/area/engineering/hallway) +"fap" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/table, +/obj/item/pipe_dispenser{ + pixel_x = 1; + pixel_y = 12 + }, +/obj/item/pipe_dispenser{ + pixel_y = 7 + }, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/glasses/meson{ + pixel_y = 1 + }, +/obj/item/clothing/glasses/meson{ + pixel_x = 2 + }, +/obj/item/card/id/job/atmospheric_technician{ + access = list(11); + pixel_y = -5 + }, +/obj/item/clothing/glasses/meson/engine{ + pixel_y = -6 + }, +/obj/item/clothing/head/beret/atmos{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/visible{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/engine/engineering) "faZ" = ( /turf/closed/wall/r_wall, /area/quartermaster/warehouse) @@ -10598,26 +10566,10 @@ }, /turf/open/floor/carpet/red, /area/crew_quarters/theatre/backstage) -"fcg" = ( -/obj/effect/turf_decal/siding/dark/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"fck" = ( -/obj/effect/turf_decal/tile/black/opposingcorners{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/kirbyplants/random, -/obj/machinery/firealarm/directional/south, -/obj/machinery/camera/autoname/directional/south{ - network = list("ss13","rd") - }, -/turf/open/floor/iron/white, -/area/crew_quarters/heads/hor) +"fcl" = ( +/obj/effect/turf_decal/siding/blue, +/turf/open/floor/glass/reinforced, +/area/medical/medbay/central) "fcz" = ( /obj/structure/girder, /turf/open/floor/plating, @@ -10629,12 +10581,16 @@ }, /turf/open/floor/iron/tech, /area/science/mixing/chamber) +"fcP" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/library/abandoned) "fdh" = ( /turf/open/openspace, /area/ai_monitored/turret_protected/aisat/maint) -"fdi" = ( -/turf/closed/wall, -/area/hallway/primary/central) "fdK" = ( /obj/structure/curtain/directional{ dir = 8 @@ -10741,42 +10697,49 @@ }, /turf/open/floor/plating, /area/maintenance/department/eva) -"fgK" = ( -/obj/machinery/computer/objective, -/obj/effect/turf_decal/stripes/line{ - dir = 5 +"fgW" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/turf/open/floor/iron/techmaint/planetary, -/area/asteroid/paradise/surface) -"fgP" = ( -/turf/closed/wall, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron, +/area/maintenance/department/engine) +"fhw" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/white/corner, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron/dark, /area/hallway/primary/fore) -"fhE" = ( -/obj/machinery/camera/autoname/directional/west{ - network = list("ss13","medbay") +"fhx" = ( +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = 31; + pixel_y = -2 }, -/obj/machinery/vending/medical, -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 +/obj/structure/cable/yellow{ + icon_state = "2-8" }, -/obj/machinery/status_display/evac{ - pixel_x = -32 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 }, +/obj/structure/disposalpipe/junction, /turf/open/floor/iron, -/area/medical/surgery) +/area/quartermaster/sorting) "fhM" = ( /obj/structure/sign/warning/fire, /turf/closed/wall/r_wall/rust, /area/maintenance/disposal/incinerator) -"fhR" = ( -/obj/structure/railing{ - dir = 5 - }, -/obj/structure/closet/emcloset/anchored, -/turf/open/floor/iron/dark/side{ - dir = 5 - }, -/area/hallway/primary/aft) "fhV" = ( /obj/structure/closet/toolcloset, /obj/effect/turf_decal/bot, @@ -10809,20 +10772,6 @@ /obj/machinery/firealarm/directional/east, /turf/open/openspace, /area/maintenance/department/engine/atmos) -"fiu" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_one_access_txt = "12;7;29" - }, -/obj/effect/turf_decal/stripes/closeup{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/maintenance/department/engine) "fiC" = ( /obj/structure/table/reinforced, /obj/item/storage/pill_bottle/dice{ @@ -10842,6 +10791,20 @@ /obj/structure/flora/ausbushes/lavendergrass, /turf/closed/mineral/random/air, /area/asteroid/paradise) +"fiM" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + alpha = 180; + dir = 8 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/hallway/primary/central) "fiN" = ( /obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ alpha = 180; @@ -10861,6 +10824,14 @@ }, /turf/open/floor/iron, /area/security/brig) +"fjc" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/delivery, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/iron, +/area/maintenance/department/crew_quarters/bar) "fjp" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/maintenance/two, @@ -10890,13 +10861,6 @@ slowdown = 0 }, /area/asteroid/paradise/surface) -"fkN" = ( -/obj/structure/fence{ - dir = 8 - }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) "fkW" = ( /obj/item/canvas/twentythree_twentythree, /obj/item/canvas/twentythree_twentythree, @@ -10906,30 +10870,6 @@ /obj/structure/easel, /turf/open/floor/wood, /area/crew_quarters/cafeteria) -"fli" = ( -/obj/machinery/firealarm/directional/south, -/obj/structure/rack, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_y = 7 - }, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/clothing/head/helmet/alt{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/clothing/head/helmet/alt{ - pixel_y = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) "flo" = ( /turf/closed/wall, /area/crew_quarters/heads/chief) @@ -10944,23 +10884,14 @@ /obj/effect/turf_decal/box, /turf/open/floor/iron/sepia, /area/quartermaster/storage) +"fmE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output, +/turf/open/floor/engine/air, +/area/engine/atmos) "fmH" = ( /obj/structure/ladder, /turf/open/floor/pod/dark, /area/maintenance/department/medical/central) -"fmR" = ( -/obj/effect/turf_decal/siding/dark, -/obj/effect/turf_decal/siding/dark{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/dark/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/engineering/hallway) "fna" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -10992,47 +10923,52 @@ }, /turf/open/floor/iron/dark, /area/medical/morgue) -"fnz" = ( -/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ - alpha = 180 - }, -/obj/structure/table/reinforced, -/obj/item/paicard{ - pixel_x = -10; - pixel_y = 2 - }, -/obj/item/storage/fancy/donut_box{ - pixel_x = 9; - pixel_y = -1 +"fnx" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/item/book/manual/wiki/sopcommand, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/iron/dark, -/area/bridge) +/turf/open/floor/iron/techmaint/planetary, +/area/asteroid/paradise/surface) "fnC" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 }, /turf/open/floor/iron, /area/maintenance/department/chapel) -"fnL" = ( -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -5; - pixel_y = 5 +"fnM" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = 7; - pixel_y = 6 +/obj/structure/disposalpipe/segment{ + dir = 5 }, -/turf/open/floor/iron, -/area/security/brig) +/turf/open/floor/plating, +/area/maintenance/department/engine/atmos) "fnQ" = ( /turf/open/floor/plating, /area/maintenance/department/medical/morgue) +"fnY" = ( +/obj/structure/table/reinforced, +/obj/structure/desk_bell{ + pixel_x = -8; + pixel_y = 9 + }, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/obj/item/paicard{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) "fod" = ( /obj/machinery/door/airlock/public/glass{ name = "Starboard Auxiliary Hallway" @@ -11041,12 +10977,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/crew_quarters/cafeteria) -"foo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/engine/engineering) "foz" = ( /obj/machinery/door/airlock{ name = "Theatre"; @@ -11065,6 +10995,38 @@ }, /turf/open/floor/wood, /area/crew_quarters/theatre/backstage) +"foS" = ( +/obj/structure/curtain, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/white, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_one_access_txt = "5" + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/medical/genetics/cloning) +"fpi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) "fpu" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 @@ -11088,15 +11050,6 @@ }, /turf/open/floor/iron/dark, /area/security/execution/education) -"fpO" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/mob/living/simple_animal/pet/hamster/vector{ - pixel_x = 1; - pixel_y = 10 - }, -/turf/open/floor/iron, -/area/asteroid/paradise) "fpY" = ( /obj/structure/flora/ausbushes/fernybush, /obj/effect/turf_decal/siding/white/corner{ @@ -11115,14 +11068,19 @@ }, /turf/open/floor/iron, /area/teleporter) -"fqg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 +"fqp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/turf/open/floor/iron/dark/side{ - dir = 5 +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_one_access_txt = "12;7;29" }, -/area/hallway/primary/aft) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) "fqC" = ( /obj/effect/turf_decal/sand/plating, /obj/structure/disposalpipe/segment{ @@ -11136,25 +11094,10 @@ }, /turf/open/floor/iron, /area/crew_quarters/dorms) -"fqM" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/north, -/obj/item/toy/spinningtoy, -/obj/structure/disposalpipe/multiz{ - dir = 2 - }, -/turf/open/floor/iron, -/area/engine/atmos) "fqR" = ( /obj/effect/landmark/start/cargo_technician, /turf/open/floor/iron/sepia, /area/quartermaster/storage) -"frz" = ( -/obj/structure/lattice/catwalk/over, -/turf/open/openspace, -/area/hallway/primary/fore) "frC" = ( /obj/effect/turf_decal/tile/purple/half/contrasted, /obj/structure/cable/yellow{ @@ -11165,12 +11108,6 @@ }, /turf/open/floor/iron/white, /area/science/xenobiology) -"frW" = ( -/obj/structure/railing{ - dir = 10 - }, -/turf/open/openspace, -/area/engineering/hallway) "fsb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 @@ -11184,67 +11121,27 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron/showroomfloor, /area/crew_quarters/fitness/recreation) -"fss" = ( -/obj/structure/table, -/obj/item/geiger_counter{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/toy/plush/plushvar{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/effect/turf_decal/siding/dark{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 1 +"fsT" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/yellow/visible/layer2{ + dir = 5 }, -/turf/open/floor/iron/dark, -/area/engineering/hallway) -"fta" = ( -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ +/obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 }, -/obj/effect/landmark/start/scientist, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/white/side{ - dir = 5 - }, -/area/science/lab) -"ftk" = ( -/obj/structure/railing/corner{ +/obj/structure/window/plasma/reinforced{ dir = 1 }, -/obj/machinery/light, -/obj/machinery/power/apc/auto_name/directional/south{ - pixel_y = -24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +/obj/machinery/atmospherics/components/trinary/filter/atmos/o2/layer4{ + dir = 8 }, /turf/open/floor/iron, -/area/science/mixing) +/area/engine/atmos) +"ftp" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall, +/area/hallway/primary/fore) "ftq" = ( /obj/machinery/portable_atmospherics/pump, /obj/effect/turf_decal/bot{ @@ -11278,17 +11175,17 @@ }, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/dorms) -"fuT" = ( -/obj/item/reagent_containers/food/drinks/bottle/beer{ - pixel_x = 6; - pixel_y = 27 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 +"fuO" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/asteroid/paradise/surface) +"fuQ" = ( +/obj/structure/fence/corner{ + dir = 5 }, -/obj/machinery/disposal/bin, -/turf/open/floor/iron/dark, -/area/science/mixing) +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) "fvf" = ( /obj/machinery/button/door{ id = "Cabin3"; @@ -11324,24 +11221,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/security/brig) -"fvB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/effect/turf_decal/numbers{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/sorting/mail/destination/hop_office/flip{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/hallway/primary/fore) "fvT" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -11357,6 +11236,18 @@ }, /turf/open/floor/iron, /area/maintenance/department/crew_quarters/dorms) +"fwd" = ( +/obj/machinery/modular_fabricator/exosuit_fab{ + dir = 1; + output_direction = 1 + }, +/obj/machinery/ecto_sniffer{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/structure/railing, +/turf/open/floor/iron, +/area/science/robotics) "fwf" = ( /obj/effect/turf_decal/bot, /obj/item/storage/box/breacherslug, @@ -11394,20 +11285,6 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) -"fwI" = ( -/obj/machinery/computer/xenoartifact_console, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","rd") - }, -/turf/open/floor/iron, -/area/science/explab) "fwN" = ( /obj/structure/cable{ icon_state = "4-8" @@ -11430,17 +11307,6 @@ /obj/effect/turf_decal/stripes/closeup, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"fxY" = ( -/obj/machinery/button/door{ - id = "commissaryshutters3"; - name = "Commissary Shutters Control #3"; - pixel_x = 32 - }, -/obj/structure/table/wood, -/obj/item/stack/sheet/wood/ten, -/obj/item/storage/bag/trash, -/turf/open/floor/iron, -/area/hallway/primary/fore) "fyA" = ( /turf/closed/wall, /area/science/robotics) @@ -11472,15 +11338,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/dorms) -"fzs" = ( -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/medical/surgery) "fzw" = ( /obj/effect/turf_decal/stripes/end{ dir = 8 @@ -11491,6 +11348,10 @@ /obj/structure/ladder, /turf/open/floor/iron/techmaint/planetary, /area/asteroid/paradise/surface) +"fzx" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface/grass) "fzZ" = ( /obj/machinery/atmospherics/components/trinary/filter/critical{ dir = 4 @@ -11524,6 +11385,17 @@ }, /turf/open/floor/catwalk_floor/iron_dark, /area/maintenance/disposal/incinerator) +"fAx" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/hallway/primary/central) "fBc" = ( /obj/structure/mirror{ pixel_x = -32; @@ -11540,15 +11412,6 @@ /obj/effect/spawner/room/threexfive, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) -"fBx" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","cargo") - }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) "fBG" = ( /obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, @@ -11574,16 +11437,10 @@ /obj/machinery/telecomms/server/presets/medical, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"fBU" = ( -/obj/structure/stairs, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_x = -15; - pixel_y = -31 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/pod/dark, -/area/hallway/primary/fore) +"fBQ" = ( +/obj/structure/railing, +/turf/open/openspace, +/area/engineering/hallway) "fBW" = ( /obj/structure/closet/crate/medical, /obj/effect/spawner/lootdrop/ruinloot/medical, @@ -11615,46 +11472,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/tech, /area/engine/atmos) -"fCw" = ( -/obj/machinery/flasher{ - id = "hopflash"; - pixel_y = 27 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) -"fCz" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/evac, -/turf/open/floor/iron, -/area/maintenance/department/science/central) -"fCA" = ( -/obj/item/storage/fancy/donut_box{ - name = "Holy donut box"; - pixel_x = -4; - pixel_y = 17 - }, +"fCB" = ( /obj/item/radio/intercom{ - dir = 1; - pixel_x = 33; - pixel_y = -2 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/wood, -/area/chapel/office) -"fCB" = ( -/obj/item/radio/intercom{ - pixel_x = -30; - pixel_y = -1 + pixel_x = -30; + pixel_y = -1 }, /obj/machinery/rnd/production/techfab/department/medical, /obj/effect/turf_decal/stripes/box, @@ -11669,25 +11490,6 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/carpet, /area/asteroid/paradise/surface) -"fDC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output/layer4{ - dir = 4 - }, -/turf/open/floor/engine/co2, -/area/engine/atmos) -"fDJ" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/numbers/two_nine{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/iron, -/area/maintenance/department/chapel) "fEe" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/disposalpipe/segment{ @@ -11729,14 +11531,13 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/wood, /area/crew_quarters/dorms) -"fFe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 +"fFd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 }, -/obj/machinery/space_heater, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/dark, -/area/engine/engineering) +/turf/open/floor/iron, +/area/hallway/primary/aft) "fFu" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/table/reinforced, @@ -11754,6 +11555,27 @@ }, /turf/open/openspace, /area/crew_quarters/kitchen) +"fGm" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/crew_quarters/heads/cmo) "fGn" = ( /obj/machinery/door/airlock/vault{ name = "Vault Door"; @@ -11772,10 +11594,44 @@ /obj/effect/mapping_helpers/airlock/locked, /turf/open/floor/iron, /area/security/nuke_storage) -"fGM" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/hallway/primary/central) +"fGJ" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/hallway/primary/fore) +"fGQ" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/grid/steel, +/area/science/mixing) +"fGZ" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/asteroid/paradise) "fHo" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -11786,6 +11642,30 @@ /obj/effect/decal/cleanable/oil/slippery, /turf/open/floor/engine, /area/ai_monitored/turret_protected/ai) +"fHy" = ( +/obj/machinery/door/airlock/science{ + name = "Toxins Lab"; + req_one_access_txt = "49;27" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/science/mixing) +"fHG" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/hallway) "fHV" = ( /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/ywflowers{ @@ -11816,6 +11696,18 @@ }, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) +"fIy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/aft) "fJc" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 4 @@ -11839,9 +11731,41 @@ }, /turf/open/floor/plating, /area/maintenance/department/medical/morgue) +"fJo" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/hallway/primary/central) "fJp" = ( /turf/open/openspace, /area/science/explab) +"fJD" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/sepia, +/area/quartermaster/storage) "fJT" = ( /obj/structure/cable/yellow{ icon_state = "1-8" @@ -11884,6 +11808,21 @@ dir = 8 }, /area/science/research) +"fKu" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/openspace, +/area/engineering/hallway) +"fKS" = ( +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_x = -13; + pixel_y = -11 + }, +/obj/structure/chair/fancy/plastic, +/turf/open/floor/plating/beach/sand, +/area/asteroid/paradise/surface/sand) "fLl" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -11893,16 +11832,19 @@ }, /turf/open/floor/wood, /area/crew_quarters/heads/hop) -"fLu" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 +"fLs" = ( +/obj/structure/chair{ + dir = 1 }, -/obj/effect/turf_decal/bot, -/obj/machinery/computer/crew{ - req_one_access = list(5,4) +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 }, -/turf/open/floor/iron/grid/steel, -/area/medical/patients_rooms) +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/siding/white, +/turf/open/floor/iron, +/area/medical/medbay/central) "fLS" = ( /turf/closed/wall/r_wall, /area/ai_monitored/security/armory) @@ -11912,11 +11854,30 @@ }, /turf/open/floor/plating/dirt/planetary, /area/asteroid/paradise/surface) +"fMc" = ( +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","medbay") + }, +/obj/machinery/vending/medical, +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 + }, +/obj/machinery/status_display/evac{ + pixel_x = -32 + }, +/turf/open/floor/iron, +/area/medical/surgery) "fMh" = ( /obj/structure/ladder, /obj/structure/railing, /turf/open/floor/pod/dark, /area/maintenance/department/bridge) +"fMk" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/medbay/central) "fMC" = ( /obj/structure/cable{ icon_state = "1-2" @@ -11927,41 +11888,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/engine/engineering) -"fMH" = ( -/obj/machinery/keycard_auth{ - pixel_x = 33; - pixel_y = -5 - }, -/obj/machinery/button/door{ - id = "Capoffice"; - id_tag = "cmoprivacy"; - name = "Captain blast door"; - pixel_x = 32; - pixel_y = 5 - }, -/obj/structure/table/wood, -/obj/machinery/computer/security/wooden_tv{ - pixel_x = 2; - pixel_y = 8 - }, -/obj/machinery/firealarm/directional/south, -/obj/item/melee/chainofcommand{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/machinery/camera/autoname/directional/south, -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/obj/item/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Command)"; - pixel_x = 33; - pixel_y = -35 - }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/heads/captain/private) "fMJ" = ( /obj/structure/railing/corner{ dir = 4 @@ -11975,6 +11901,24 @@ }, /turf/open/floor/iron/dark, /area/engine/atmos) +"fMK" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Foyer"; + req_one_access_txt = "32" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/engineering/hallway) "fML" = ( /obj/structure/closet/crate/secure/engineering, /obj/item/stack/sheet/iron/fifty{ @@ -12010,24 +11954,15 @@ }, /turf/open/floor/iron/dark, /area/teleporter) -"fMR" = ( -/obj/machinery/light_switch{ - pixel_x = -24; - pixel_y = -25 - }, -/obj/item/crowbar/red, -/turf/open/floor/wood, -/area/library/abandoned) -"fMV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/iron/dark/side{ - dir = 10 - }, -/area/hallway/primary/aft) "fMX" = ( /turf/closed/wall, /area/crew_quarters/dorms) +"fNB" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/openspace, +/area/maintenance/department/chapel) "fNN" = ( /obj/structure/chair/fancy/bench/pew/left{ dir = 1 @@ -12059,10 +11994,25 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron, /area/science/mixing) +"fOm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/central) "fOw" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, /turf/open/floor/iron/dark, -/area/maintenance/department/medical/central) +/area/engineering/hallway) "fOH" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ @@ -12078,15 +12028,16 @@ }, /turf/open/floor/iron/dark, /area/security/brig) -"fOY" = ( -/obj/machinery/light{ - dir = 8 +"fOR" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark{ + dir = 1 }, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron/dark/side{ - dir = 8 +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 }, -/area/hallway/primary/central) +/turf/open/floor/iron/dark, +/area/engineering/hallway) "fPa" = ( /obj/effect/turf_decal/tile/purple/fourcorners/contrasted, /obj/structure/cable/yellow{ @@ -12114,6 +12065,25 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/maintenance/department/science/central) +"fPV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/carpet/purple, +/area/crew_quarters/cafeteria) "fQo" = ( /obj/effect/turf_decal/tile/purple/fourcorners/contrasted, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -12201,6 +12171,15 @@ /obj/effect/spawner/lootdrop/maintenance/two, /turf/open/floor/iron, /area/maintenance/department/bridge) +"fRs" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/evac{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/maintenance/department/engine) "fRt" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 @@ -12208,6 +12187,17 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/carpet/purple, /area/crew_quarters/cafeteria) +"fRu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/iron/grid/steel, +/area/medical/patients_rooms) "fRN" = ( /obj/effect/turf_decal/tile/purple/half/contrasted, /turf/open/floor/iron/white, @@ -12244,18 +12234,19 @@ }, /turf/open/floor/iron/white, /area/science/lab) -"fSH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/curtain/directional, -/obj/structure/cable/yellow{ - icon_state = "0-4" +"fSw" = ( +/obj/structure/sign/directions/engineering{ + pixel_y = -5 }, -/obj/structure/disposalpipe/segment{ - dir = 1 +/obj/structure/sign/directions/supply{ + pixel_y = 1 }, -/turf/open/floor/plating, -/area/quartermaster/qm) +/obj/structure/sign/directions/evac{ + dir = 8; + pixel_y = 7 + }, +/turf/closed/wall, +/area/hallway/primary/aft) "fSZ" = ( /obj/machinery/modular_computer/console/preset/research{ dir = 8 @@ -12278,16 +12269,6 @@ /obj/effect/landmark/start/research_director, /turf/open/floor/carpet/purple, /area/crew_quarters/heads/hor) -"fTr" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/structure/chair/fancy/bench, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/iron, -/area/security/prison) "fTY" = ( /obj/structure/chair{ dir = 8 @@ -12297,46 +12278,17 @@ }, /turf/open/floor/plating/airless, /area/science/test_area) -"fUc" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/beakers{ - pixel_x = -10; - pixel_y = 7 - }, -/obj/item/storage/box/syringes{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/requests_console{ - department = "Medbay Storage"; - name = "Medbay Storage RC"; - pixel_y = 29 +"fUh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "brigfrontdoor"; + name = "Front Security Blast Door" }, -/obj/structure/disposalpipe/multiz{ - dir = 8 +/obj/structure/cable/yellow{ + icon_state = "0-8" }, /turf/open/floor/plating, -/area/medical/storage) -"fUi" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/thermomachine/heater/on/layer_4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/engine/atmos) +/area/security/brig) "fUP" = ( /obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -12360,23 +12312,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroid/basalt/planetary, /area/asteroid/paradise) -"fUW" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - alpha = 180; - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/security/warden) "fUZ" = ( /obj/structure/chair/fancy/sofa/old/corner/concave{ dir = 1 @@ -12410,25 +12345,17 @@ }, /turf/open/floor/pod/dark, /area/engine/atmos) -"fVl" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +"fVr" = ( +/obj/structure/railing{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/ai_slipper{ - uses = 10 +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 4 }, -/turf/open/floor/carpet/purple, -/area/crew_quarters/cafeteria) +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/iron, +/area/hallway/primary/aft) "fVy" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -12446,6 +12373,13 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/security/prison) +"fVz" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/central) "fVM" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -12454,30 +12388,18 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/wood, /area/crew_quarters/cafeteria) -"fWw" = ( -/obj/machinery/camera/autoname/directional/north, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_x = 1; - pixel_y = 23 +"fWn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/iron, -/area/janitor) -"fWy" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input/layer2, -/turf/open/floor/engine/air, -/area/engine/atmos) -"fWA" = ( -/obj/structure/railing/corner{ +/obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/structure/lattice, -/turf/open/openspace, -/area/engineering/hallway) +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/engine/engineering) "fWE" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Disposal Access"; @@ -12494,6 +12416,13 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) +"fWF" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron, +/area/maintenance/department/crew_quarters/bar) "fWU" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -12512,13 +12441,18 @@ }, /turf/open/floor/engine, /area/science/explab) -"fYa" = ( -/obj/structure/flora/rock/pile, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/mineral/titanium, -/area/asteroid/paradise/surface) +"fYE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/prison) "fYK" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -12527,6 +12461,26 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plating, /area/maintenance/department/security/brig) +"fYN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/directional, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/open/floor/plating, +/area/quartermaster/qm) +"fYP" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 4; + initialize_directions = 4 + }, +/turf/open/floor/iron/tech, +/area/engine/engineering) "fYS" = ( /obj/effect/turf_decal/box, /obj/machinery/shower{ @@ -12560,29 +12514,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/bridge) -"fZl" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/holopad, -/obj/effect/turf_decal/box, -/turf/open/floor/iron, -/area/hallway/primary/aft) -"fZm" = ( -/obj/machinery/computer/bounty{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/central) "fZv" = ( /obj/structure/table/reinforced, /obj/item/mmi{ @@ -12623,16 +12554,6 @@ /obj/machinery/digital_clock/directional/north, /turf/open/floor/wood, /area/crew_quarters/heads/captain) -"fZY" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/iron, -/area/maintenance/department/science/central) "gaj" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 10 @@ -12644,42 +12565,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/tech, /area/engine/atmos) -"gak" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/siding/dark{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/hallway/primary/central) -"gax" = ( -/obj/structure/railing{ - dir = 10 - }, -/obj/structure/lattice, -/turf/open/openspace, -/area/hallway/primary/fore) "gbj" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/bot, /obj/structure/reflector/box, /turf/open/floor/iron, /area/engine/engineering) -"gbq" = ( -/obj/structure/chair/fancy/plastic, -/obj/item/cigbutt{ - pixel_x = -13; - pixel_y = -9 - }, -/obj/effect/decal/cleanable/ash{ - pixel_x = -18; - pixel_y = -4 - }, -/turf/open/floor/plating/asteroid/planetary, -/area/asteroid/paradise/surface) "gbP" = ( /obj/effect/turf_decal/sand/plating, /obj/effect/turf_decal/stripes/line{ @@ -12692,23 +12583,6 @@ slowdown = 0 }, /area/asteroid/paradise/surface) -"gcn" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/iron/white, -/area/crew_quarters/heads/cmo) "gcq" = ( /obj/machinery/light_switch{ pixel_x = 25; @@ -12717,6 +12591,16 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron/dark, /area/crew_quarters/kitchen) +"gdb" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/engine/engineering) "gdk" = ( /obj/machinery/hydroponics/constructable, /obj/effect/turf_decal/bot, @@ -12731,19 +12615,6 @@ }, /turf/open/floor/prison/dark, /area/security/prison) -"gdE" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/structure/disposalpipe/sorting/mail/destination/qm_office/flip, -/turf/open/floor/iron/sepia, -/area/quartermaster/storage) "gdF" = ( /obj/effect/turf_decal/sand/plating, /obj/effect/decal/cleanable/dirt/dust, @@ -12756,6 +12627,9 @@ }, /turf/open/floor/dock/drydock, /area/quartermaster/storage) +"gdS" = ( +/turf/open/floor/iron/dark, +/area/hallway/primary/aft) "geb" = ( /obj/structure/table/wood, /obj/item/toy/figure/clown{ @@ -12819,6 +12693,19 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, /area/crew_quarters/heads/chief) +"get" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine/atmos) "gew" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ @@ -12851,22 +12738,6 @@ }, /turf/open/floor/iron/dark, /area/storage/primary) -"gfK" = ( -/obj/structure/urinal{ - dir = 1; - pixel_x = 1; - pixel_y = 33 - }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_x = -31; - pixel_y = -2 - }, -/turf/open/floor/iron/freezer, -/area/hallway/primary/fore) "gfQ" = ( /obj/effect/turf_decal/tile/purple/anticorner/contrasted, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -12889,21 +12760,6 @@ "ggs" = ( /turf/closed/wall/rust, /area/maintenance/department/engine) -"ggB" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/numbers/two_nine, -/turf/open/floor/iron, -/area/maintenance/department/cargo) -"ggL" = ( -/obj/effect/landmark/observer_start, -/turf/open/floor/glass/reinforced, -/area/hallway/primary/central) "ghc" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -12917,10 +12773,16 @@ }, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) -"ghg" = ( -/obj/effect/landmark/loneops, -/turf/open/floor/plating/beach/sand, -/area/asteroid/paradise/surface/sand) +"ghx" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 32 + }, +/obj/item/kirbyplants/random{ + pixel_y = 22 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/hallway/primary/aft) "ghT" = ( /obj/machinery/air_sensor/atmos/sm_core, /turf/open/floor/engine, @@ -12968,6 +12830,18 @@ /obj/effect/mapping_helpers/airlock/abandoned, /turf/open/floor/plating, /area/maintenance/department/bridge) +"giI" = ( +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/openspace, +/area/engineering/hallway) +"giQ" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/tile/dark_green, +/turf/open/floor/iron, +/area/maintenance/department/medical/morgue) "giS" = ( /turf/open/floor/plating/asteroid/planetary, /area/engine/atmos) @@ -12983,15 +12857,30 @@ }, /turf/open/floor/iron/cafeteria_red, /area/crew_quarters/cafeteria) -"gjm" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "4-8" +"giX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/turf/open/floor/plating/asteroid/planetary, -/area/asteroid/paradise/surface) +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/hallway/primary/fore) +"gjb" = ( +/obj/effect/turf_decal/tile/dark_red/corner_ramp{ + alpha = 180; + color = "#DE3A3A"; + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/security/brig) +"gjc" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron, +/area/maintenance/department/science/xenobiology) "gjn" = ( /obj/machinery/newscaster{ pixel_x = 31; @@ -13005,41 +12894,6 @@ }, /turf/open/floor/iron/white, /area/crew_quarters/heads/hor) -"gjv" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/iron, -/area/security/brig) -"gjA" = ( -/obj/structure/table/wood, -/obj/item/gavelblock{ - pixel_x = 1 - }, -/obj/item/gavelhammer{ - pixel_x = 6; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/library/abandoned) "gjC" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/techstorage/security, @@ -13067,24 +12921,15 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/iron/tech/grid, /area/ai_monitored/turret_protected/aisat_interior) -"gka" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, +"gjT" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 + dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible/layer5{ - dir = 9 + dir = 4 }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/engine/engineering) +/turf/open/floor/iron, +/area/hallway/primary/aft) "gkj" = ( /obj/structure/window/reinforced/spawner/north, /obj/effect/turf_decal/stripes/line{ @@ -13097,55 +12942,15 @@ }, /turf/open/floor/circuit/telecomms/server, /area/science/server) -"gkG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/iron/dark/side{ - dir = 9 - }, -/area/hallway/primary/aft) -"gkJ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_one_access_txt = "12;7;29" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"gkT" = ( -/obj/effect/decal/cleanable/robot_debris/old{ - name = "Seamoth fragment"; - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/plating/beach/water, -/area/asteroid/paradise/surface/water) -"gkU" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/wood/broken, -/area/library/abandoned) -"gkY" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/siding/dark{ - dir = 4 +"gkC" = ( +/obj/structure/curtain, +/obj/machinery/shower{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/iron/dark, -/area/hallway/primary/aft) +/obj/effect/turf_decal/delivery, +/obj/item/soap/nanotrasen, +/turf/open/floor/iron, +/area/hallway/primary/fore) "gla" = ( /obj/effect/turf_decal/bot, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -13158,6 +12963,19 @@ /obj/item/circuitboard/machine/smes, /turf/open/floor/iron, /area/engine/engineering) +"glt" = ( +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/caution{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) "glJ" = ( /obj/structure/table, /obj/item/stock_parts/subspace/filter, @@ -13170,6 +12988,26 @@ }, /turf/open/floor/iron/dark, /area/engine/atmos) +"glK" = ( +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/iron, +/area/hallway/primary/fore) +"glQ" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner, +/turf/open/floor/iron/dark, +/area/engineering/hallway) "gmf" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/table, @@ -13214,6 +13052,12 @@ }, /turf/open/floor/iron, /area/science/lab) +"gms" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/aft) "gmt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/chair/office{ @@ -13238,65 +13082,17 @@ }, /turf/open/floor/iron, /area/maintenance/department/medical/central) -"gna" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/item/beacon, -/obj/effect/turf_decal/box, -/obj/machinery/atmospherics/pipe/layer_manifold, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"gnc" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"gnm" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/dark/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/hallway/primary/aft) -"gnr" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/security/brig) -"gnE" = ( -/obj/structure/fence{ - dir = 8 +"gnb" = ( +/obj/machinery/computer/objective, +/obj/effect/turf_decal/stripes/line{ + dir = 5 }, -/obj/structure/sign/warning/electricshock, -/turf/open/floor/plating/grass, +/turf/open/floor/iron/techmaint/planetary, /area/asteroid/paradise/surface) "gnR" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, /area/maintenance/department/science/xenobiology) -"goq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "qm_warehouse"; - name = "warehouse Shutters" - }, -/turf/open/floor/iron/sepia, -/area/quartermaster/warehouse) "gos" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -13313,21 +13109,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"got" = ( -/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ - alpha = 180 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/fore) "goV" = ( /obj/effect/turf_decal/box/corners, /turf/open/floor/dock/drydock, @@ -13362,20 +13143,39 @@ }, /turf/open/floor/iron, /area/engine/atmos) -"gpr" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/turf/open/floor/iron/grid/steel, -/area/medical/patients_rooms) +"gpl" = ( +/obj/machinery/power/apc/auto_name/directional/south{ + pixel_y = -24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/iron/tech/grid, +/area/ai_monitored/turret_protected/aisat_interior) "gpt" = ( -/obj/item/beacon{ - pixel_y = 3 +/obj/structure/table/reinforced, +/obj/item/storage/box/beakers{ + pixel_x = -10; + pixel_y = 7 }, -/obj/machinery/ai_slipper{ - uses = 10 +/obj/item/storage/box/syringes{ + pixel_x = 5; + pixel_y = 1 }, -/turf/open/floor/wood, -/area/crew_quarters/cafeteria) +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Medbay Storage"; + name = "Medbay Storage RC"; + pixel_y = 29 + }, +/obj/structure/disposalpipe/multiz{ + dir = 8 + }, +/turf/open/floor/plating, +/area/medical/storage) "gpR" = ( /obj/machinery/telecomms/processor/preset_one, /obj/effect/turf_decal/stripes/line{ @@ -13386,35 +13186,23 @@ }, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"gqb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/hallway) "gqv" = ( /obj/effect/spawner/structure/window/depleteduranium, /turf/open/floor/plating, /area/engine/engineering) -"gqF" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder{ - pixel_x = -5; - pixel_y = 19 - }, -/obj/item/stack/sheet/mineral/plasma{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/effect/turf_decal/stripes/line{ +"gra" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/machinery/power/apc/auto_name/directional/west{ - pixel_x = -24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/turf/open/floor/iron, -/area/medical/apothecary) +/turf/open/floor/grass/no_border, +/area/hallway/primary/aft) +"grk" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/crew_quarters/heads/cmo) "grl" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 4 @@ -13428,22 +13216,13 @@ }, /turf/open/floor/pod/dark, /area/bridge/meeting_room) -"grQ" = ( -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","rd"); - dir = 4 - }, -/turf/open/floor/iron/white, -/area/science/robotics) -"grS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ +"grx" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 5 }, -/turf/open/floor/iron/tech, -/area/engine/atmos) +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/engine/supermatter) "gsF" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -13502,23 +13281,12 @@ /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/dorms) -"gux" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/evac, -/turf/open/floor/iron/dark/side{ - dir = 6 +"guE" = ( +/obj/structure/railing{ + dir = 8 }, +/turf/open/floor/glass/reinforced, /area/hallway/primary/fore) -"guH" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/evac{ - dir = 1 - }, -/turf/open/floor/iron, -/area/maintenance/department/science/central) "guS" = ( /obj/machinery/door/airlock/mining/glass{ name = "Delivery Office"; @@ -13542,65 +13310,34 @@ }, /turf/open/floor/iron, /area/quartermaster/sorting) -"gvc" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" +"gvg" = ( +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = 25 }, -/obj/structure/table/reinforced, -/obj/item/folder/white{ - pixel_x = -5 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/item/holosign_creator/medical{ - pixel_x = -4; - pixel_y = 17 - }, -/obj/item/toy/figure/cmo{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/item/stamp/cmo{ - pixel_x = -2 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 8 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for monitoring medbay to ensure patient safety."; - dir = 1; - name = "Medbay Monitor"; - network = list("medbay"); - pixel_x = 1; - pixel_y = -32 - }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/heads/cmo) -"gvg" = ( -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 25 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 1 }, /turf/open/floor/iron/sepia, /area/quartermaster/warehouse) -"gvk" = ( -/obj/effect/turf_decal/siding/dark/end{ - dir = 8 - }, +"gvM" = ( +/obj/structure/light_construct, /obj/structure/disposalpipe/segment{ - dir = 10 + dir = 4 }, -/turf/open/floor/glass/reinforced, -/area/hallway/primary/fore) +/obj/structure/sign/warning/pods{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/library/abandoned) "gvQ" = ( /obj/effect/turf_decal/bot, /obj/machinery/portable_atmospherics/scrubber/huge, @@ -13609,33 +13346,26 @@ }, /turf/open/floor/iron/dark, /area/science/mixing) -"gwb" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - alpha = 180; - dir = 1 - }, -/obj/machinery/camera/autoname/directional/west{ - network = list("ss13","security") +"gvS" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Medbay Maintenance"; + req_access_txt = "5" }, -/obj/machinery/button/door{ - id = "armory"; - name = "Armory Shutter Toggle"; - pixel_x = -32; - pixel_y = 1; - req_access_txt = "3" +/obj/machinery/door/poddoor/shutters/preopen{ + id = "quarantineshutters"; + name = "Isolation Shutters" }, -/obj/structure/bed/dogbed/walter, -/mob/living/simple_animal/pet/dog/bullterrier/walter{ - density = 0; - dir = 1 +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/obj/item/stack/sheet/bone{ - pixel_x = 6; - pixel_y = -6 +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/security/warden) +/turf/open/floor/iron, +/area/maintenance/department/medical/central) "gwg" = ( /obj/structure/filingcabinet/chestdrawer, /obj/effect/turf_decal/bot, @@ -13648,14 +13378,6 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/qm) -"gwn" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/hallway/primary/central) "gwH" = ( /obj/structure/window/reinforced{ dir = 4 @@ -13687,21 +13409,50 @@ }, /turf/open/floor/iron/dark, /area/medical/morgue) -"gwZ" = ( -/obj/effect/turf_decal/siding/yellow{ +"gxf" = ( +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/east{ + c_tag = "Interrogation room"; + name = "Interrogation room"; + network = list("interrogation") + }, +/obj/machinery/light_switch{ + pixel_x = 21; + pixel_y = 22 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 }, -/obj/effect/turf_decal/trimline/yellow/warning{ +/turf/open/floor/iron, +/area/security/brig) +"gxg" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/closet/crate/solarpanel_small, +/turf/open/floor/iron, +/area/hallway/primary/fore) +"gxG" = ( +/obj/structure/frame/computer{ + anchored = 1; + dir = 1 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/library/abandoned) +"gxN" = ( +/obj/structure/railing{ dir = 8 }, /obj/effect/turf_decal/siding/dark{ - dir = 4 + dir = 8 }, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 4 +/turf/open/floor/iron/dark/side{ + dir = 10 }, -/turf/open/floor/iron/dark, -/area/engineering/hallway) +/area/hallway/primary/aft) "gyq" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ @@ -13722,31 +13473,13 @@ "gyy" = ( /turf/open/openspace, /area/crew_quarters/cafeteria) -"gyH" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, +"gyO" = ( +/obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/over, -/obj/structure/disposalpipe/segment{ - dir = 4 + icon_state = "1-4" }, -/turf/open/floor/plating, -/area/science/mixing) -"gzS" = ( -/turf/open/floor/iron/dark, -/area/hallway/primary/aft) +/turf/open/floor/iron, +/area/maintenance/department/crew_quarters/bar) "gzY" = ( /obj/structure/bodycontainer/crematorium{ dir = 1; @@ -13778,34 +13511,6 @@ }, /turf/open/floor/iron/dark, /area/security/brig) -"gAu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8; - initialize_directions = 8 - }, -/turf/open/floor/iron/tech, -/area/engine/engineering) -"gAV" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/pod/dark, -/area/maintenance/department/crew_quarters/dorms) "gAW" = ( /obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ alpha = 180; @@ -13836,15 +13541,6 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat/foyer) -"gBe" = ( -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre/backstage) "gBj" = ( /obj/machinery/door/window/brigdoor{ dir = 4; @@ -13859,6 +13555,19 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/rust, /area/science/test_area) +"gBH" = ( +/obj/item/kirbyplants/random{ + pixel_y = 22 + }, +/obj/machinery/power/apc/auto_name/directional/west{ + pixel_x = -24 + }, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/aft) "gBS" = ( /obj/effect/turf_decal/sand/plating, /obj/effect/turf_decal/sand/plating, @@ -13902,12 +13611,10 @@ /obj/structure/spider/stickyweb, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise) -"gDp" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/hallway/primary/central) +"gDl" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/engineering/hallway) "gDB" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -13946,12 +13653,46 @@ }, /turf/open/floor/iron, /area/bridge/meeting_room) +"gEl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_guide, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/window/plasma/reinforced, +/turf/open/floor/iron, +/area/engine/engineering) "gEN" = ( /turf/closed/wall, /area/maintenance/department/security/brig) "gEP" = ( /turf/closed/wall, /area/crew_quarters/theatre/backstage) +"gEU" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/iron, +/area/ai_monitored/turret_protected/aisat/maint) "gFd" = ( /obj/machinery/air_sensor/atmos/plasma_tank, /obj/machinery/atmospherics/pipe/layer_manifold/visible, @@ -13976,11 +13717,6 @@ }, /turf/open/floor/iron, /area/medical/genetics/cloning) -"gFG" = ( -/obj/structure/lattice/catwalk/over, -/obj/machinery/firealarm/directional/east, -/turf/open/openspace, -/area/hallway/primary/fore) "gFM" = ( /obj/effect/turf_decal/tile/purple/fourcorners/contrasted, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -13998,34 +13734,10 @@ }, /turf/open/floor/iron/white, /area/science/lab) -"gFS" = ( -/obj/machinery/door/airlock{ - name = "Service Hall"; - req_one_access_txt = "22;25;26;28;35;37;38;46" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/closeup{ - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/service) -"gFW" = ( -/obj/structure/table/reinforced, -/obj/machinery/microwave{ - desc = "It looks really dirty."; - name = "maintenance microwave"; - pixel_y = 5 - }, -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/iron, -/area/engineering/hallway) +"gFR" = ( +/obj/structure/railing/corner, +/turf/open/openspace, +/area/hallway/primary/fore) "gGp" = ( /obj/machinery/camera/autoname/directional/west{ network = list("ss13","medbay") @@ -14047,30 +13759,16 @@ "gGJ" = ( /turf/closed/mineral/iron, /area/quartermaster/storage) -"gHa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/turf/open/floor/carpet/green, -/area/library/abandoned) -"gHf" = ( -/obj/effect/turf_decal/tile/blue/opposingcorners{ +"gGX" = ( +/obj/structure/lattice/catwalk/over, +/obj/structure/railing{ dir = 1 }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/door/airlock/public/glass{ - name = "bathroom" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/iron/freezer, -/area/hallway/primary/fore) +/turf/open/openspace, +/area/engineering/hallway) "gHj" = ( /obj/machinery/teleport/hub, /obj/effect/turf_decal/stripes/line{ @@ -14078,13 +13776,6 @@ }, /turf/open/floor/iron/dark, /area/teleporter) -"gHn" = ( -/obj/machinery/camera/autoname/directional/south{ - network = list("ss13","security") - }, -/obj/structure/lattice/catwalk/over, -/turf/open/openspace, -/area/maintenance/department/security/brig) "gHx" = ( /obj/structure/railing{ dir = 8 @@ -14094,15 +13785,6 @@ }, /turf/open/floor/iron, /area/science/mixing) -"gHK" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/evac{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/maintenance/department/engine) "gHV" = ( /obj/effect/turf_decal/trimline/blue/filled/warning{ dir = 1 @@ -14129,15 +13811,10 @@ }, /turf/open/floor/iron, /area/maintenance/department/bridge) -"gIs" = ( -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/hallway/primary/fore) +"gIa" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/dirt/planetary, +/area/asteroid/paradise/surface/grass) "gIO" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/turf_decal/stripes/line{ @@ -14199,31 +13876,10 @@ }, /turf/open/floor/circuit/red, /area/ai_monitored/turret_protected/ai) -"gJk" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 - }, -/obj/item/kirbyplants/random{ - pixel_y = 22 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/hallway/primary/aft) "gJv" = ( /obj/structure/ladder, /turf/open/floor/pod/dark, /area/maintenance/department/cargo) -"gJz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "brigentrance"; - name = "Brig Blast Door" - }, -/turf/open/floor/plating, -/area/security/brig) "gJG" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/turf_decal/stripes/line{ @@ -14254,6 +13910,17 @@ }, /turf/open/floor/plating/grass, /area/asteroid/paradise/surface) +"gJV" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/mixer/layer4{ + dir = 4 + }, +/turf/open/floor/iron/tech, +/area/engine/atmos) "gKl" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ @@ -14267,6 +13934,13 @@ }, /turf/open/floor/plating, /area/tcommsat/server) +"gKN" = ( +/obj/item/radio/intercom{ + pixel_x = -31; + pixel_y = -2 + }, +/turf/open/openspace, +/area/engineering/hallway) "gKO" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, @@ -14286,6 +13960,11 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/storage/primary) +"gLH" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output/layer2, +/turf/open/floor/engine/o2, +/area/engine/atmos) "gLR" = ( /obj/machinery/space_heater, /turf/open/floor/plating, @@ -14297,14 +13976,6 @@ /obj/effect/spawner/lootdrop/maintenance/two, /turf/open/floor/pod/dark, /area/maintenance/department/crew_quarters/bar) -"gMn" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/hallway/primary/aft) "gMG" = ( /turf/closed/wall/r_wall, /area/crew_quarters/heads/hor) @@ -14335,12 +14006,21 @@ }, /turf/open/floor/iron/techmaint/planetary, /area/asteroid/paradise/surface) -"gNy" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2{ - dir = 6 +"gND" = ( +/obj/structure/table, +/obj/item/glove_box{ + pixel_x = 8 }, -/turf/closed/wall, -/area/engine/supermatter) +/obj/item/reagent_containers/dropper{ + pixel_x = -2; + pixel_y = -4 + }, +/obj/item/storage/firstaid/advanced{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/floor/iron/grid/steel, +/area/medical/patients_rooms) "gNG" = ( /obj/structure/flora/junglebush, /obj/effect/decal/cleanable/dirt, @@ -14365,25 +14045,10 @@ }, /turf/open/floor/iron/tech, /area/engine/atmos) -"gOB" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","rd") - }, -/obj/machinery/firealarm/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/iron/white/side, -/area/science/research) +"gOm" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/hallway/primary/aft) "gOE" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable/yellow{ @@ -14404,9 +14069,39 @@ /obj/effect/turf_decal/sand/plating, /turf/open/floor/iron, /area/crew_quarters/dorms) +"gPf" = ( +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test Chamber Blast Door" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/closeup{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/explab) "gPs" = ( /turf/open/floor/iron/tech, /area/engine/engineering) +"gPt" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/loading_area, +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/sorting/mail/destination/atmospherics, +/turf/open/floor/iron, +/area/security/prison) "gPG" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -14445,41 +14140,12 @@ /obj/machinery/camera/autoname/directional/south, /turf/open/floor/iron, /area/storage/primary) -"gQa" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/open/floor/iron, -/area/hallway/primary/central) -"gQd" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/evac{ - dir = 1 - }, -/obj/structure/disposalpipe/multiz, -/turf/open/floor/iron, -/area/maintenance/department/science/xenobiology) "gQh" = ( /obj/structure/railing/corner{ dir = 4 }, /turf/open/openspace, /area/ai_monitored/turret_protected/aisat/maint) -"gQE" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/siding/dark{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 10 - }, -/area/hallway/primary/aft) "gRg" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -14492,45 +14158,50 @@ slowdown = 0 }, /area/asteroid/paradise/surface) -"gRi" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, +"gRw" = ( +/obj/effect/turf_decal/sand/plating, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/flora/rock/pile, /obj/structure/cable/yellow{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/structure/disposalpipe/segment{ - dir = 10 +/turf/open/floor/plating/asteroid/planetary, +/area/asteroid/paradise/surface) +"gSc" = ( +/obj/machinery/keycard_auth{ + pixel_x = 33; + pixel_y = -5 }, -/obj/effect/turf_decal/numbers/two_nine, -/turf/open/floor/iron, -/area/maintenance/department/science/xenobiology) -"gRz" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 +/obj/machinery/button/door{ + id = "Capoffice"; + id_tag = "cmoprivacy"; + name = "Captain blast door"; + pixel_x = 32; + pixel_y = 5 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 +/obj/structure/table/wood, +/obj/machinery/computer/security/wooden_tv{ + pixel_x = 2; + pixel_y = 8 }, -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 +/obj/machinery/firealarm/directional/south, +/obj/item/melee/chainofcommand{ + pixel_x = -8; + pixel_y = 4 }, -/obj/structure/cable/yellow{ - icon_state = "0-2" +/obj/machinery/camera/autoname/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 6 }, -/turf/open/floor/iron, -/area/ai_monitored/turret_protected/aisat/maint) -"gRR" = ( -/obj/machinery/door/morgue{ - dir = 1; - name = "Private Study"; - req_access_txt = "37" +/obj/item/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Command)"; + pixel_x = 33; + pixel_y = -35 }, -/obj/structure/barricade/wooden/crude, -/turf/open/floor/carpet/royalblack, -/area/library/abandoned) +/turf/open/floor/carpet/blue, +/area/crew_quarters/heads/captain/private) "gSq" = ( /obj/effect/turf_decal/sand/plating, /obj/effect/decal/cleanable/cobweb, @@ -14543,6 +14214,12 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/carpet/green, /area/crew_quarters/cafeteria) +"gSP" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron, +/area/maintenance/department/engine) "gTv" = ( /obj/structure/chair/fancy/sofa/old/left{ dir = 4 @@ -14552,28 +14229,6 @@ }, /turf/open/floor/carpet/green, /area/crew_quarters/cafeteria) -"gTz" = ( -/obj/effect/spawner/lootdrop/aimodule_harmless, -/obj/effect/spawner/lootdrop/aimodule_harmless, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = -1; - pixel_y = 32 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/spawner/lootdrop/aimodule_harmless, -/obj/machinery/power/apc/auto_name/directional/east{ - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/table/reinforced, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) "gTA" = ( /obj/structure/closet/secure_closet/CMO, /obj/effect/turf_decal/bot{ @@ -14584,8 +14239,11 @@ }, /turf/open/floor/carpet/blue, /area/crew_quarters/heads/cmo) -"gUx" = ( -/obj/structure/railing, +"gUA" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/lattice, /turf/open/openspace, /area/hallway/primary/fore) "gUQ" = ( @@ -14634,26 +14292,6 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/iron/dark, /area/crew_quarters/heads/hos) -"gVM" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/asteroid/paradise/surface) -"gWa" = ( -/turf/open/floor/grass/no_border, -/area/hallway/primary/aft) -"gWk" = ( -/obj/machinery/atmospherics/miner/station/carbon_dioxide, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 8 - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","engine") - }, -/turf/open/floor/engine/co2, -/area/engine/atmos) "gWp" = ( /obj/machinery/light{ dir = 4 @@ -14687,27 +14325,6 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/department/medical/central) -"gWy" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/chem_dispenser, -/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron, -/area/medical/apothecary) -"gWY" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron/dark, -/area/engine/engineering) "gXb" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 @@ -14730,15 +14347,29 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/storage) -"gXk" = ( -/obj/structure/disposalpipe/junction{ +"gXn" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + alpha = 180; dir = 1 }, -/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ - alpha = 180 +/obj/effect/turf_decal/stripes/closeup, +/obj/machinery/door/poddoor/preopen{ + id = "brigentrance"; + name = "Brig Blast Door" }, -/turf/open/floor/iron, -/area/hallway/primary/central) +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/security/brig) "gXq" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -14784,23 +14415,36 @@ /turf/open/floor/iron/dark, /area/engine/atmos) "gYf" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 5 +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "qm_warehouse"; + name = "warehouse Shutters" }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"gYk" = ( -/obj/effect/turf_decal/siding/dark/corner{ - dir = 8 +/obj/machinery/button/door{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_x = 32; + pixel_y = 1; + req_access_txt = "31" }, -/obj/effect/turf_decal/trimline/yellow/corner, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 8 +/turf/open/floor/iron/sepia, +/area/quartermaster/warehouse) +"gYg" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 10 }, -/obj/effect/turf_decal/siding/yellow/corner, -/turf/open/floor/iron/dark, -/area/engineering/hallway) +/area/hallway/primary/aft) +"gYk" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron, +/area/maintenance/department/science/xenobiology) "gYA" = ( /obj/structure/cable{ icon_state = "1-2" @@ -14821,13 +14465,19 @@ }, /turf/open/floor/iron, /area/crew_quarters/dorms) -"gZh" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment{ +"gZl" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ dir = 4 }, -/turf/open/floor/iron, -/area/maintenance/department/engine/atmos) +/turf/open/floor/iron/dark, +/area/engineering/hallway) "gZy" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -14836,22 +14486,18 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/plating/rust, /area/science/test_area) -"ham" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 +"hag" = ( +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/structure/cable/yellow{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 + dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet/red, -/area/security/detectives_office) +/turf/open/floor/catwalk_floor/iron_dark, +/area/engine/engineering) "han" = ( /obj/structure/closet/firecloset/full, /turf/open/floor/iron, @@ -14862,6 +14508,21 @@ }, /turf/open/floor/plating/dirt/planetary, /area/asteroid/paradise/surface/grass) +"haE" = ( +/obj/machinery/status_display/evac{ + pixel_x = -33 + }, +/obj/structure/table/wood, +/obj/machinery/recharger{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/storage/fancy/cigarettes/cigars/havana{ + pixel_x = 13; + pixel_y = 9 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) "haF" = ( /obj/structure/chair/stool/bar/directional/west, /obj/structure/extinguisher_cabinet{ @@ -14869,40 +14530,63 @@ }, /turf/open/floor/iron/cafeteria_red, /area/crew_quarters/cafeteria) -"haI" = ( -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = 7 +"haN" = ( +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_y = 25 }, -/obj/structure/sign/directions/command{ - dir = 1 +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_y = 21 }, -/obj/structure/sign/directions/medical{ - dir = 1; - pixel_y = -6 +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood, +/obj/item/plate{ + pixel_y = 3 }, -/turf/closed/wall, -/area/hallway/primary/aft) +/obj/item/food/donkpocket/pizza{ + pixel_x = -1; + pixel_y = 4 + }, +/turf/open/floor/carpet/green, +/area/crew_quarters/cafeteria) "hbs" = ( /obj/structure/sign/painting/library{ pixel_y = -32 }, /turf/open/openspace, /area/ai_monitored/turret_protected/aisat/maint) -"hbL" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/spawner/lootdrop/glowstick/lit, -/turf/open/floor/iron/white/side, -/area/asteroid/paradise) -"hbZ" = ( -/obj/structure/fans/tiny{ - density = 1; - icon = 'icons/effects/effects.dmi'; - icon_state = "m_shield"; - max_integrity = 1e+007 +"hbt" = ( +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 4 }, -/turf/open/floor/plating/asteroid/basalt/planetary, -/area/quartermaster/storage) +/area/hallway/primary/central) +"hbu" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/structure/fireaxecabinet/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/bridge) +"hcg" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/open/floor/iron/dark, +/area/engineering/hallway) +"hcr" = ( +/obj/effect/turf_decal/sand/plating, +/obj/effect/landmark/observer_start, +/turf/open/floor/iron, +/area/hallway/primary/fore) "hcA" = ( /obj/structure/chair/stool/directional/west, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -14910,24 +14594,6 @@ }, /turf/open/floor/prison, /area/security/prison) -"hcC" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12"; - security_level = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"hcH" = ( -/obj/effect/turf_decal/evac{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/maintenance/department/engine) "hcI" = ( /obj/effect/turf_decal/siding/white{ alpha = 100; @@ -14954,6 +14620,38 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/science/lab) +"hdq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "brigentrance"; + name = "Brig Blast Door" + }, +/turf/open/floor/plating, +/area/security/brig) +"hds" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/engineering/hallway) "hdx" = ( /obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ alpha = 180; @@ -14978,6 +14676,20 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/maintenance/department/science/central) +"hea" = ( +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","engine") + }, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Gas to Chamber" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/engine, +/area/engine/supermatter) "het" = ( /obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ alpha = 180; @@ -14989,16 +14701,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/security/brig) -"hey" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/catwalk_floor/iron_dark, -/area/asteroid/paradise/surface) "heG" = ( /obj/effect/turf_decal/sand/plating, /obj/effect/turf_decal/stripes/line{ @@ -15054,6 +14756,12 @@ /obj/structure/sign/warning/fire, /turf/closed/wall/r_wall, /area/science/mixing) +"hgC" = ( +/obj/structure/fence{ + dir = 8 + }, +/turf/open/floor/plating/dirt/planetary, +/area/asteroid/paradise/surface) "hgG" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 4 @@ -15064,6 +14772,11 @@ }, /turf/open/floor/iron, /area/bridge) +"hgS" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/sepia, +/area/quartermaster/storage) "hha" = ( /obj/effect/turf_decal/tile/brown/half/contrasted, /obj/effect/turf_decal/tile/purple/half/contrasted{ @@ -15077,12 +14790,6 @@ }, /turf/open/floor/iron, /area/bridge) -"hhk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/iron/grid/steel, -/area/medical/medbay/central) "hhm" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted, /obj/structure/disposalpipe/segment{ @@ -15090,16 +14797,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"hhn" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 10 - }, -/obj/structure/closet/firecloset/full, -/obj/structure/railing{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/central) "hht" = ( /obj/machinery/door/window/brigdoor{ dir = 8; @@ -15113,12 +14810,14 @@ "hhu" = ( /turf/closed/wall, /area/crew_quarters/cafeteria) -"hib" = ( -/obj/effect/turf_decal/tile/blue/opposingcorners{ +"hhJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 }, -/turf/open/floor/iron/freezer, -/area/hallway/primary/fore) +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/hallway/primary/central) "hif" = ( /obj/structure/cable/yellow{ icon_state = "4-32" @@ -15134,17 +14833,30 @@ "hiB" = ( /turf/closed/wall, /area/asteroid/paradise) -"hja" = ( -/obj/machinery/power/solar_control, +"hiW" = ( +/obj/structure/chair/fancy/bench/pew/left{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, /obj/structure/cable/yellow{ - icon_state = "4-8" + icon_state = "2-4" }, -/obj/structure/cable{ - icon_state = "0-2" +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/techmaint/planetary, -/area/asteroid/paradise/surface) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/chapel/main) "hjp" = ( /obj/machinery/door/airlock/medical/glass{ name = "Medbay Storage"; @@ -15169,19 +14881,27 @@ }, /turf/open/floor/iron/grid/steel, /area/medical/storage) -"hjQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/bot, -/obj/machinery/digital_clock/directional/north, -/turf/open/floor/iron, -/area/security/brig) "hjU" = ( /turf/open/openspace, /area/science/mixing) +"hki" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/grass/no_border, +/area/hallway/primary/fore) +"hkG" = ( +/obj/effect/decal/cleanable/robot_debris/old{ + name = "Seamoth fragment"; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/plating/beach/water, +/area/asteroid/paradise/surface/water) "hkP" = ( /obj/effect/turf_decal/bot, /obj/machinery/portable_atmospherics/canister/plasma, @@ -15202,14 +14922,6 @@ }, /turf/open/floor/iron/dark, /area/storage/primary) -"hlB" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/hallway/primary/central) "hlL" = ( /obj/effect/turf_decal/stripes/box, /obj/machinery/vendor/mining, @@ -15227,32 +14939,16 @@ }, /turf/open/floor/iron, /area/maintenance/department/crew_quarters/dorms) -"hmU" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/folder/red, -/obj/item/restraints/handcuffs, -/obj/item/stack/cable_coil, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/item/storage/backpack/duffelbag/sec/surgery{ - pixel_y = 5 - }, -/obj/item/melee/baseball_bat{ - desc = "A staple of security force interrogations."; - icon_state = "baseball_bat_metal"; - name = "kneecapper" +"hns" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 }, -/obj/machinery/power/apc/auto_name/directional/south{ - pixel_y = -24 +/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/structure/cable/yellow, -/turf/open/floor/iron/dark, -/area/security/execution/education) +/turf/open/floor/iron/white, +/area/medical/apothecary) "hny" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -15260,13 +14956,6 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating/airless, /area/science/test_area) -"hnH" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/flora/rock/pile, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) "hnY" = ( /obj/structure/sign/departments/minsky/research/research, /turf/closed/wall/r_wall, @@ -15286,14 +14975,41 @@ }, /turf/open/floor/catwalk_floor/iron_dark, /area/engine/engineering) -"hoN" = ( -/obj/effect/turf_decal/stripes/line{ +"how" = ( +/turf/closed/indestructible/rock/snow, +/area/space) +"hoz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 8 }, -/obj/effect/spawner/lootdrop/glowstick/lit, -/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/crew_quarters/heads/hop) +"hoH" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/britcup{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/restraints/handcuffs{ + pixel_x = -2; + pixel_y = -2 + }, /turf/open/floor/iron, -/area/maintenance/department/engine/atmos) +/area/security/brig) "hoO" = ( /obj/structure/dresser, /obj/machinery/light_switch{ @@ -15301,9 +15017,11 @@ }, /turf/open/floor/wood, /area/crew_quarters/theatre/backstage) -"hpg" = ( +"hoX" = ( /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/dirt/jungle/wasteland, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/iron/techmaint/planetary, /area/asteroid/paradise/surface) "hph" = ( /obj/structure/bed{ @@ -15312,40 +15030,14 @@ /obj/item/bedsheet/ian, /turf/open/floor/prison/dark, /area/security/prison/shielded) +"hpi" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/turf/open/floor/iron/white, +/area/medical/apothecary) "hpp" = ( /obj/structure/chair/fancy/plastic, /turf/open/floor/plating/beach/sand, /area/asteroid/paradise/surface/sand) -"hpx" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/fore) -"hpA" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/vending/wardrobe/robo_wardrobe, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/science/robotics) -"hpE" = ( -/obj/effect/turf_decal/numbers/two_nine, -/turf/open/floor/iron, -/area/hallway/primary/aft) -"hpJ" = ( -/obj/effect/turf_decal/tile/purple/fourcorners/contrasted, -/obj/structure/railing, -/obj/effect/turf_decal/siding/white, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/science/lab) "hpP" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -15353,7 +15045,48 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/tech, /area/engine/atmos) -"hqu" = ( +"hpW" = ( +/obj/effect/turf_decal/box/white, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + external_pressure_bound = 120; + name = "server vent" + }, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"hqd" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/pen{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/reagent_containers/dropper{ + pixel_x = -3; + pixel_y = -4 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = 9; + pixel_y = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/item/clothing/glasses/science{ + pixel_x = -4 + }, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron, +/area/science/lab) +"hqu" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/bot, @@ -15417,10 +15150,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"hsh" = ( -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/iron, -/area/hallway/primary/fore) "hsv" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -15443,17 +15172,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"hsG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/iron/grid/steel, -/area/medical/patients_rooms) "hsN" = ( /obj/structure/railing, /turf/open/openspace, @@ -15483,6 +15201,30 @@ }, /turf/open/floor/iron/dark, /area/bridge/meeting_room) +"htj" = ( +/obj/item/book/granter/spell/smoke/lesser{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/bottle/holywater{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/item/soulstone/anybody/chaplain{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/table/wood, +/obj/structure/sign/painting/library{ + pixel_x = 33; + pixel_y = -1 + }, +/obj/item/organ/heart{ + pixel_x = -5; + pixel_y = -1 + }, +/turf/open/floor/wood, +/area/chapel/office) "htm" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -15496,53 +15238,37 @@ /turf/open/floor/plating/asteroid/basalt/planetary, /area/asteroid/paradise) "htu" = ( -/obj/structure/table/wood, -/obj/machinery/light, -/obj/item/storage/fancy/candle_box{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/fancy/candle_box{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/pen/fountain/captain{ - pixel_x = 1; - pixel_y = 1 - }, -/obj/item/food/grown/flower/harebell{ - pixel_x = -12; - pixel_y = 5 - }, -/obj/item/food/grown/flower/harebell{ - pixel_x = 14; - pixel_y = 5 - }, -/obj/machinery/power/apc/auto_name/directional/south{ - pixel_y = -24 +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" }, -/obj/structure/cable/yellow, -/turf/open/floor/carpet/green, -/area/chapel/main) -"htC" = ( -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = 31; - pixel_y = -2 +/obj/structure/cable/yellow{ + icon_state = "1-4" }, /obj/structure/cable/yellow{ - icon_state = "2-8" + icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 2 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/ai_slipper{ + uses = 10 }, -/obj/structure/disposalpipe/junction, /turf/open/floor/iron, -/area/quartermaster/sorting) +/area/security/brig) +"htB" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Chemistry Lab"; + req_access_txt = "33" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/white, +/area/medical/apothecary) "htV" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/door/airlock/maintenance_hatch{ @@ -15552,18 +15278,21 @@ /obj/effect/mapping_helpers/airlock/abandoned, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) -"huR" = ( -/obj/structure/lattice, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/openspace, -/area/hallway/primary/central) "hvb" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, /area/maintenance/department/bridge) +"hvh" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 10 + }, +/obj/machinery/light{ + light_color = "#7AC3FF" + }, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/glass/reinforced, +/area/medical/medbay/central) "hvu" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -15579,22 +15308,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/bar) -"hvJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/disposalpipe/multiz/down{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/mech_bay_recharge_floor, -/area/science/robotics) "hvK" = ( /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 8 @@ -15625,6 +15338,16 @@ slowdown = 0 }, /area/asteroid/paradise/surface) +"hwE" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/iron/dark, +/area/security/detectives_office) "hwY" = ( /turf/closed/wall/rust, /area/maintenance/department/science/xenobiology) @@ -15659,21 +15382,15 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/techmaint/planetary, /area/asteroid/paradise/surface) -"hyo" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/simple_pipes/general/visible, -/turf/open/floor/iron/grid/steel, -/area/medical/medbay/central) -"hyx" = ( -/obj/structure/lattice/catwalk/over, -/obj/structure/railing/corner{ +"hyu" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/structure/disposalpipe/sorting/mail/destination/library{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 9 +/turf/open/floor/iron/white/side{ + dir = 8 }, -/turf/open/openspace, -/area/engineering/hallway) +/area/science/research) "hyz" = ( /obj/structure/table, /obj/structure/window/reinforced{ @@ -15704,13 +15421,6 @@ }, /turf/open/floor/iron/dark, /area/science/server) -"hyP" = ( -/obj/structure/fence/corner{ - dir = 8 - }, -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) "hyQ" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -15720,13 +15430,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"hyR" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/asteroid/paradise/surface) "hyZ" = ( /obj/structure/railing{ dir = 1 @@ -15758,21 +15461,47 @@ "hzQ" = ( /turf/open/floor/plating, /area/maintenance/department/engine) -"hzX" = ( -/obj/effect/turf_decal/siding/wideplating/terracotta{ - dir = 8 - }, -/obj/structure/no_effect_signpost{ - name = "Echo station"; - pixel_x = -4; - pixel_y = 3 - }, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) "hAp" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/engine/engineering) +"hAt" = ( +/obj/structure/table/reinforced, +/obj/item/circuitboard/machine/public_nanite_chamber, +/obj/item/circuitboard/machine/public_nanite_chamber{ + pixel_x = 2; + pixel_y = 1 + }, +/obj/item/circuitboard/machine/public_nanite_chamber{ + pixel_y = 4 + }, +/obj/item/circuitboard/machine/public_nanite_chamber{ + pixel_x = -2; + pixel_y = 7 + }, +/obj/machinery/newscaster{ + pixel_x = 31; + pixel_y = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/disposalpipe/multiz{ + dir = 8 + }, +/turf/open/floor/iron, +/area/science/research) +"hAx" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/hallway/primary/aft) "hAB" = ( /obj/structure/altar_of_gods, /obj/item/flashlight/lantern{ @@ -15786,41 +15515,34 @@ }, /turf/open/floor/wood, /area/chapel/main) -"hAC" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/obj/machinery/computer/security, -/obj/machinery/digital_clock/directional/north, -/turf/open/floor/iron, -/area/bridge) -"hAS" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"hAU" = ( -/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ - alpha = 180 +"hAH" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" }, /obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/iron/dark/side{ - dir = 8 + icon_state = "4-8" }, -/area/hallway/primary/fore) -"hAV" = ( -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, +/obj/structure/disposalpipe/sorting/mail/destination/security/flip{ + dir = 4 + }, /turf/open/floor/iron, -/area/hallway/primary/central) +/area/security/brig) +"hAS" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"hAW" = ( +/obj/structure/barricade/wooden/crude, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/library/abandoned) "hAX" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 25 @@ -15831,6 +15553,10 @@ }, /turf/open/floor/iron/tech, /area/engine/atmos) +"hBb" = ( +/obj/machinery/smartfridge/organ, +/turf/open/floor/iron/dark, +/area/medical/morgue) "hBg" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 @@ -15882,42 +15608,55 @@ /obj/structure/closet/emcloset/anchored, /turf/open/floor/plating, /area/maintenance/department/cargo) -"hCs" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/maintenance/department/engine) "hCx" = ( /obj/structure/flora/rock/pile, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4, /turf/open/floor/plating/asteroid/basalt/planetary, /area/asteroid/paradise) -"hCL" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +"hCI" = ( +/obj/structure/sign/poster/official/random{ + pixel_x = -2; + pixel_y = 32 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +/obj/structure/frame/computer{ + anchored = 1 }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ +/obj/structure/light_construct{ dir = 1 }, -/turf/open/floor/iron, -/area/hallway/primary/aft) +/turf/open/floor/wood, +/area/library/abandoned) "hDF" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /turf/open/floor/plating, /area/quartermaster/storage) +"hDU" = ( +/obj/structure/closet/secure_closet/detective, +/obj/item/storage/box/evidence{ + pixel_y = 5 + }, +/obj/item/flashlight/seclite, +/obj/item/restraints/handcuffs, +/obj/item/taperecorder, +/obj/machinery/requests_console{ + department = "Detective's office"; + name = "Detective RC"; + pixel_y = 30 + }, +/obj/item/camera/detective, +/obj/machinery/computer/security/telescreen{ + dir = 8; + name = "Station Monitor"; + network = list("ss13"); + pixel_x = 24 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","security") + }, +/obj/item/holosign_creator/security, +/turf/open/floor/wood, +/area/security/detectives_office) "hDY" = ( /obj/effect/turf_decal/tile/purple/fourcorners/contrasted, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -15935,57 +15674,25 @@ }, /turf/open/floor/iron/white, /area/science/research) -"hEA" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/folder/red{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/taperecorder{ - pixel_x = 7; - pixel_y = 4 - }, -/obj/item/pen{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/flashlight/lamp{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1423; - listening = 0; - name = "Interrogation Intercom"; - pixel_x = 3; - pixel_y = -34 - }, -/turf/open/floor/iron, -/area/security/brig) -"hED" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - alpha = 180 +"hEE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/structure/cable/yellow{ - icon_state = "1-4" +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 1; + initialize_directions = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/firealarm/directional/east, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/foyer) +"hFb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "qm_warehouse"; + name = "warehouse Shutters" }, -/turf/open/floor/iron/dark, -/area/security/warden) +/turf/open/floor/iron/sepia, +/area/quartermaster/warehouse) "hFP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/yellow{ @@ -15997,12 +15704,13 @@ }, /turf/open/floor/plating, /area/hallway/secondary/service) -"hFQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 +"hFX" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 }, -/turf/open/floor/iron, -/area/maintenance/department/engine) +/turf/open/floor/iron/dark, +/area/hallway/primary/central) "hGq" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/spawner/lootdrop/glowstick/lit, @@ -16012,6 +15720,16 @@ }, /turf/open/floor/pod/dark, /area/maintenance/department/eva) +"hGx" = ( +/obj/structure/lattice/catwalk/over, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/hallway/primary/central) "hGZ" = ( /obj/machinery/air_sensor{ pixel_x = -32; @@ -16029,6 +15747,18 @@ }, /turf/open/floor/engine/vacuum, /area/maintenance/disposal/incinerator) +"hHo" = ( +/obj/structure/disposalpipe/multiz/down{ + dir = 8 + }, +/turf/open/openspace, +/area/hallway/primary/central) +"hHp" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) "hHO" = ( /obj/structure/railing{ dir = 1 @@ -16068,37 +15798,35 @@ name = "mainframe floor" }, /area/tcommsat/server) -"hIr" = ( -/obj/machinery/modular_computer/console/preset/engineering, -/obj/effect/turf_decal/tile/purple/half/contrasted{ +"hIV" = ( +/obj/structure/railing{ dir = 4 }, -/obj/structure/window/reinforced{ +/obj/effect/turf_decal/siding/dark{ dir = 4 }, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/iron, -/area/bridge) +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) "hIX" = ( /obj/machinery/light{ dir = 8 }, /turf/open/indestructible/sound/pool, /area/crew_quarters/fitness/recreation) -"hJl" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/mineral/titanium, -/area/asteroid/paradise/surface) "hJA" = ( /obj/structure/window/reinforced, /turf/open/floor/engine, /area/science/xenobiology) -"hJD" = ( -/obj/machinery/ai_slipper{ - uses = 10 +"hJJ" = ( +/obj/effect/turf_decal/sand/plating, +/obj/item/chair/plastic, +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/turf/open/floor/iron/grid/steel, -/area/medical/patients_rooms) +/turf/open/floor/iron/techmaint/planetary, +/area/asteroid/paradise/surface) "hJN" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/ywflowers, @@ -16143,28 +15871,20 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) -"hKp" = ( -/obj/effect/turf_decal/tile/purple/anticorner/contrasted, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"hKX" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/iron/dark, -/area/security/detectives_office) "hLc" = ( /obj/structure/table, /obj/effect/spawner/lootdrop/maintenance/two, /obj/item/paicard, /turf/open/floor/plating, /area/maintenance/department/chapel) +"hLl" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/iron, +/area/hallway/primary/aft) "hLr" = ( /obj/structure/table/wood, /obj/item/folder/yellow{ @@ -16183,64 +15903,6 @@ }, /turf/open/floor/iron/dark, /area/bridge/meeting_room) -"hLx" = ( -/obj/machinery/shower{ - name = "emergency shower"; - pixel_y = 12 - }, -/obj/effect/turf_decal/stripes/end, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/noslip/standard, -/area/science/lab) -"hLy" = ( -/obj/effect/turf_decal/tile/blue/half{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/iron/white, -/area/medical/medbay/central) -"hLF" = ( -/obj/effect/turf_decal/tile/purple/fourcorners/contrasted, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/science/research) -"hLT" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/sorting/mail/destination/security/flip{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/brig) "hMe" = ( /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/iron, @@ -16263,6 +15925,23 @@ }, /turf/open/floor/engine, /area/ai_monitored/turret_protected/ai) +"hMs" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + alpha = 180; + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/structure/sign/map/echo{ + pixel_y = -32 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central) "hMu" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -16273,19 +15952,6 @@ }, /turf/open/floor/iron, /area/maintenance/department/crew_quarters/dorms) -"hMy" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/evac/evac_big{ - dir = 1 - }, -/turf/open/floor/iron, -/area/maintenance/department/science/xenobiology) "hMH" = ( /obj/machinery/button/door{ id = "Cabin1"; @@ -16296,40 +15962,18 @@ }, /turf/open/floor/carpet/orange, /area/crew_quarters/dorms) -"hMI" = ( -/obj/machinery/door/airlock/shuttle, -/turf/open/floor/mineral/titanium, -/area/asteroid/paradise/surface) -"hML" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 1 +"hMP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 }, -/obj/effect/turf_decal/siding/dark, -/obj/machinery/ai_slipper{ - uses = 10 +/obj/machinery/atmospherics/components/binary/pump/layer2{ + dir = 8; + name = "External Gas to Loop" }, +/obj/effect/turf_decal/delivery, +/obj/machinery/light_switch/directional/west, /turf/open/floor/iron/dark, -/area/hallway/primary/central) -"hMW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/machinery/firealarm/directional/north, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","medbay") - }, -/obj/machinery/vending/cigarette, -/turf/open/floor/iron, -/area/medical/surgery) +/area/engine/engineering) "hNH" = ( /obj/effect/turf_decal/sand/plating, /obj/structure/flora/rock/pile, @@ -16352,15 +15996,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/iron/dark, /area/science/server) -"hOi" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/heads/hop) "hPk" = ( /obj/effect/turf_decal/sand/plating, /obj/structure/flora/ausbushes/sparsegrass, @@ -16379,15 +16014,6 @@ /obj/effect/mapping_helpers/airlock/abandoned, /turf/open/floor/plating, /area/maintenance/department/chapel) -"hPN" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/iron/dark/side{ - dir = 9 - }, -/area/hallway/primary/central) "hQk" = ( /turf/open/floor/plating/rust, /area/science/mixing) @@ -16398,6 +16024,14 @@ }, /turf/open/floor/iron/sepia, /area/quartermaster/storage) +"hRA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor{ + id = "AIwindows"; + name = "AI View Blast Door" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) "hRI" = ( /obj/structure/ladder, /obj/structure/railing{ @@ -16421,24 +16055,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/bridge) -"hRU" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible/layer5{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/engine/engineering) "hSk" = ( /obj/structure/railing{ dir = 1 @@ -16455,12 +16071,6 @@ }, /turf/open/floor/wood, /area/crew_quarters/cafeteria) -"hSz" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible/layer2{ - dir = 9 - }, -/turf/closed/wall, -/area/engine/supermatter) "hSD" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -16485,10 +16095,37 @@ /obj/item/book/manual/wiki/sopscience, /turf/open/floor/iron, /area/science/lab) +"hSL" = ( +/obj/effect/spawner/lootdrop/glowstick/lit, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) "hSS" = ( /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating/rust, /area/science/mixing) +"hST" = ( +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for secure storage."; + id = "engsm"; + name = "Radiation shutters Toggle"; + pixel_y = 26; + req_access_txt = "11" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/caution{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) "hSX" = ( /obj/structure/table/reinforced, /obj/machinery/door/poddoor/shutters{ @@ -16504,22 +16141,22 @@ }, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise) -"hTq" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 8 - }, -/obj/effect/turf_decal/siding/dark{ +"hTi" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/effect/turf_decal/trimline/dark/warning{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 8 }, -/obj/item/radio/intercom{ - pixel_x = 32; - pixel_y = -2 +/obj/machinery/power/apc/auto_name/directional/south{ + pixel_y = -24 }, -/turf/open/floor/iron/dark, -/area/engineering/hallway) +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/iron, +/area/maintenance/department/chapel) "hTE" = ( /obj/machinery/telecomms/message_server/preset, /obj/effect/turf_decal/stripes/closeup, @@ -16532,21 +16169,6 @@ /obj/item/paicard, /turf/open/floor/iron, /area/maintenance/department/science/central) -"hTN" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 8 - }, -/obj/effect/turf_decal/siding/dark{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark/warning{ - dir = 8 - }, -/obj/machinery/camera/autoname/directional/east{ - network = list("ss13","engine","public") - }, -/turf/open/floor/iron/dark, -/area/engineering/hallway) "hUc" = ( /obj/machinery/computer/card/minor/cmo{ dir = 8 @@ -16565,6 +16187,16 @@ }, /turf/open/floor/plating, /area/medical/surgery) +"hUi" = ( +/obj/effect/turf_decal/evac, +/turf/open/floor/iron, +/area/hallway/primary/central) +"hUj" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 6 + }, +/turf/open/floor/glass/reinforced, +/area/medical/medbay/central) "hUk" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -16578,6 +16210,17 @@ /obj/structure/grille/broken, /turf/open/floor/iron, /area/ai_monitored/turret_protected/aisat/maint) +"hUu" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/carpet/green, +/area/library/abandoned) "hUO" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 @@ -16600,12 +16243,6 @@ }, /turf/open/floor/plating/rust, /area/science/test_area) -"hVn" = ( -/obj/machinery/firealarm/directional/south, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/tech, -/area/engine/engineering) "hVs" = ( /obj/effect/spawner/room/fivexthree, /turf/open/floor/plating, @@ -16616,21 +16253,45 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/carpet/blue, /area/crew_quarters/cafeteria) -"hVU" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/asteroid/paradise/surface) +"hVG" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/evac, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/hallway/primary/central) +"hWD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/holohoop{ + dir = 4 + }, +/turf/open/floor/prison/dark, +/area/security/prison) +"hWI" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/door/airlock/public/glass, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/iron/techmaint/planetary, +/area/hallway/primary/fore) "hWZ" = ( /obj/machinery/light/small{ dir = 1 }, /turf/open/floor/plating/airless, /area/science/mixing) -"hYe" = ( -/obj/effect/turf_decal/siding/yellow, -/obj/effect/turf_decal/trimline/yellow/warning, -/turf/open/floor/iron/dark, -/area/engineering/hallway) "hYk" = ( /obj/effect/turf_decal/pool{ dir = 8 @@ -16641,14 +16302,6 @@ }, /turf/open/floor/noslip/white, /area/crew_quarters/fitness/recreation) -"hYl" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/department/chapel) "hYp" = ( /obj/effect/landmark/start/assistant, /turf/open/floor/plating/asteroid/planetary, @@ -16720,6 +16373,34 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/department/science/central) +"hZM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/power/port_gen/pacman, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/green/visible/layer2{ + dir = 8 + }, +/obj/structure/cable/yellow, +/obj/item/stack/sheet/mineral/plasma/ten, +/obj/item/wrench{ + pixel_x = -4; + pixel_y = 5 + }, +/turf/open/floor/iron/dark, +/area/engine/engineering) +"iad" = ( +/obj/machinery/power/solar{ + id = "portsolar"; + name = "Port Solar Array" + }, +/turf/open/floor/iron/solarpanel, +/area/asteroid/paradise/surface) +"ial" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/dirt/planetary, +/area/asteroid/paradise/surface) "iao" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -16734,9 +16415,20 @@ /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/iron, /area/maintenance/department/science/central) +"iaH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron, +/area/hallway/primary/fore) "iaR" = ( /turf/closed/wall, /area/crew_quarters/fitness/recreation) +"iaU" = ( +/obj/structure/railing, +/turf/open/openspace, +/area/hallway/primary/central) "ibc" = ( /obj/effect/turf_decal/delivery, /obj/structure/cable/yellow{ @@ -16780,32 +16472,15 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/rust, /area/science/mixing) -"icJ" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/turf_decal/bot, -/obj/structure/sign/departments/minsky/supply/hydroponics{ - pixel_x = 32 - }, -/turf/open/floor/iron, -/area/maintenance/department/medical/morgue) -"icQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 +"ich" = ( +/turf/open/floor/glass/reinforced, +/area/hallway/primary/fore) +"icv" = ( +/obj/structure/railing/corner{ + dir = 4 }, -/turf/open/floor/iron, -/area/quartermaster/sorting) +/turf/open/openspace, +/area/hallway/primary/fore) "idf" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/spawner/lootdrop/grille_or_trash, @@ -16835,6 +16510,20 @@ }, /turf/open/floor/iron, /area/medical/medbay/central) +"idU" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/spawner/structure/window/reinforced/prison, +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" + }, +/turf/open/floor/plating, +/area/security/prison) "iej" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/bot, @@ -16850,29 +16539,48 @@ }, /turf/open/floor/iron/dark, /area/medical/medbay/central) -"iev" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" +"iek" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron, +/area/asteroid/paradise) +"iem" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ + dir = 8 }, -/obj/structure/cable/yellow{ - icon_state = "1-4" +/obj/item/radio/intercom{ + pixel_x = 32; + pixel_y = -2 }, -/obj/structure/disposalpipe/segment{ - dir = 2 +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/hallway/primary/aft) +"ies" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/simple_pipes/general/visible, +/turf/open/floor/iron/grid/steel, +/area/medical/medbay/central) +"ieB" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light{ + dir = 1 }, -/obj/machinery/door/airlock/command{ - name = "Chief Medical Officer's Office"; - req_access_txt = "40" +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","cargo") }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/turf/open/floor/plating/asteroid/basalt/planetary, +/area/quartermaster/storage) +"ifj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/machinery/door/poddoor/preopen{ + id = "brigentrance"; + name = "Brig Blast Door" }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/iron/white, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plating, +/area/security/warden) "ifm" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -16891,9 +16599,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, /area/engine/engineering) -"ifA" = ( -/turf/open/openspace, -/area/engineering/hallway) "ifB" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -16915,6 +16620,12 @@ }, /turf/open/floor/iron, /area/maintenance/department/science/central) +"ifH" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/central) "ifQ" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 6 @@ -16957,23 +16668,16 @@ }, /turf/open/floor/iron/dark, /area/engine/atmos) -"igz" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/modular_computer/console/preset/curator, -/obj/structure/light_construct{ - dir = 1 - }, -/turf/open/floor/carpet/royalblack, -/area/library/abandoned) -"igM" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 +"iha" = ( +/obj/structure/ladder, +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/obj/machinery/ai_slipper{ - uses = 10 +/obj/structure/disposalpipe/segment{ + dir = 1 }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/heads/hop) +/turf/open/floor/pod/dark, +/area/quartermaster/qm) "ihA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/bot, @@ -16988,24 +16692,19 @@ }, /turf/open/floor/iron, /area/engine/engineering) -"ihK" = ( -/obj/structure/disposalpipe/multiz/down{ - dir = 8 +"ihC" = ( +/turf/open/floor/iron, +/area/asteroid/paradise) +"ihG" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/openspace, -/area/hallway/primary/central) +/turf/open/floor/catwalk_floor/iron_dark, +/area/asteroid/paradise/surface) "ihL" = ( /turf/closed/wall/r_wall/rust, /area/maintenance/disposal/incinerator) -"ihR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/hallway/primary/fore) "iil" = ( /obj/effect/turf_decal/tile/yellow/opposingcorners{ dir = 8 @@ -17022,13 +16721,18 @@ }, /turf/open/floor/iron/dark, /area/storage/primary) -"iiz" = ( -/obj/item/kirbyplants/random, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 +"iiv" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 }, /turf/open/floor/iron/dark/side{ - dir = 10 + dir = 1 }, /area/hallway/primary/central) "iiY" = ( @@ -17038,10 +16742,6 @@ /obj/structure/table_frame, /turf/open/floor/iron, /area/engine/atmos) -"iiZ" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/dirt/planetary, -/area/asteroid/paradise/surface) "ijh" = ( /obj/effect/turf_decal/tile/blue/half{ dir = 8 @@ -17057,12 +16757,15 @@ }, /turf/open/floor/iron/white, /area/medical/medbay/central) -"ijj" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/bot, -/obj/machinery/digital_clock/directional/south, +"ijF" = ( +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, /turf/open/floor/wood, -/area/crew_quarters/heads/hop) +/area/crew_quarters/theatre/backstage) "ijM" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /obj/structure/disposalpipe/segment{ @@ -17081,6 +16784,20 @@ }, /turf/open/floor/carpet/blue, /area/crew_quarters/cafeteria) +"ijV" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_y = -33 + }, +/obj/machinery/light, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron/dark, +/area/engine/engineering) "ikr" = ( /obj/structure/railing{ dir = 1 @@ -17105,20 +16822,52 @@ }, /turf/open/floor/wood, /area/crew_quarters/heads/captain) -"ikL" = ( -/obj/structure/chair/fancy/comfy{ - color = "#596479" +"ikz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 1 +/turf/open/floor/plating/beach/sand, +/area/asteroid/paradise/surface) +"ikE" = ( +/obj/structure/railing, +/obj/effect/turf_decal/tile/blue/half{ + dir = 4 }, -/obj/effect/landmark/start/captain, +/obj/effect/turf_decal/siding/white, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/structure/disposalpipe/sorting/mail/destination/genetics{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/medical/medbay/central) +"ili" = ( +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/sand/plating, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron/techmaint/planetary, +/area/asteroid/paradise/surface) +"ill" = ( /obj/machinery/light{ + dir = 1; + light_color = "#7AC3FF" + }, +/obj/effect/turf_decal/stripes/corner{ dir = 1 }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/carpet/blue, -/area/bridge/meeting_room) +/obj/item/kirbyplants/random, +/turf/open/floor/iron/grid/steel, +/area/medical/patients_rooms) "ilG" = ( /turf/closed/wall, /area/science/lab) @@ -17145,6 +16894,23 @@ "img" = ( /turf/open/floor/plating, /area/maintenance/department/cargo) +"imH" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/iron, +/area/hallway/primary/aft) "imO" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -17176,21 +16942,6 @@ /obj/structure/lattice/catwalk/over, /turf/open/openspace, /area/maintenance/department/security/brig) -"inX" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/power/apc/auto_name/directional/east{ - pixel_x = 24 - }, -/obj/structure/cable/yellow, -/turf/open/floor/iron/tech, -/area/science/mixing/chamber) "inZ" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 @@ -17204,35 +16955,12 @@ }, /turf/open/floor/carpet/royalblue, /area/crew_quarters/heads/captain) -"ioD" = ( -/obj/structure/safe, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c500, -/obj/item/stack/spacecash/c500, -/obj/item/ammo_box/a357, -/obj/item/gun/ballistic/automatic/pistol/deagle, -/obj/item/gun/ballistic/revolver/russian, -/obj/structure/sign/warning/securearea{ - pixel_y = -32 - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/security/nuke_storage) "ioR" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/engine/light, /area/holodeck/small) -"ipb" = ( -/obj/structure/lattice, -/turf/open/openspace, -/area/hallway/primary/fore) "ipu" = ( /obj/machinery/microwave{ desc = "Cooks and boils stuff, somehow."; @@ -17257,25 +16985,41 @@ }, /turf/open/openspace, /area/security/brig) -"iqL" = ( -/obj/structure/railing{ +"ipF" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ dir = 8 }, -/turf/open/floor/glass/reinforced, -/area/crew_quarters/heads/cmo) -"irl" = ( -/obj/structure/railing{ +/area/hallway/primary/aft) +"ipT" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/iron/tech, +/area/engine/engineering) +"iqr" = ( +/obj/effect/turf_decal/siding/dark/end{ dir = 8 }, -/turf/open/floor/glass/reinforced, -/area/hallway/primary/fore) -"irp" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 10 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/turf/open/floor/iron/dark, +/turf/open/floor/glass/reinforced, /area/hallway/primary/fore) +"iry" = ( +/obj/item/radio/intercom{ + pixel_y = 28 + }, +/obj/structure/table/wood, +/obj/item/kirbyplants/random, +/turf/open/floor/plating, +/area/library/abandoned) "isa" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -17292,28 +17036,14 @@ }, /turf/open/openspace, /area/maintenance/department/science/central) -"isl" = ( -/obj/structure/railing, -/turf/open/openspace, -/area/hallway/primary/central) -"isM" = ( -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = -32; - pixel_y = -33; - receive_ore_updates = 1 +"isB" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/monkey_recycler, -/obj/machinery/camera/autoname/directional/west{ - c_tag = "Xenobiology Lab"; - name = "Xeno camera"; - network = list("ss13","rd","xeno") +/turf/open/floor/iron/dark/side{ + dir = 4 }, -/turf/open/floor/iron/grid/steel, -/area/science/xenobiology) +/area/hallway/primary/central) "isW" = ( /obj/machinery/atmospherics/pipe/multiz/layer4{ dir = 1 @@ -17351,12 +17081,6 @@ "itn" = ( /turf/open/indestructible/sound/pool/end, /area/crew_quarters/fitness/recreation) -"ito" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/maintenance/department/science/xenobiology) "itG" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/turf_decal/bot, @@ -17394,15 +17118,6 @@ }, /turf/open/floor/iron/white, /area/medical/medbay/central) -"iuO" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/siding/dark{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/aft) "iuX" = ( /obj/effect/turf_decal/siding/white{ alpha = 100; @@ -17452,9 +17167,39 @@ }, /turf/open/floor/carpet/red, /area/crew_quarters/heads/hos) +"iwF" = ( +/obj/machinery/light{ + light_color = "#7AC3FF" + }, +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/iron/grid/steel, +/area/medical/patients_rooms) "iwI" = ( /turf/open/floor/plating, /area/maintenance/department/engine/atmos) +"iwL" = ( +/obj/item/target/alien/anchored, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/camera/preset/toxins{ + dir = 4 + }, +/turf/open/floor/plating/rust, +/area/science/test_area) "iwM" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -17487,22 +17232,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/dock/drydock, /area/quartermaster/storage) -"ixC" = ( -/obj/structure/window/plasma/reinforced{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/rad_collector/anchored, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/supermatter) "iya" = ( /obj/effect/turf_decal/sand/plating, /turf/closed/mineral/random/air, @@ -17525,16 +17254,19 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) -"iyn" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +"iyC" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/hydroponics, +/turf/open/floor/iron, +/area/maintenance/department/medical/morgue) +"iyL" = ( +/obj/item/kirbyplants/random, +/obj/machinery/status_display/evac{ + pixel_y = 32 }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/hallway/primary/central) +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/maintenance/department/medical/morgue) "iyS" = ( /turf/closed/wall, /area/medical/exam_room) @@ -17543,27 +17275,27 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise) -"izl" = ( -/obj/item/kirbyplants/random, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark/side{ - dir = 10 +"iAz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/area/hallway/primary/central) -"izI" = ( -/obj/machinery/computer/cloning, -/obj/effect/turf_decal/bot, -/obj/machinery/light{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 1 }, -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 +/obj/structure/disposalpipe/segment{ + dir = 1 }, -/obj/structure/cable/yellow{ - icon_state = "0-2" +/obj/structure/railing/corner{ + dir = 4 }, -/turf/open/floor/iron, -/area/medical/genetics/cloning) +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/bridge) "iAE" = ( /obj/structure/cable{ icon_state = "1-2" @@ -17588,6 +17320,37 @@ }, /turf/open/floor/iron, /area/bridge) +"iBh" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) +"iBz" = ( +/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ + alpha = 180 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/flasher{ + id = "hopflash"; + pixel_y = -26 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/fore) "iBH" = ( /obj/structure/grille/broken, /turf/open/floor/plating, @@ -17599,37 +17362,14 @@ /obj/effect/turf_decal/numbers/two_nine, /turf/open/floor/iron, /area/maintenance/department/crew_quarters/dorms) -"iBU" = ( -/obj/item/kirbyplants/random, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/dark/side{ - dir = 6 - }, -/area/hallway/primary/central) +"iBT" = ( +/obj/machinery/camera/autoname/directional/north, +/turf/open/openspace, +/area/crew_quarters/kitchen) "iCD" = ( /obj/structure/frame/machine, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/dorms) -"iDc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/electronics/apc{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/structure/sign/warning/explosives{ - pixel_y = -32 - }, -/turf/open/floor/iron/sepia, -/area/quartermaster/warehouse) -"iDI" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/four, -/turf/open/floor/plating/asteroid/basalt/planetary, -/area/asteroid/paradise) "iEa" = ( /obj/structure/cable/yellow{ icon_state = "1-8" @@ -17685,13 +17425,6 @@ name = "mainframe floor" }, /area/tcommsat/computer) -"iEJ" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Access" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/hallway/primary/aft) "iEP" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -17720,18 +17453,62 @@ /obj/structure/cable/yellow, /turf/open/floor/plating, /area/crew_quarters/heads/hor) -"iFN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 +"iFw" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard{ + pixel_x = -5; + pixel_y = 3 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 +/obj/item/paper/monitorkey{ + pixel_x = -5; + pixel_y = 3 }, -/obj/structure/railing{ - dir = 4 +/obj/item/folder/yellow, +/obj/item/toy/figure/ce{ + pixel_x = 8; + pixel_y = 4 }, -/turf/open/floor/iron/dark, -/area/hallway/primary/aft) +/obj/item/stamp/chief_engineer{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 5 + }, +/obj/machinery/camera/autoname/directional/east{ + network = list("ss13","engine") + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Engineer's Desk"; + departmentType = 4; + name = "Chief Engineer RC"; + pixel_x = 32; + pixel_y = 31 + }, +/obj/machinery/power/apc/auto_name/directional/east{ + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/mob/living/simple_animal/parrot/Poly, +/turf/open/floor/carpet/royalblue, +/area/crew_quarters/heads/chief) +"iFx" = ( +/obj/machinery/computer/cloning, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/iron, +/area/medical/genetics/cloning) "iGq" = ( /turf/closed/wall/rust, /area/quartermaster/warehouse) @@ -17744,13 +17521,15 @@ dir = 4 }, /area/bridge) -"iGt" = ( -/obj/structure/fence/corner{ +"iGw" = ( +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) +/obj/structure/chair/fancy/plastic{ + dir = 8 + }, +/turf/open/floor/iron, +/area/maintenance/department/chapel) "iGU" = ( /obj/effect/turf_decal/bot{ dir = 1 @@ -17771,40 +17550,23 @@ dir = 8 }, /area/science/lab) -"iHo" = ( -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/obj/structure/cable, -/turf/open/floor/iron/solarpanel, -/area/asteroid/paradise/surface) -"iId" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/machinery/door/poddoor/preopen{ - id = "brigfrontdoor"; - name = "Front Security Blast Door" - }, -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +"iHS" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +/obj/machinery/firealarm/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/hallway/primary/aft) +"iHW" = ( +/obj/machinery/firealarm/directional/west{ + pixel_x = 27 }, -/turf/open/floor/iron, -/area/security/brig) +/obj/machinery/bookbinder, +/turf/open/floor/carpet/royalblack, +/area/library/abandoned) "iIl" = ( /obj/machinery/vending/hydroseeds, /obj/effect/turf_decal/stripes/line, @@ -17814,15 +17576,17 @@ /obj/machinery/light, /turf/open/floor/iron/grid/steel, /area/hydroponics) -"iIy" = ( -/obj/structure/railing/corner{ - dir = 1 +"iIC" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/iron, -/area/hallway/primary/fore) +/obj/effect/spawner/structure/window/reinforced/prison, +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" + }, +/turf/open/floor/plating, +/area/security/prison) "iIO" = ( /obj/effect/turf_decal/trimline/blue/filled/warning, /turf/open/floor/iron/grid/steel, @@ -17905,14 +17669,6 @@ }, /turf/open/floor/plating/grass, /area/asteroid/paradise/surface) -"iKw" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/department/engine/atmos) "iKC" = ( /obj/effect/spawner/room/threexthree, /turf/open/floor/plating, @@ -17926,6 +17682,20 @@ slowdown = 0 }, /area/asteroid/paradise/surface) +"iKU" = ( +/obj/machinery/door/airlock/medical{ + name = "Surgery Theatre"; + req_access_txt = "45" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/mapping_helpers/airlock/unres, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/iron, +/area/medical/surgery) "iKX" = ( /obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ alpha = 180; @@ -17950,10 +17720,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"iKY" = ( -/obj/machinery/status_display/evac, -/turf/closed/wall, -/area/hallway/primary/fore) "iLy" = ( /obj/effect/turf_decal/siding/white{ alpha = 100; @@ -17969,10 +17735,10 @@ /obj/effect/turf_decal/stripes/corner, /turf/open/floor/iron, /area/science/research) -"iMz" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) +"iMt" = ( +/obj/structure/stairs, +/turf/open/floor/pod/dark, +/area/hallway/primary/aft) "iMI" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 5 @@ -17984,17 +17750,43 @@ }, /turf/open/floor/carpet/orange, /area/quartermaster/qm) -"iMK" = ( -/obj/machinery/door/poddoor/incinerator_toxmix{ - id = "EmergancyescapeShutter"; - name = "Emergancy Escape Shutters" +"iMQ" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/mineral/ore_redemption{ + input_dir = 2 }, -/turf/open/floor/plating, -/area/science/mixing/chamber) +/obj/item/food/donkpocket/pizza{ + pixel_x = 10; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = 4; + pixel_y = 12 + }, +/turf/open/floor/iron/dark, +/area/quartermaster/storage) "iNk" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/airless, /area/science/mixing) +"iNv" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/multiz/down{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/medical/medbay/central) "iNC" = ( /obj/machinery/door/airlock{ name = "Custodial Closet"; @@ -18032,28 +17824,16 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/storage) -"iPs" = ( -/obj/effect/turf_decal/siding/dark, -/obj/effect/turf_decal/siding/dark{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/dark/warning{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/engineering/hallway) +"iPj" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/tech, +/area/engine/engineering) "iPK" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise) -"iPP" = ( -/obj/structure/sign/directions/engineering{ - pixel_y = 10 - }, -/turf/closed/wall, -/area/hallway/primary/aft) "iQa" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 1 @@ -18072,11 +17852,15 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, /area/maintenance/department/chapel) -"iQq" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/evac, -/turf/open/floor/iron, -/area/hallway/primary/central) +"iQr" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Foyer"; + req_one_access_txt = "32" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/tech, +/area/engine/engineering) "iRc" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -18091,16 +17875,35 @@ }, /turf/open/floor/plating/asteroid/planetary, /area/quartermaster/storage) +"iRh" = ( +/obj/effect/turf_decal/bot, +/obj/item/pushbroom, +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/structure/closet/secure_closet/brig{ + name = "Storage Locker"; + req_one_access_txt = "1;4" + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","security") + }, +/turf/open/floor/iron/dark, +/area/security/brig) "iRv" = ( /obj/structure/closet/emcloset/anchored, /turf/open/floor/plating, /area/maintenance/department/eva) -"iSf" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron/dark/side{ - dir = 8 +"iSd" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 }, -/area/hallway/primary/central) +/turf/open/floor/iron/freezer, +/area/hallway/primary/fore) +"iSi" = ( +/turf/open/openspace, +/area/hallway/primary/fore) "iSr" = ( /obj/machinery/computer/card{ dir = 4; @@ -18126,34 +17929,9 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/wood, /area/crew_quarters/cafeteria) -"iSJ" = ( -/obj/structure/fence{ - dir = 8 - }, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) "iSX" = ( /turf/closed/wall, /area/security/brig) -"iTe" = ( -/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue/opposingcorners, -/obj/item/radio/intercom{ - pixel_y = 24 - }, -/obj/machinery/newscaster{ - pixel_x = -32; - pixel_y = 34 - }, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/multiz{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/white, -/area/medical/medbay/central) "iTq" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -18175,10 +17953,6 @@ /obj/effect/turf_decal/tile/neutral/anticorner/contrasted, /turf/open/floor/iron, /area/security/brig) -"iUt" = ( -/obj/structure/railing, -/turf/open/openspace, -/area/engineering/hallway) "iUx" = ( /obj/machinery/button/door{ id = "Cabin2"; @@ -18250,6 +18024,22 @@ dir = 8 }, /area/asteroid/paradise/surface) +"iVZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/multiz/down{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/mech_bay_recharge_floor, +/area/science/robotics) "iWK" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch"; @@ -18258,14 +18048,6 @@ /obj/effect/mapping_helpers/airlock/abandoned, /turf/open/floor/plating, /area/maintenance/department/engine/atmos) -"iXb" = ( -/obj/machinery/door/airlock{ - id_tag = "Toilet 1"; - name = "Toilet Unit" - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/techmaint/planetary, -/area/hallway/primary/fore) "iXj" = ( /obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ alpha = 180; @@ -18295,6 +18077,14 @@ }, /turf/open/floor/carpet/green, /area/crew_quarters/cafeteria) +"iXD" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/catwalk_floor/iron_dark, +/area/asteroid/paradise/surface) "iYl" = ( /obj/structure/sink{ dir = 1; @@ -18305,35 +18095,10 @@ }, /turf/open/floor/prison/dark, /area/security/prison/shielded) -"iYo" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - alpha = 180 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/firealarm/directional/west, -/obj/structure/disposalpipe/multiz{ - dir = 1 - }, -/turf/open/floor/iron, -/area/security/brig) -"iYu" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Construction Area" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/wood, -/area/library/abandoned) -"iYB" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/dark/warning{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/engineering/hallway) +"iYn" = ( +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) "iYE" = ( /obj/effect/turf_decal/bot, /obj/item/reagent_containers/glass/bucket, @@ -18355,22 +18120,25 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/tech, /area/engine/atmos) +"iZg" = ( +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/thermomachine/heater/on, +/turf/open/floor/iron, +/area/engine/atmos) "iZu" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/iron/grid/steel, /area/science/xenobiology) -"iZB" = ( -/obj/machinery/door/airlock{ - id_tag = "Toilet 2"; - name = "Toilet Unit" - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/techmaint/planetary, -/area/hallway/primary/fore) "iZO" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/closet/wardrobe/pink, @@ -18394,20 +18162,6 @@ }, /turf/open/indestructible/sound/pool, /area/crew_quarters/fitness/recreation) -"jai" = ( -/obj/structure/table, -/obj/item/seeds/flower/lily{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/seeds/flower/geranium, -/obj/effect/decal/cleanable/dirt, -/obj/item/food/grown/wheat, -/obj/item/food/grown/corn, -/obj/item/food/grown/apple, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/maintenance/department/medical/morgue) "jap" = ( /obj/machinery/light{ dir = 4 @@ -18423,12 +18177,6 @@ }, /turf/open/floor/iron/white, /area/crew_quarters/fitness/recreation) -"jat" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/openspace, -/area/hallway/primary/fore) "jaF" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -18451,6 +18199,17 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/department/chapel) +"jbk" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light/floor, +/turf/open/floor/iron/dark, +/area/hallway/primary/aft) "jbC" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -18458,53 +18217,22 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/wood, /area/crew_quarters/cafeteria) -"jcn" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 +"jct" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/plasma_output{ + dir = 1 }, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) -"jcz" = ( +/turf/open/floor/engine/plasma, +/area/engine/atmos) +"jcA" = ( /obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/item/radio/intercom{ - dir = 1; - pixel_x = 29; - pixel_y = -2 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/hallway/primary/central) -"jcQ" = ( -/obj/machinery/airalarm/directional/south, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "quarantineshutters"; - name = "Isolation Shutters" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ dir = 8 }, -/turf/open/floor/iron, -/area/maintenance/department/medical/central) +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark, +/area/hallway/primary/aft) "jdh" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -18516,6 +18244,27 @@ slowdown = 0 }, /area/asteroid/paradise/surface) +"jdW" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/catwalk_floor/iron_dark, +/area/crew_quarters/heads/hop) "jeo" = ( /obj/structure/chair/stool/directional/west, /obj/effect/turf_decal/siding/wood{ @@ -18529,6 +18278,17 @@ }, /turf/open/floor/wood, /area/crew_quarters/cafeteria) +"jeZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/turf/open/floor/iron, +/area/hallway/primary/aft) "jfB" = ( /obj/effect/turf_decal/tile/purple{ dir = 8 @@ -18539,6 +18299,33 @@ dir = 8 }, /area/science/lab) +"jfC" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) +"jfQ" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave{ + desc = "It looks really dirty."; + name = "maintenance microwave"; + pixel_y = 5 + }, +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/iron, +/area/engineering/hallway) "jfU" = ( /obj/machinery/door/airlock/medical{ name = "Psychologist"; @@ -18563,24 +18350,25 @@ }, /turf/open/floor/plating, /area/maintenance/department/eva) -"jhz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "quarantineshutters"; - name = "Isolation Shutters" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, +"jgC" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted, /obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/turf_decal/stripes/closeup, -/turf/open/floor/iron/dark, -/area/maintenance/department/medical/central) +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/sepia, +/area/quartermaster/storage) "jhG" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2, /obj/machinery/atmospherics/components/binary/pump{ @@ -18590,17 +18378,48 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, /area/engine/atmos) -"jhV" = ( -/obj/structure/railing/corner{ - dir = 1 +"jhS" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + req_access_txt = "19" }, -/turf/open/floor/iron/dark/corner{ - dir = 1 +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/area/hallway/primary/aft) +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridgedoors"; + name = "Bridge Access Blast Door" + }, +/turf/open/floor/iron/dark, +/area/bridge) +"jie" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/turf_decal/delivery, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","rd") + }, +/turf/open/floor/iron/dark, +/area/science/mixing) "jij" = ( /turf/open/openspace, /area/security/brig) +"jiw" = ( +/obj/structure/table_frame/wood, +/obj/effect/decal/cleanable/dirt, +/obj/item/folder/white{ + pixel_x = 7; + pixel_y = -9 + }, +/obj/structure/light_construct, +/turf/open/floor/wood, +/area/library/abandoned) "jiG" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 6 @@ -18616,18 +18435,26 @@ /obj/effect/landmark/start/chaplain, /turf/open/floor/wood, /area/chapel/main) -"jjw" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/fans/tiny{ - density = 1; - icon = 'icons/effects/effects.dmi'; - icon_state = "m_shield"; - max_integrity = 1e+007 +"jjq" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2, +/obj/structure/window/plasma/reinforced{ + dir = 1 }, -/turf/open/floor/plating/asteroid/basalt/planetary, -/area/quartermaster/storage) +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/thermomachine/heater/layer_4, +/turf/open/floor/iron, +/area/engine/atmos) +"jjT" = ( +/obj/effect/turf_decal/siding/white, +/obj/item/kirbyplants/random, +/obj/structure/railing, +/turf/open/floor/iron, +/area/science/robotics) "jjW" = ( /turf/open/floor/iron, /area/engine/engineering) @@ -18640,6 +18467,10 @@ slowdown = 0 }, /area/asteroid/paradise/surface) +"jkj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/royalblack, +/area/library/abandoned) "jkp" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -18651,18 +18482,17 @@ }, /turf/open/floor/plating, /area/tcommsat/server) -"jky" = ( -/obj/structure/chair/fancy/bench/corporate/right{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 +"jkD" = ( +/obj/item/toy/plush/moth/firewatch{ + name = "Zinnia"; + pixel_x = -10 }, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 +/obj/item/toy/plush/lizard_plushie{ + name = "Walks-upon-Embers"; + pixel_x = 5 }, -/turf/open/floor/iron/dark, -/area/engineering/hallway) +/turf/open/floor/plating/asteroid/basalt/planetary, +/area/asteroid/paradise) "jkK" = ( /obj/machinery/light_switch{ pixel_x = -24; @@ -18699,6 +18529,19 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/showroomfloor, /area/crew_quarters/fitness/recreation) +"jlw" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + alpha = 180; + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/security/brig) "jlM" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -18716,6 +18559,11 @@ /obj/machinery/vending/security, /turf/open/floor/iron, /area/security/brig) +"jlZ" = ( +/obj/structure/lattice/catwalk/over, +/obj/machinery/firealarm/directional/east, +/turf/open/openspace, +/area/hallway/primary/fore) "jmO" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -18731,21 +18579,13 @@ "jmY" = ( /turf/open/floor/plating/beach/coastline_b, /area/asteroid/paradise/surface/water) -"jnE" = ( -/obj/effect/turf_decal/siding/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 4 - }, -/obj/effect/turf_decal/siding/dark{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/engineering/hallway) +"jna" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"jnG" = ( +/turf/open/floor/wood/broken, +/area/library/abandoned) "jnJ" = ( /obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ alpha = 180; @@ -18766,6 +18606,15 @@ }, /turf/open/floor/iron, /area/security/brig) +"jnN" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/engineering/hallway) "jnO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{ dir = 4 @@ -18801,6 +18650,25 @@ /obj/structure/flora/rock/pile, /turf/closed/mineral/random/air, /area/asteroid/paradise) +"jpa" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/item/stack/cable_coil{ + amount = 5 + }, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/asteroid/paradise) +"jpr" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) "jqb" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -18809,6 +18677,19 @@ /obj/machinery/smartfridge/extract/preloaded, /turf/open/floor/iron/grid/steel, /area/science/xenobiology) +"jqc" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/dark/corner, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/iron, +/area/hallway/primary/aft) +"jqp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron, +/area/maintenance/department/crew_quarters/bar) "jqA" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -18819,6 +18700,15 @@ }, /turf/open/floor/iron/dark, /area/engine/engineering) +"jqK" = ( +/obj/structure/barricade/wooden/crude, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/iron, +/area/hallway/primary/fore) "jqN" = ( /obj/item/bikehorn{ pixel_x = -3; @@ -18835,6 +18725,25 @@ }, /turf/open/floor/wood, /area/crew_quarters/theatre/backstage) +"jqV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail/destination/toxins{ + dir = 1 + }, +/turf/open/floor/iron/white/side{ + dir = 6 + }, +/area/science/lab) +"jqW" = ( +/turf/closed/wall/mineral/plastitanium, +/area/asteroid/paradise/surface) "jqY" = ( /obj/structure/extinguisher_cabinet{ pixel_y = -1 @@ -18861,6 +18770,21 @@ }, /turf/open/floor/iron/tech, /area/engine/engineering) +"jrl" = ( +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/floor/iron, +/area/security/brig) "jrq" = ( /obj/effect/turf_decal/tile/yellow/opposingcorners{ dir = 8 @@ -18872,6 +18796,20 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/iron/dark, /area/storage/primary) +"jrB" = ( +/obj/effect/turf_decal/pool{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8; + pixel_x = 4 + }, +/obj/item/storage/firstaid/brute{ + pixel_y = 5 + }, +/obj/structure/closet/boxinggloves, +/turf/open/floor/iron/white, +/area/crew_quarters/fitness/recreation) "jrH" = ( /obj/structure/table/wood, /obj/item/staff/broom, @@ -18881,10 +18819,11 @@ /obj/effect/spawner/lootdrop/costume, /turf/open/floor/wood, /area/crew_quarters/cafeteria) -"jrU" = ( -/obj/machinery/smartfridge, -/turf/open/floor/iron/grid/steel, -/area/hydroponics) +"jrL" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) "jsb" = ( /obj/machinery/atmospherics/components/trinary/mixer/flipped{ dir = 8 @@ -18936,10 +18875,19 @@ }, /turf/open/floor/iron, /area/science/explab) -"jsm" = ( -/obj/item/trash/plate, -/turf/open/floor/plating/beach/sand, -/area/asteroid/paradise/surface) +"jso" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/evac{ + dir = 4 + }, +/turf/open/floor/iron, +/area/maintenance/department/science/xenobiology) "jsp" = ( /turf/closed/indestructible/rock/bedrock, /area/asteroid/paradise) @@ -18949,11 +18897,6 @@ }, /turf/open/floor/engine, /area/ai_monitored/turret_protected/ai) -"jss" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/spawner/lootdrop/glowstick/lit, -/turf/open/floor/plating, -/area/maintenance/department/chapel) "jst" = ( /obj/structure/chair, /obj/effect/turf_decal/siding/wood{ @@ -18968,10 +18911,6 @@ }, /turf/open/floor/iron, /area/engine/engineering) -"jtl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/maintenance/department/medical/morgue) "jtr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/yellow{ @@ -18997,6 +18936,25 @@ }, /turf/open/floor/plating/grass, /area/asteroid/paradise/surface/grass) +"jtP" = ( +/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ + alpha = 180 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/iron, +/area/hallway/primary/fore) "jtQ" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -19006,25 +18964,6 @@ }, /turf/open/floor/wood, /area/crew_quarters/cafeteria) -"jtW" = ( -/obj/machinery/firealarm/directional/east, -/obj/effect/spawner/lootdrop/grille_or_trash, -/turf/open/floor/plating, -/area/maintenance/department/medical/central) -"jue" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering Foyer"; - req_one_access_txt = "32" - }, -/obj/effect/turf_decal/stripes/closeup{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/engineering/hallway) "juz" = ( /obj/structure/bed{ dir = 8 @@ -19042,50 +18981,66 @@ }, /turf/open/floor/wood, /area/crew_quarters/dorms) -"jvX" = ( -/obj/item/radio/intercom{ - pixel_x = 33; - pixel_y = -3 +"jvN" = ( +/obj/structure/disposalpipe/sorting/mail/destination/xenobiology{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "1-2" +/turf/closed/wall/r_wall, +/area/science/mixing) +"jwb" = ( +/obj/structure/railing, +/obj/structure/lattice, +/turf/open/openspace, +/area/hallway/primary/fore) +"jwp" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/fernybush, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/effect/turf_decal/stripes/line{ +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ dir = 8 }, -/obj/machinery/light{ +/turf/open/floor/grass/no_border, +/area/hallway/primary/fore) +"jwG" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/openspace, +/area/medical/medbay/central) +"jwW" = ( +/obj/effect/turf_decal/siding/wood{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/pipe/simple/green/visible/layer2{ - dir = 9 +/obj/structure/railing{ + dir = 4 }, -/turf/open/floor/iron/dark, -/area/engine/engineering) -"jwN" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Personnel's Office"; - req_access_txt = "57" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/cable/yellow{ - icon_state = "1-2" +/turf/open/floor/wood, +/area/crew_quarters/cafeteria) +"jwY" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering Foyer"; + req_one_access_txt = "32" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/effect/turf_decal/stripes/closeup{ dir = 1 }, +/obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridgedoors"; - name = "Bridge Access Blast Door" + dir = 4 }, /turf/open/floor/iron/dark, -/area/bridge) +/area/engineering/hallway) "jxa" = ( /obj/effect/turf_decal/tile/blue/half/contrasted{ dir = 4 @@ -19171,11 +19126,9 @@ }, /turf/open/floor/iron, /area/maintenance/department/bridge) -"jzj" = ( -/obj/structure/railing, -/obj/effect/turf_decal/siding/dark, -/turf/open/floor/iron/dark/side, -/area/hallway/primary/central) +"jza" = ( +/turf/closed/wall, +/area/hallway/primary/aft) "jzm" = ( /obj/effect/turf_decal/tile/dark_green/fourcorners/contrasted, /obj/structure/railing{ @@ -19202,27 +19155,6 @@ }, /turf/open/floor/iron/dark, /area/security/warden) -"jzq" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/wood/broken, -/area/library/abandoned) -"jzW" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/item/stack/cable_coil{ - amount = 5 - }, -/turf/open/floor/iron/white/side{ - dir = 1 - }, -/area/asteroid/paradise) "jAg" = ( /obj/item/flashlight/lantern{ pixel_x = -6; @@ -19251,6 +19183,13 @@ }, /turf/open/floor/iron/dark, /area/security/brig) +"jAB" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/open/floor/iron, +/area/maintenance/department/chapel) "jAN" = ( /obj/machinery/conveyor{ id = "QMLoad2" @@ -19263,15 +19202,6 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/storage) -"jAX" = ( -/obj/structure/fans/tiny{ - density = 1; - icon = 'icons/effects/effects.dmi'; - icon_state = "m_shield"; - max_integrity = 1e+007 - }, -/turf/open/floor/plating/asteroid/planetary, -/area/quartermaster/storage) "jBj" = ( /obj/machinery/power/smes{ charge = 2e+007 @@ -19286,6 +19216,21 @@ initial_gas_mix = "o2=22;n2=82;TEMP=293.15" }, /area/tcommsat/computer) +"jBM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/iron/tech, +/area/engine/atmos) "jBP" = ( /obj/item/toy/plush/flushed, /turf/open/floor/plating, @@ -19300,6 +19245,45 @@ /obj/effect/decal/cleanable/glass, /turf/open/floor/plating/rust, /area/science/test_area) +"jCZ" = ( +/obj/machinery/button/door{ + id = "commissaryshutters3"; + name = "Commissary Shutters Control #3"; + pixel_x = 32 + }, +/obj/structure/table/wood, +/obj/item/stack/sheet/wood/ten, +/obj/item/storage/bag/trash, +/turf/open/floor/iron, +/area/hallway/primary/fore) +"jDe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/electronics/apc{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/structure/sign/warning/explosives{ + pixel_y = -32 + }, +/turf/open/floor/iron/sepia, +/area/quartermaster/warehouse) +"jDq" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"jDz" = ( +/obj/item/seeds/tower, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small, +/obj/effect/turf_decal/delivery, +/obj/machinery/hydroponics, +/turf/open/floor/iron, +/area/maintenance/department/medical/morgue) "jDC" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 @@ -19335,6 +19319,10 @@ }, /turf/open/floor/wood, /area/chapel/main) +"jDW" = ( +/obj/structure/flora/tree/jungle/small, +/turf/open/floor/grass/no_border, +/area/hallway/primary/aft) "jEr" = ( /obj/machinery/light{ dir = 4 @@ -19355,60 +19343,37 @@ }, /turf/open/floor/iron, /area/security/brig) -"jEC" = ( -/obj/structure/railing, -/obj/effect/turf_decal/siding/white, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/obj/structure/disposalpipe/multiz/down{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/brig) "jEE" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plating, /area/maintenance/department/engine/atmos) -"jER" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/dark/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/hallway/primary/central) "jES" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/dorms) -"jET" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron, -/area/hallway/primary/aft) "jEW" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/landmark/start/assistant, /turf/open/floor/plating/asteroid/planetary, /area/crew_quarters/dorms) +"jFp" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_one_access_txt = "12;7;29" + }, +/obj/effect/turf_decal/stripes/closeup{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/maintenance/department/engine) "jFz" = ( /obj/item/paper_bin{ pixel_x = 2; @@ -19426,19 +19391,6 @@ /obj/structure/window/reinforced, /turf/open/floor/iron/dark, /area/security/warden) -"jFA" = ( -/obj/machinery/computer/prisoner/management, -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/keycard_auth{ - pixel_x = -32 - }, -/turf/open/floor/iron/dark, -/area/crew_quarters/heads/hos) "jFB" = ( /obj/machinery/light/floor, /turf/open/floor/iron/sepia, @@ -19451,44 +19403,32 @@ /obj/structure/closet/secure_closet/engineering_personal, /turf/open/floor/iron, /area/engine/engineering) -"jFT" = ( +"jFW" = ( +/obj/effect/mapping_helpers/dead_body_placer, +/turf/open/floor/plating/dirt/planetary, +/area/asteroid/paradise/surface) +"jFY" = ( /obj/structure/table/reinforced, -/obj/machinery/door/window/northright{ - dir = 2; - name = "Chemistry Desk"; - req_one_access_txt = "5;33" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters"; - name = "chemistry Shutters" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted, -/obj/structure/desk_bell{ - pixel_x = -8 - }, -/obj/item/paper_bin{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/folder/white{ +/obj/item/toy/figure/qm{ pixel_x = 7; pixel_y = 2 }, -/obj/item/folder/white{ - pixel_x = 5; - pixel_y = 2 - }, -/obj/item/pen{ - pixel_x = 6; +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/obj/item/melee/classic_baton/police/deputy{ + pixel_x = -4; pixel_y = 3 }, -/turf/open/floor/iron/white, -/area/medical/apothecary) -"jFW" = ( -/obj/effect/mapping_helpers/dead_body_placer, -/turf/open/floor/plating/dirt/planetary, -/area/asteroid/paradise/surface) +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","cargo") + }, +/turf/open/floor/iron/dark, +/area/quartermaster/qm) "jGc" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/yellow/opposingcorners{ @@ -19574,11 +19514,6 @@ }, /turf/open/floor/wood, /area/crew_quarters/cafeteria) -"jGO" = ( -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/white, -/area/medical/medbay/central) "jGY" = ( /obj/effect/turf_decal/tile/dark_green/fourcorners/contrasted, /obj/structure/cable/yellow{ @@ -19596,28 +19531,10 @@ /obj/effect/landmark/start/botanist, /turf/open/floor/iron, /area/hydroponics) -"jHa" = ( -/obj/structure/chair/fancy/bench/corporate/left{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/engineering/hallway) "jHd" = ( /obj/structure/railing, /turf/open/openspace, /area/medical/medbay/central) -"jHl" = ( -/obj/structure/railing{ - dir = 5 - }, -/turf/open/openspace, -/area/engineering/hallway) "jHA" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -19631,20 +19548,52 @@ }, /turf/open/floor/iron, /area/maintenance/department/science/central) -"jIb" = ( -/obj/effect/turf_decal/siding/blue{ +"jIe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 }, -/turf/open/floor/glass/reinforced, -/area/medical/medbay/central) -"jJF" = ( -/obj/machinery/light_switch{ - pixel_x = 24; - pixel_y = 24 +/obj/structure/disposalpipe/junction/yjunction{ + dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/turf/open/floor/iron/white, -/area/medical/apothecary) +/turf/open/floor/iron/dark, +/area/engineering/hallway) +"jIs" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/iron/tech, +/area/engine/engineering) +"jIW" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/catwalk_floor/iron_dark, +/area/asteroid/paradise/surface) +"jJl" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/hallway/primary/central) "jJH" = ( /obj/structure/chair/stool/directional/west, /obj/effect/landmark/start/assistant, @@ -19667,14 +19616,17 @@ /obj/machinery/space_heater, /turf/open/floor/iron/dark, /area/engine/atmos) -"jKp" = ( -/turf/open/floor/iron/dark, -/area/hallway/primary/central) -"jKs" = ( -/obj/structure/railing/corner{ - dir = 4 +"jKE" = ( +/obj/item/storage/secure/safe{ + pixel_x = 37; + pixel_y = 1 }, /obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/camera/autoname/directional/north, +/obj/item/radio/intercom{ + dir = 1; + pixel_y = 29 + }, /turf/open/floor/iron, /area/hallway/primary/fore) "jKK" = ( @@ -19690,25 +19642,6 @@ "jKL" = ( /turf/closed/wall/r_wall, /area/science/research) -"jKY" = ( -/obj/item/seeds/flower/harebell, -/obj/machinery/light/small, -/obj/effect/turf_decal/delivery, -/obj/machinery/hydroponics, -/turf/open/floor/iron, -/area/maintenance/department/medical/morgue) -"jLd" = ( -/obj/structure/chair/fancy/sofa/old/right{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 10 - }, -/obj/structure/railing, -/obj/effect/turf_decal/siding/white, -/obj/effect/landmark/start/assistant, -/turf/open/floor/carpet/green, -/area/crew_quarters/cafeteria) "jLe" = ( /obj/effect/turf_decal/bot, /obj/structure/bodycontainer/morgue{ @@ -19716,32 +19649,6 @@ }, /turf/open/floor/iron/dark, /area/medical/morgue) -"jLf" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/computer/warrant{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) -"jLj" = ( -/obj/structure/fence{ - dir = 8 - }, -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) -"jLo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/sand/plating, -/obj/structure/grille, -/turf/open/floor/plating/asteroid/basalt/planetary, -/area/asteroid/paradise) "jLp" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -19759,6 +19666,36 @@ }, /turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat/maint) +"jLG" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 1 + }, +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -2; + pixel_y = 12 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/item/storage/pill_bottle/mannitol{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/wrench/medical{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/iron/grid/steel, +/area/medical/medbay/central) "jLI" = ( /obj/structure/lattice/catwalk/over, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -19794,10 +19731,9 @@ }, /turf/open/floor/iron/sepia, /area/quartermaster/storage) -"jMd" = ( -/obj/structure/flora/rock, -/turf/open/floor/plating/asteroid/planetary, -/area/asteroid/paradise) +"jMv" = ( +/turf/closed/wall, +/area/hallway/primary/central) "jMz" = ( /obj/effect/turf_decal/sand/plating, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, @@ -19806,6 +19742,10 @@ "jME" = ( /turf/closed/wall, /area/medical/apothecary) +"jMW" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall/r_wall, +/area/medical/medbay/central) "jNd" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/light{ @@ -19850,40 +19790,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/security/execution/education) -"jOE" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/iron/dark, -/area/engine/engineering) -"jOI" = ( -/obj/effect/turf_decal/bot, -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/storage/belt/utility, -/obj/item/clothing/glasses/welding{ - pixel_x = 2; - pixel_y = -1 - }, -/obj/item/clothing/head/utility/welding{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 +"jON" = ( +/obj/item/radio/intercom{ + broadcasting = 1; + canhear_range = 6; + dir = 8; + name = "Station Intercom (Court)"; + pixel_x = 33; + pixel_y = -4 }, -/turf/open/floor/iron/dark, -/area/science/robotics) +/turf/open/floor/plating, +/area/library/abandoned) "jPg" = ( /obj/effect/turf_decal/delivery, /obj/structure/closet/crate/mail, @@ -19952,6 +19869,18 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/carpet/blue, /area/crew_quarters/cafeteria) +"jRa" = ( +/obj/structure/lattice, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/openspace, +/area/hallway/primary/fore) +"jRA" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) "jRB" = ( /obj/structure/flora/grass/jungle, /turf/open/floor/plating/asteroid/planetary, @@ -19969,6 +19898,32 @@ /obj/structure/spider/stickyweb, /turf/open/floor/plating/asteroid/basalt/planetary, /area/asteroid/paradise) +"jRS" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/effect/spawner/randomvend/snack, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron, +/area/medical/medbay/central) +"jSs" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/security/brig) +"jSH" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/numbers/two_nine, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron, +/area/maintenance/department/engine) "jSI" = ( /obj/effect/turf_decal/delivery, /obj/machinery/portable_atmospherics/canister/nitrous_oxide, @@ -19983,6 +19938,19 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) +"jSR" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"jTf" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/map/echo{ + pixel_x = -32 + }, +/turf/open/floor/iron, +/area/hallway/primary/fore) "jTj" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -20003,34 +19971,16 @@ /obj/machinery/space_heater, /turf/open/floor/pod/dark, /area/maintenance/department/science/central) -"jTw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"jTE" = ( +/obj/effect/turf_decal/box, +/obj/structure/cable/yellow{ + icon_state = "0-2" }, -/turf/open/floor/iron/grid/steel, -/area/science/mixing) -"jUk" = ( -/obj/effect/landmark/start/assistant, /obj/structure/cable/yellow{ - icon_state = "2-32" + icon_state = "2-8" }, -/obj/effect/turf_decal/trimline/yellow, -/obj/structure/lattice/catwalk/over, -/turf/open/openspace, -/area/hallway/primary/fore) +/turf/open/floor/plating, +/area/engine/engineering) "jUp" = ( /obj/machinery/portable_atmospherics/pump, /obj/effect/turf_decal/bot{ @@ -20052,6 +20002,29 @@ "jUw" = ( /turf/open/floor/plating/asteroid/basalt/planetary, /area/quartermaster/storage) +"jUL" = ( +/obj/item/radio/intercom{ + pixel_x = 33; + pixel_y = -3 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/simple/green/visible/layer2{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/engine/engineering) "jUM" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ @@ -20089,15 +20062,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"jVt" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/multiz/down{ - dir = 4 - }, -/turf/open/floor/iron, -/area/maintenance/department/engine/atmos) "jVL" = ( /obj/effect/turf_decal/tile/purple/anticorner/contrasted{ dir = 4 @@ -20130,32 +20094,6 @@ /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/pod/dark, /area/maintenance/department/crew_quarters/dorms) -"jWl" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_x = 32; - pixel_y = -2 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/hallway/primary/aft) -"jWv" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/south{ - pixel_y = -24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/iron/white, -/area/science/explab) "jWU" = ( /obj/effect/turf_decal/tile/blue/half{ dir = 1 @@ -20231,20 +20169,32 @@ }, /turf/open/floor/iron, /area/hydroponics) -"jYk" = ( +"jYa" = ( +/obj/structure/lattice/catwalk/over, +/obj/item/kirbyplants/random, +/turf/open/openspace, +/area/engineering/hallway) +"jYd" = ( /obj/structure/railing{ - dir = 4 + dir = 10 }, /obj/effect/turf_decal/siding/dark{ - dir = 4 + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/hallway/primary/central) +"jYk" = ( +/obj/machinery/modular_computer/console/preset/engineering, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 }, -/turf/open/floor/iron/dark/side{ - dir = 5 +/obj/structure/window/reinforced{ + dir = 4 }, -/area/hallway/primary/central) +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron, +/area/bridge) "jYA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 @@ -20272,19 +20222,39 @@ /obj/structure/cable, /turf/open/floor/engine/vacuum, /area/maintenance/disposal/incinerator) -"jYR" = ( -/obj/effect/turf_decal/siding/dark, -/obj/effect/turf_decal/siding/dark{ - dir = 1 +"jYQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 }, -/obj/effect/turf_decal/trimline/dark/warning{ +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron, +/area/hallway/primary/fore) +"jYW" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/window/reinforced{ dir = 1 }, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 4 +/obj/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "Engidesk"; + name = "engineering Security Door" }, -/turf/open/floor/iron/dark, -/area/engineering/hallway) +/obj/machinery/door/firedoor, +/turf/open/floor/grass/no_border, +/area/crew_quarters/heads/chief) +"jZf" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/turf_decal/bot, +/obj/structure/sign/departments/minsky/supply/hydroponics{ + pixel_x = 32 + }, +/turf/open/floor/iron, +/area/maintenance/department/medical/morgue) "jZh" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -20323,27 +20293,6 @@ "jZu" = ( /turf/closed/mineral/random/air, /area/science/mixing) -"jZv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/closet/secure_closet/medical3, -/obj/effect/spawner/lootdrop/techstorage/medical, -/obj/item/folder/white{ - pixel_x = -1; - pixel_y = -4 - }, -/obj/item/storage/belt/medical{ - pixel_y = 2 - }, -/obj/structure/sign/painting/library{ - pixel_y = 32 - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","medbay","public") - }, -/turf/open/floor/iron, -/area/medical/storage) "jZG" = ( /obj/effect/turf_decal/trimline/dark_blue/filled/line{ dir = 4 @@ -20366,13 +20315,6 @@ }, /turf/open/floor/iron/freezer, /area/crew_quarters/kitchen/coldroom) -"kad" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/asteroid/paradise/surface) "kao" = ( /obj/structure/chair/office/light{ dir = 1 @@ -20386,10 +20328,63 @@ /obj/effect/decal/cleanable/oil, /turf/open/floor/iron/dark, /area/engine/engineering) +"kaJ" = ( +/obj/structure/fans/tiny{ + density = 1; + icon = 'icons/effects/effects.dmi'; + icon_state = "m_shield"; + max_integrity = 1e+007 + }, +/turf/open/floor/plating/asteroid/planetary, +/area/quartermaster/storage) +"kaR" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/hallway/primary/central) +"kaW" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/engine/engineering) "kbq" = ( /obj/structure/sign/warning/radiation/rad_area, /turf/closed/wall/r_wall, /area/maintenance/disposal/incinerator) +"kbr" = ( +/obj/item/kirbyplants/random, +/obj/item/radio/intercom{ + dir = 1; + pixel_x = -30; + pixel_y = -2 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/hallway/primary/aft) +"kcb" = ( +/obj/structure/railing/corner, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/openspace, +/area/hallway/primary/fore) "kct" = ( /obj/structure/railing{ dir = 4 @@ -20423,6 +20418,23 @@ }, /turf/open/floor/carpet/green, /area/crew_quarters/cafeteria) +"kcF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/wood, +/area/library/abandoned) +"kcN" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/openspace, +/area/engineering/hallway) "kcX" = ( /obj/machinery/computer/security/mining{ dir = 4 @@ -20434,15 +20446,6 @@ }, /turf/open/floor/wood, /area/crew_quarters/heads/hop) -"kde" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/maintenance/department/engine) "kdn" = ( /obj/effect/turf_decal/trimline/white/line, /obj/effect/turf_decal/stripes/line{ @@ -20450,34 +20453,16 @@ }, /turf/open/floor/prison/dark, /area/security/prison) -"kdV" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/bot, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","engine") - }, -/obj/structure/closet/secure_closet/atmospherics{ - anchored = 1; - req_access = null; - req_one_access_txt = "11" - }, -/obj/item/radio/intercom{ - pixel_x = -1; - pixel_y = 29 - }, -/turf/open/floor/iron, -/area/engine/atmos) -"ked" = ( -/obj/structure/railing, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ +"kdJ" = ( +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/open/floor/iron/dark/side{ - dir = 10 - }, -/area/hallway/primary/central) +/turf/open/floor/iron/grid/steel, +/area/medical/patients_rooms) +"kdO" = ( +/obj/structure/sink/puddle, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) "kef" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -20509,6 +20494,15 @@ "kfl" = ( /turf/closed/wall/r_wall, /area/bridge/meeting_room) +"kfs" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) "kgl" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -20523,13 +20517,6 @@ }, /turf/open/floor/iron/dark, /area/engine/atmos) -"kgo" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/maintenance/department/science/xenobiology) "kgt" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/fence/cut{ @@ -20552,6 +20539,27 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/dark, /area/medical/morgue) +"kgF" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible/layer5{ + dir = 6 + }, +/turf/open/floor/iron/tech, +/area/engine/atmos) "khi" = ( /obj/machinery/button/door{ id = "Cabin4"; @@ -20580,9 +20588,17 @@ }, /turf/open/floor/catwalk_floor/iron_dark, /area/engine/engineering) +"khr" = ( +/obj/item/sbeacondrop/exploration, +/turf/open/floor/iron/techmaint/planetary, +/area/asteroid/paradise/surface) "khs" = ( /turf/closed/wall/rust, /area/science/lab) +"khX" = ( +/obj/machinery/smartfridge/sci, +/turf/open/floor/iron/white, +/area/science/robotics) "kiz" = ( /obj/effect/decal/cleanable/greenglow, /turf/open/floor/plating/dirt/jungle/wasteland, @@ -20591,29 +20607,31 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/department/engine/atmos) +"kiN" = ( +/obj/structure/lattice/catwalk/over, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","security") + }, +/turf/open/openspace, +/area/hallway/primary/fore) "kiZ" = ( /turf/open/floor/plating/beach/coastline_b{ dir = 6 }, /area/asteroid/paradise/surface/water) -"kjt" = ( -/obj/structure/musician/piano{ - icon_state = "piano" - }, -/obj/effect/turf_decal/siding/white{ +"kji" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 8 }, -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/multiz/down{ + dir = 2 }, -/turf/open/floor/wood, -/area/crew_quarters/cafeteria) +/turf/open/floor/iron/white/side, +/area/science/lab) "kjC" = ( /obj/effect/turf_decal/stripes/end{ dir = 8 @@ -20624,13 +20642,6 @@ }, /turf/open/floor/iron/sepia, /area/quartermaster/storage) -"kjU" = ( -/obj/item/seeds/flower/poppy, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/hydroponics, -/turf/open/floor/iron, -/area/maintenance/department/medical/morgue) "kkA" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/closed/wall, @@ -20638,28 +20649,53 @@ "kkD" = ( /turf/closed/mineral/bscrystal, /area/asteroid/paradise) +"kkJ" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) "kkN" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /turf/open/floor/plating, /area/ai_monitored/security/armory) -"kkW" = ( -/obj/machinery/power/apc/auto_name/directional/south{ - pixel_y = -24 +"kkX" = ( +/obj/structure/railing{ + dir = 9 }, -/obj/structure/cable/yellow, -/obj/machinery/sleeper{ +/obj/structure/closet/firecloset/full, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/hallway/primary/aft) +"kkZ" = ( +/obj/structure/railing{ dir = 8 }, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/grid/steel, -/area/medical/patients_rooms) +/obj/structure/closet/firecloset/full, +/turf/open/floor/glass/reinforced, +/area/hallway/primary/fore) "klh" = ( /obj/structure/flora/ausbushes/lavendergrass, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise) +"klz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "Security" + }, +/obj/structure/plasticflaps/opaque, +/obj/machinery/door/poddoor/preopen{ + id = "brigentrance"; + name = "Brig Blast Door" + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) "klE" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -20694,6 +20730,10 @@ slowdown = 0 }, /area/asteroid/paradise/surface) +"kme" = ( +/obj/structure/sign/departments/minsky/supply/cargo, +/turf/closed/wall, +/area/hallway/primary/aft) "kmg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -20762,50 +20802,53 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) -"knv" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 +"knD" = ( +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 9 }, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/hallway/primary/central) -"knJ" = ( -/obj/structure/chair/fancy/bench/pew/right{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet/green, -/area/chapel/main) "knM" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/maintenance/two, /turf/open/floor/plating, /area/maintenance/department/eva) -"koe" = ( -/obj/effect/turf_decal/siding/dark, -/obj/structure/railing, -/obj/effect/turf_decal/siding/dark{ - dir = 1 +"koc" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon, +/turf/open/openspace, +/area/engineering/hallway) +"koz" = ( +/obj/item/wallframe/extinguisher_cabinet{ + pixel_x = 31; + pixel_y = 1 }, -/turf/open/floor/iron/dark, -/area/hallway/primary/central) -"koj" = ( -/obj/structure/railing/corner{ - dir = 4 +/obj/structure/closet/toolcloset, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = -5; + pixel_y = 3 }, -/obj/effect/turf_decal/siding/dark/corner{ - dir = 4 +/obj/item/stack/sheet/iron/fifty{ + pixel_x = -5; + pixel_y = 3 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/iron/dark/side{ - dir = 4 +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/wood/fifty, +/obj/item/stack/sheet/wood/fifty, +/obj/item/stack/rods/fifty, +/obj/item/bluespace_capsule, +/obj/item/wrench{ + pixel_x = -4; + pixel_y = 5 }, -/area/hallway/primary/aft) +/turf/open/floor/plating, +/area/library/abandoned) "koJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -20895,18 +20938,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise/surface) -"kqF" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/asteroid/paradise/surface) "kqG" = ( /obj/machinery/atmospherics/miner/station/nitrogen, /obj/machinery/atmospherics/pipe/simple/green/hidden/layer4, @@ -20928,6 +20959,14 @@ }, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) +"kqN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "chemistry Shutters" + }, +/turf/open/floor/plating, +/area/medical/apothecary) "kqQ" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -20937,6 +20976,24 @@ }, /turf/open/floor/iron, /area/security/prison) +"kra" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible/layer5{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/engine/atmos) "krj" = ( /obj/item/trash/boritos, /turf/open/floor/plating/beach/sand, @@ -20947,6 +21004,11 @@ }, /turf/open/floor/plating/rust, /area/science/mixing) +"krL" = ( +/obj/structure/lattice/catwalk/over, +/obj/structure/chair/foldable, +/turf/open/openspace, +/area/engineering/hallway) "krO" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -20960,15 +21022,6 @@ slowdown = 0 }, /area/asteroid/paradise/surface) -"ksb" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/freezer, -/area/crew_quarters/kitchen/coldroom) "ksj" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -20982,6 +21035,13 @@ }, /turf/open/floor/iron, /area/maintenance/department/crew_quarters/bar) +"ksw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/digital_clock/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) "ksA" = ( /obj/structure/chair{ dir = 4 @@ -21023,9 +21083,11 @@ }, /turf/open/floor/iron, /area/storage/tech) -"ktI" = ( -/turf/closed/wall, -/area/hallway/primary/aft) +"ktw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool/directional/west, +/turf/open/floor/carpet/royalblack, +/area/library/abandoned) "ktL" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ @@ -21033,6 +21095,13 @@ }, /turf/open/floor/plating, /area/security/warden) +"ktV" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) "ktY" = ( /obj/structure/closet, /obj/effect/spawner/lootdrop/maintenance/two, @@ -21043,6 +21112,14 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/quartermaster/sorting) +"kuu" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) "kuD" = ( /obj/machinery/door/airlock/engineering/glass{ name = "Telecommunications"; @@ -21067,23 +21144,10 @@ "kuW" = ( /turf/closed/wall/r_wall/rust, /area/science/xenobiology) -"kvk" = ( -/obj/structure/lattice/catwalk/over, -/obj/structure/table, -/obj/item/paper/fluff/jobs/security/beepsky_mom{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/storage/fancy/cigarettes/cigpack_robust{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/machinery/light/small{ - dir = 4 - }, +"kvC" = ( +/obj/structure/railing/corner, /turf/open/openspace, -/area/hallway/primary/fore) +/area/hallway/primary/central) "kvM" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/bot, @@ -21094,27 +21158,12 @@ }, /turf/open/floor/iron, /area/engine/atmos) -"kvW" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/dark/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/hallway/primary/central) -"kwk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet/royalblack, -/area/library/abandoned) +"kwz" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/tech, +/area/engine/engineering) "kwK" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -21163,10 +21212,6 @@ /obj/item/clothing/head/utility/chefhat, /turf/open/floor/iron/grid/steel, /area/hydroponics) -"kxe" = ( -/obj/effect/landmark/start/librarian, -/turf/open/floor/plating, -/area/library/abandoned) "kxf" = ( /turf/closed/wall, /area/medical/genetics/cloning) @@ -21201,9 +21246,27 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) +"kxR" = ( +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/effect/decal/cleanable/dirt, +/obj/item/hand_labeler, +/obj/item/food/grown/tea, +/obj/item/food/grown/grapes, +/obj/item/food/grown/cherries, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/maintenance/department/medical/morgue) "kxS" = ( /turf/open/floor/plating/dirt/planetary, /area/asteroid/paradise/surface/grass) +"kxZ" = ( +/obj/structure/sign/directions/science{ + dir = 4; + pixel_y = 10 + }, +/turf/closed/wall, +/area/hallway/primary/aft) "kyf" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -21211,6 +21274,10 @@ }, /turf/open/floor/iron, /area/maintenance/department/security/brig) +"kyp" = ( +/obj/effect/landmark/loneops, +/turf/open/floor/plating/dirt/planetary, +/area/asteroid/paradise/surface/grass) "kyr" = ( /obj/machinery/door/window/brigdoor/northright{ id = "Cell 1"; @@ -21230,6 +21297,15 @@ slowdown = 0 }, /area/asteroid/paradise/surface) +"kyC" = ( +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/hallway/primary/fore) "kyK" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/barricade/wooden, @@ -21246,20 +21322,35 @@ /obj/item/kirbyplants/random, /turf/open/floor/carpet/blue, /area/crew_quarters/heads/hop) +"kzi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/iron, +/area/hallway/primary/aft) "kzj" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/maintenance/department/crew_quarters/dorms) -"kzn" = ( -/turf/closed/wall/r_wall, -/area/quartermaster/storage) "kzA" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/barricade/wooden, /turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat/maint) +"kzK" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/tile/dark_green/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/maintenance/department/medical/morgue) "kzL" = ( /obj/structure/closet/emcloset/anchored, /turf/open/floor/plating, @@ -21268,48 +21359,22 @@ /obj/structure/chair/stool/bar/directional/west, /turf/open/floor/iron/cafeteria_red, /area/crew_quarters/cafeteria) -"kAn" = ( -/obj/structure/chair/stool/bar/directional/west, -/obj/structure/railing, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/engineering/hallway) -"kAp" = ( -/turf/open/floor/plating/airless, -/area/maintenance/disposal) -"kAr" = ( -/obj/effect/turf_decal/tile/purple/fourcorners/contrasted, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/disposalpipe/sorting/mail/destination/xenobiology{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/science/research) -"kAX" = ( -/obj/structure/sign/directions/evac{ - dir = 4 +"kAk" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/tile/purple{ + dir = 8 }, -/turf/closed/wall/mineral/titanium/survival, -/area/hallway/primary/fore) -"kBd" = ( -/obj/structure/railing{ - dir = 1 +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 }, -/turf/open/openspace, -/area/engineering/hallway) -"kBk" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 +/obj/structure/cable/yellow{ + icon_state = "0-2" }, -/turf/open/floor/plating, -/area/maintenance/department/engine) +/turf/open/floor/iron, +/area/maintenance/department/crew_quarters/bar) +"kAp" = ( +/turf/open/floor/plating/airless, +/area/maintenance/disposal) "kBm" = ( /obj/machinery/computer/aifixer{ dir = 8 @@ -21333,15 +21398,25 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/techmaint/planetary, /area/asteroid/paradise/surface) -"kBJ" = ( -/obj/machinery/power/apc/auto_name/directional/south{ - pixel_y = -24 +"kBL" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/white{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "0-8" +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/turf/open/floor/iron/tech/grid, -/area/ai_monitored/turret_protected/aisat_interior) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/medical/medbay/central) "kBM" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -21359,14 +21434,6 @@ /obj/structure/sign/warning/explosives, /turf/closed/wall/rust, /area/science/mixing) -"kBY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/hallway/primary/fore) "kCc" = ( /obj/machinery/door/airlock/security/glass{ name = "Brig Control"; @@ -21420,20 +21487,28 @@ }, /turf/open/floor/iron/showroomfloor, /area/crew_quarters/fitness/recreation) -"kDB" = ( -/obj/machinery/door/window/brigdoor/southright{ - dir = 4; - name = "Command Chair"; - req_access_txt = "19" +"kDx" = ( +/obj/structure/filingcabinet, +/obj/item/folder/documents, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/east{ + pixel_x = 24 }, /obj/structure/cable/yellow{ - icon_state = "4-8" + icon_state = "0-8" }, -/obj/structure/disposalpipe/segment{ - dir = 6 +/turf/open/floor/iron/dark, +/area/security/nuke_storage) +"kDF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "brigentrance"; + name = "Brig Blast Door" }, -/turf/open/floor/iron/grid/steel, -/area/bridge) +/turf/open/floor/plating, +/area/security/brig) "kDO" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -21444,10 +21519,18 @@ /obj/structure/reagent_dispensers/cooking_oil, /turf/open/floor/iron/freezer, /area/crew_quarters/kitchen/coldroom) -"kEj" = ( -/obj/effect/landmark/loneops, -/turf/open/floor/plating/dirt/planetary, -/area/asteroid/paradise/surface/grass) +"kEB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible/layer4, +/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible/layer2, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/engine/atmos) "kEO" = ( /obj/structure/sign/warning/securearea{ pixel_y = 32 @@ -21458,30 +21541,46 @@ /obj/structure/stairs, /turf/open/floor/pod/dark, /area/crew_quarters/kitchen/coldroom) -"kFe" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/openspace, -/area/hallway/primary/fore) "kFj" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/closed/wall, /area/maintenance/department/bridge) -"kFU" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/maintenance/department/medical/morgue) -"kGr" = ( -/obj/effect/decal/cleanable/dirt/dust, +"kFv" = ( +/obj/structure/flora/ausbushes/sparsegrass, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron, -/area/asteroid/paradise) +/turf/open/floor/mineral/titanium, +/area/asteroid/paradise/surface) +"kFJ" = ( +/obj/machinery/atmospherics/miner/station/carbon_dioxide, +/obj/machinery/atmospherics/pipe/simple/green/hidden{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","engine") + }, +/turf/open/floor/engine/co2, +/area/engine/atmos) +"kGf" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel's Office"; + req_access_txt = "57" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridgedoors"; + name = "Bridge Access Blast Door" + }, +/turf/open/floor/iron/dark, +/area/bridge) "kGw" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/disposal/deliveryChute{ @@ -21493,11 +21592,6 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/sorting) -"kGF" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/maintenance/department/engine) "kGH" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -21511,6 +21605,34 @@ }, /turf/open/floor/plating, /area/science/robotics) +"kHt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 10 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/engine/engineering) +"kHD" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron, +/area/science/mixing) "kHF" = ( /obj/machinery/portable_atmospherics/canister/plasma, /obj/effect/turf_decal/delivery, @@ -21536,18 +21658,62 @@ }, /turf/open/floor/noslip/standard, /area/quartermaster/storage) -"kJA" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" +"kIt" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/cigarettes/cigpack_carp{ + pixel_x = -3; + pixel_y = 5 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 +/obj/item/radio/intercom{ + pixel_y = 34 + }, +/obj/machinery/button/massdriver{ + id = "toxinsdriver"; + pixel_y = 26 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/floor/iron/dark, +/area/science/mixing) +"kIA" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 }, /turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/hallway/primary/central) +"kII" = ( +/obj/structure/railing/corner{ dir = 8 }, -/area/hallway/primary/aft) +/turf/open/openspace, +/area/engineering/hallway) +"kIV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Gas to Chamber" + }, +/turf/open/floor/iron/tech, +/area/engine/engineering) "kJL" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -21609,6 +21775,18 @@ }, /turf/open/floor/iron/white, /area/medical/storage) +"kKL" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/tech, +/area/engine/engineering) "kKY" = ( /obj/item/clothing/shoes/sandal{ pixel_x = -18 @@ -21622,33 +21800,12 @@ }, /turf/open/floor/plating, /area/tcommsat/server) -"kLj" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/asteroid/paradise) -"kLz" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/plating/grass, +"kLl" = ( +/turf/open/floor/mineral/titanium, /area/asteroid/paradise/surface) "kLU" = ( /turf/open/floor/iron, /area/engine/atmos) -"kMD" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","medbay") - }, -/turf/open/floor/iron, -/area/medical/medbay/central) "kMG" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -21656,36 +21813,6 @@ }, /turf/open/floor/iron, /area/maintenance/department/eva) -"kMH" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/layer_manifold{ - dir = 1 - }, -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -2; - pixel_y = 12 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -6; - pixel_y = 9 - }, -/obj/item/storage/pill_bottle/mannitol{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/item/wrench/medical{ - pixel_x = 5; - pixel_y = 6 - }, -/turf/open/floor/iron/grid/steel, -/area/medical/medbay/central) "kMN" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -21694,28 +21821,22 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/iron, /area/maintenance/disposal/incinerator) +"kMR" = ( +/obj/structure/disposalpipe/multiz/down{ + dir = 4 + }, +/turf/open/openspace, +/area/hallway/primary/central) "kMU" = ( /turf/closed/wall/r_wall/rust, /area/science/mixing) +"kNb" = ( +/turf/open/floor/mineral/plastitanium, +/area/asteroid/paradise/surface) "kNj" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/science/lab) -"kNp" = ( -/obj/machinery/status_display/evac{ - pixel_x = -33 - }, -/obj/structure/table/wood, -/obj/machinery/recharger{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/storage/fancy/cigarettes/cigars/havana{ - pixel_x = 13; - pixel_y = 9 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) "kNq" = ( /obj/effect/decal/cleanable/food/flour, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -21732,9 +21853,6 @@ }, /turf/open/floor/iron/cafeteria, /area/crew_quarters/kitchen) -"kNr" = ( -/turf/open/floor/glass/reinforced, -/area/hallway/primary/fore) "kND" = ( /obj/structure/cable/yellow{ icon_state = "1-8" @@ -21750,19 +21868,26 @@ }, /turf/open/floor/plating, /area/maintenance/department/medical/morgue) -"kNT" = ( -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","rd") - }, -/obj/machinery/computer/security/telescreen/toxins{ +"kNR" = ( +/obj/structure/table/wood, +/obj/item/food/grown/flower/poppy{ pixel_x = 1; - pixel_y = 30 + pixel_y = 3 }, -/obj/machinery/doppler_array/research/science{ - dir = 4 +/obj/item/candle/infinite{ + pixel_x = -9; + pixel_y = 12 }, -/turf/open/floor/iron, -/area/science/mixing) +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/pen{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/carpet/green, +/area/chapel/main) "kNX" = ( /obj/structure/railing/corner{ dir = 1 @@ -21783,45 +21908,6 @@ }, /turf/open/floor/iron, /area/hallway/secondary/service) -"kOd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters"; - name = "chemistry Shutters" - }, -/turf/open/floor/plating, -/area/medical/apothecary) -"kOh" = ( -/obj/machinery/power/apc/auto_name/directional/south{ - pixel_y = -24 - }, -/obj/structure/cable/yellow, -/obj/structure/filingcabinet{ - pixel_x = -8 - }, -/obj/structure/filingcabinet/security{ - pixel_x = 8 - }, -/turf/open/floor/wood, -/area/security/detectives_office) -"kOl" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/donkpockets{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/desk_bell{ - pixel_x = -6; - pixel_y = 9 - }, -/obj/item/food/mint, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Chefwindow"; - name = "Chef Window" - }, -/turf/open/floor/iron/white, -/area/crew_quarters/kitchen) "kOu" = ( /obj/effect/turf_decal/siding/wood, /obj/item/kirbyplants/random, @@ -21829,34 +21915,45 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/carpet/green, /area/crew_quarters/cafeteria) -"kOI" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/tile/neutral/half/contrasted, +"kOC" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, /obj/machinery/camera/autoname/directional/north{ - network = list("ss13","cargo") + network = list("ss13","medbay") }, -/obj/machinery/light{ - dir = 1 +/turf/open/floor/iron, +/area/medical/medbay/central) +"kPl" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/structure/sign/departments/minsky/supply/mining{ - pixel_x = -1; - pixel_y = 32 +/turf/open/floor/iron, +/area/maintenance/department/crew_quarters/bar) +"kPv" = ( +/obj/structure/railing{ + dir = 8 }, -/turf/open/floor/iron/dark, -/area/quartermaster/storage) -"kPn" = ( -/obj/effect/turf_decal/siding/dark{ +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"kPy" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ dir = 8 }, /obj/effect/turf_decal/siding/dark{ - dir = 4 + dir = 1 }, -/obj/effect/turf_decal/trimline/dark/warning{ - dir = 8 +/turf/open/floor/iron/dark/side{ + dir = 9 }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/engineering/hallway) +/area/hallway/primary/central) "kPB" = ( /obj/machinery/mineral/stacking_machine{ input_dir = 8; @@ -21915,6 +22012,15 @@ "kQw" = ( /turf/closed/wall, /area/maintenance/department/medical/morgue) +"kQJ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron/dark, +/area/engine/engineering) "kQZ" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -21933,6 +22039,19 @@ }, /turf/open/floor/iron, /area/security/brig) +"kRx" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted, +/obj/structure/table_frame, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/slime_scanner{ + pixel_x = 6; + pixel_y = -2 + }, +/turf/open/floor/iron, +/area/asteroid/paradise) "kRL" = ( /obj/structure/ladder, /turf/open/floor/pod/dark, @@ -21954,54 +22073,102 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark, /area/security/brig) -"kSJ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" +"kSu" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/landmark/start/quartermaster, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/musician/piano{ + icon_state = "piano" + }, +/obj/machinery/light{ + dir = 1; + light_color = "#7AC3FF" + }, +/obj/machinery/camera/autoname/directional/north{ + c_tag = "Captain's Quarters"; + network = list("ss13","public") + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/barsign{ + pixel_x = 1; + pixel_y = 33 + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/cafeteria) +"kSK" = ( +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/obj/machinery/shower{ + name = "emergency shower"; + pixel_y = 7 + }, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/noslip/white, +/area/medical/medbay/central) +"kSY" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/turf_decal/bot, /turf/open/floor/iron, -/area/hallway/primary/central) +/area/maintenance/department/medical/morgue) "kTG" = ( /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/bar) -"kTK" = ( -/obj/structure/fence/cut/medium{ - dir = 8 +"kTN" = ( +/obj/machinery/door/airlock{ + name = "Service Hall"; + req_one_access_txt = "22;25;26;28;35;37;38;46" }, -/turf/open/floor/plating/dirt/planetary, -/area/asteroid/paradise/surface) -"kTW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 + dir = 1 }, -/obj/structure/cable{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/closeup, +/turf/open/floor/iron, +/area/hallway/secondary/service) +"kTQ" = ( +/obj/effect/turf_decal/tile/purple/fourcorners/contrasted, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/engine/engineering) -"kTX" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/machinery/ai_slipper{ - uses = 10 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/iron/tech, -/area/engine/engineering) +/turf/open/floor/iron/white, +/area/science/lab) "kUn" = ( /obj/effect/turf_decal/sand/plating, /obj/structure/flora/ausbushes/sparsegrass, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise/surface) +"kUs" = ( +/obj/structure/table/wood, +/obj/item/gavelblock{ + pixel_x = 1 + }, +/obj/item/gavelhammer{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/library/abandoned) "kUB" = ( /obj/effect/spawner/room/threexfive, /turf/open/floor/plating, @@ -22030,30 +22197,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/science/robotics) -"kVj" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/spawner/randomvend/cola, -/obj/machinery/light, -/obj/machinery/status_display/evac{ - pixel_y = -32 - }, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) -"kVn" = ( -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/cable, -/turf/open/floor/iron/solarpanel, -/area/asteroid/paradise/surface) "kVv" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -22109,6 +22252,39 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/maintenance/department/crew_quarters/dorms) +"kWL" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/item/trash/tray{ + pixel_x = 11 + }, +/obj/item/trash/semki{ + pixel_x = 12; + pixel_y = 4 + }, +/obj/item/trash/can/food/peaches/maint{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/trash/candle{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/trash/can{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","security") + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) "kWO" = ( /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/plating, @@ -22117,36 +22293,18 @@ /obj/machinery/hydroponics/soil, /turf/open/floor/plating/grass, /area/asteroid/paradise/surface) -"kXc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/techmaint/planetary, -/area/asteroid/paradise/surface) -"kXQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" +"kXp" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2{ + dir = 5 }, -/obj/machinery/light{ +/turf/closed/wall, +/area/engine/supermatter) +"kXq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 }, -/obj/structure/disposalpipe/multiz{ - dir = 2 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/engine/engineering) -"kXY" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/catwalk_floor/iron_dark, -/area/asteroid/paradise/surface) +/turf/open/floor/grass/no_border, +/area/hallway/primary/aft) "kXZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -22154,14 +22312,6 @@ }, /turf/open/floor/iron, /area/maintenance/department/crew_quarters/dorms) -"kYp" = ( -/obj/effect/turf_decal/siding/dark/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/hallway/primary/central) "kYy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -22184,22 +22334,6 @@ }, /turf/open/floor/engine, /area/engine/supermatter) -"kZN" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/numbers/two_nine{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/central) -"lab" = ( -/obj/structure/fence/corner{ - dir = 5 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) "lad" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -22230,8 +22364,17 @@ }, /turf/open/floor/iron/dark, /area/engine/atmos) -"law" = ( -/turf/closed/wall/mineral/plastitanium, +"lal" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/catwalk_floor/iron_dark, /area/asteroid/paradise/surface) "laI" = ( /obj/machinery/conveyor/inverted{ @@ -22241,25 +22384,6 @@ /obj/structure/plasticflaps, /turf/open/floor/plating, /area/maintenance/disposal) -"laK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/obj/structure/lattice/catwalk/over, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/mixing) "laO" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -22284,12 +22408,12 @@ /obj/item/kitchen/rollingpin, /turf/open/floor/iron, /area/hallway/secondary/service) -"lby" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 +"lbv" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 1 }, -/turf/open/floor/grass/no_border, -/area/hallway/primary/aft) +/turf/open/floor/glass/reinforced, +/area/medical/medbay/central) "lbA" = ( /obj/structure/disposalpipe/segment{ dir = 2 @@ -22319,6 +22443,21 @@ }, /turf/open/floor/iron, /area/quartermaster/sorting) +"lcN" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/east{ + network = list("ss13","engine","public") + }, +/turf/open/floor/iron/dark, +/area/engineering/hallway) "lcQ" = ( /obj/effect/landmark/start/cyborg, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ @@ -22326,6 +22465,21 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai_upload) +"lcR" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","cargo") + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/departments/minsky/supply/mining{ + pixel_x = -1; + pixel_y = 32 + }, +/turf/open/floor/iron/dark, +/area/quartermaster/storage) "ldp" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -22342,19 +22496,18 @@ }, /turf/open/floor/plating, /area/engine/engineering) -"ldz" = ( -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" +"ldt" = ( +/obj/structure/railing, +/turf/open/openspace, +/area/hallway/primary/fore) +"ldE" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 +/turf/open/floor/iron/dark/side{ + dir = 8 }, -/obj/machinery/atmospherics/components/unary/thermomachine/heater/on, -/turf/open/floor/iron, -/area/engine/atmos) +/area/hallway/primary/central) "lea" = ( /obj/item/beacon{ pixel_y = 3 @@ -22384,22 +22537,6 @@ /obj/effect/spawner/lootdrop/maintenance/two, /turf/open/floor/iron, /area/maintenance/department/crew_quarters/dorms) -"lfc" = ( -/obj/structure/filingcabinet/chestdrawer{ - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - alpha = 180; - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/iron/dark, -/area/security/warden) "lfe" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -22438,31 +22575,56 @@ }, /turf/open/floor/wood/broken, /area/crew_quarters/cafeteria) +"lfL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + alpha = 180; + dir = 8 + }, +/obj/item/radio/intercom{ + dir = 1; + pixel_x = -30; + pixel_y = -2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"lfV" = ( +/obj/effect/turf_decal/box/white, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) "lgt" = ( /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/plating, /area/maintenance/department/chapel) -"lgM" = ( -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/mineral/plastitanium, -/area/asteroid/paradise/surface) "lhc" = ( /obj/structure/railing{ dir = 8 }, /turf/open/openspace, /area/medical/medbay/central) -"lhm" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 8 - }, -/obj/structure/railing{ - dir = 8 +"lhh" = ( +/obj/machinery/ai_slipper{ + uses = 10 }, -/turf/open/floor/iron/dark/side{ - dir = 10 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/hallway/primary/central) +/turf/open/floor/iron, +/area/science/mixing) "lhn" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted, /obj/effect/landmark/start/security_officer, @@ -22475,20 +22637,45 @@ /obj/structure/girder/displaced, /turf/open/floor/plating, /area/engine/atmos) +"lhu" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/south{ + pixel_y = -24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/iron/white, +/area/science/explab) "lhB" = ( /obj/effect/turf_decal/sand/plating, /obj/structure/railing, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise/surface) -"lig" = ( -/obj/structure/railing/corner{ - dir = 4 +"lhJ" = ( +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/effect/turf_decal/siding/dark/corner, -/turf/open/floor/iron/dark/side{ - dir = 5 +/obj/machinery/door/window/northleft{ + dir = 8; + name = "Kitchen Delivery"; + req_one_access_txt = "28;25;35" }, -/area/hallway/primary/central) +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/iron/freezer, +/area/crew_quarters/kitchen/coldroom) +"lhR" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) "lii" = ( /obj/machinery/computer/secure_data{ dir = 8 @@ -22569,23 +22756,10 @@ /obj/effect/spawner/room/threexfive, /turf/open/floor/plating, /area/maintenance/department/bridge) -"ljK" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Chefwindow"; - name = "Chef Window" - }, -/obj/item/toy/figure/chef{ - pixel_x = -4; - pixel_y = -1 - }, -/turf/open/floor/iron/white, -/area/crew_quarters/kitchen) +"ljz" = ( +/obj/effect/landmark/loneops, +/turf/open/floor/plating/beach/sand, +/area/asteroid/paradise/surface/sand) "ljQ" = ( /turf/closed/wall, /area/maintenance/department/eva) @@ -22601,6 +22775,15 @@ }, /turf/open/floor/iron/white, /area/science/robotics) +"lkS" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/hallway/primary/aft) "llb" = ( /obj/item/paper/fluff/holodeck/disclaimer{ pixel_x = -4; @@ -22611,22 +22794,24 @@ }, /turf/open/floor/carpet/green, /area/crew_quarters/cafeteria) -"llk" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/sand/plating, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron/techmaint/planetary, -/area/asteroid/paradise/surface) "lly" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 }, /turf/open/floor/iron/tech, /area/engine/atmos) +"llA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "brigentrance"; + name = "Brig Blast Door" + }, +/turf/open/floor/plating, +/area/security/brig) "llI" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -22644,30 +22829,18 @@ }, /turf/open/floor/carpet/red, /area/crew_quarters/heads/hos) -"llU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/multiz/down{ - dir = 4 - }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/hallway/primary/fore) -"lmC" = ( -/obj/structure/railing{ - dir = 6 - }, -/obj/structure/lattice, -/turf/open/openspace, -/area/hallway/primary/fore) "lmF" = ( /obj/machinery/atmospherics/pipe/simple/general/visible, /obj/effect/spawner/structure/window/depleteduranium, /turf/open/floor/plating, /area/maintenance/disposal/incinerator) +"lmY" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron, +/area/hallway/primary/fore) "lnp" = ( /obj/structure/table/wood, /obj/effect/turf_decal/siding/wood{ @@ -22688,6 +22861,9 @@ }, /turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat/maint) +"lnv" = ( +/turf/open/floor/iron/dark, +/area/hallway/primary/central) "lnG" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -22698,37 +22874,41 @@ }, /turf/open/floor/iron/techmaint/planetary, /area/asteroid/paradise/surface) -"lnH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" +"lnK" = ( +/obj/structure/filingcabinet/chestdrawer{ + pixel_y = 2 }, -/obj/structure/cable/yellow{ - icon_state = "1-8" +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + alpha = 180; + dir = 4 }, -/obj/machinery/firealarm/directional/east, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 +/obj/structure/cable/yellow{ + icon_state = "0-2" }, /turf/open/floor/iron/dark, -/area/engineering/hallway) +/area/security/warden) "lnM" = ( /obj/structure/flora/rock/pile, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise/surface) -"lnY" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ +"lnW" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 }, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/obj/machinery/light{ + dir = 4 }, -/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/power/apc/auto_name/directional/east{ + pixel_x = 24 + }, +/obj/structure/cable/yellow, /turf/open/floor/iron/tech, -/area/science/mixing) +/area/science/mixing/chamber) "lob" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -22754,56 +22934,42 @@ }, /turf/open/floor/iron/dark, /area/engine/atmos) -"loD" = ( -/turf/closed/wall, -/area/library/abandoned) -"loS" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/openspace, -/area/engineering/hallway) -"loV" = ( -/obj/structure/fence/corner{ - dir = 1 +"loM" = ( +/obj/structure/chair/fancy/sofa/old/left{ + dir = 8 }, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) -"lpc" = ( -/obj/structure/railing{ - dir = 5 +/obj/effect/turf_decal/siding/wood{ + dir = 6 }, -/obj/effect/turf_decal/siding/dark{ - dir = 5 +/obj/effect/turf_decal/siding/white, +/obj/structure/railing, +/obj/item/radio/intercom{ + dir = 1; + pixel_x = 29; + pixel_y = -3 }, -/obj/structure/closet/firecloset/full, -/obj/effect/turf_decal/bot, -/obj/item/extinguisher/advanced{ - pixel_x = -1; - pixel_y = -2 +/turf/open/floor/carpet/green, +/area/crew_quarters/cafeteria) +"lpZ" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/asteroid/planetary, +/area/asteroid/paradise) +"lqc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/turf/open/floor/iron/dark, -/area/hallway/primary/central) -"lpq" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 +/obj/machinery/rnd/production/techfab/department/cargo, +/obj/machinery/power/apc/auto_name/directional/east{ + pixel_x = 24 }, -/obj/machinery/light, /obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/ai_slipper{ - uses = 10 + icon_state = "0-8" }, -/turf/open/floor/iron/white/side{ - dir = 1 +/obj/machinery/light{ + dir = 4 }, -/area/science/research) -"lpZ" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/asteroid/planetary, -/area/asteroid/paradise) +/turf/open/floor/iron/dark, +/area/quartermaster/storage) "lqn" = ( /obj/item/radio/intercom{ dir = 1; @@ -22822,6 +22988,11 @@ }, /turf/open/floor/wood, /area/crew_quarters/theatre/backstage) +"lqq" = ( +/obj/structure/railing, +/obj/structure/lattice, +/turf/open/openspace, +/area/engineering/hallway) "lqI" = ( /obj/effect/turf_decal/bot, /obj/structure/cable/yellow{ @@ -22838,38 +23009,19 @@ }, /turf/open/floor/iron, /area/janitor) -"lrC" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8; - initialize_directions = 8 - }, -/turf/open/floor/iron/tech, -/area/engine/engineering) -"lrQ" = ( -/obj/effect/turf_decal/box, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"lrW" = ( -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","engine") - }, -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output/layer2, -/turf/open/floor/engine/n2, -/area/engine/atmos) "lsj" = ( /obj/structure/lattice/catwalk/over, /turf/open/openspace, /area/ai_monitored/turret_protected/aisat/maint) +"lsm" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/tree/jungle, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating/asteroid/planetary, +/area/asteroid/paradise/surface) "lsu" = ( /obj/machinery/computer/bank_machine{ dir = 1 @@ -22899,6 +23051,19 @@ /obj/item/reagent_containers/glass/bucket, /turf/open/floor/prison/dark, /area/security/prison) +"lsV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/iron/dark, +/area/engine/engineering) "ltd" = ( /obj/structure/lattice/catwalk/over, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -22909,14 +23074,6 @@ }, /turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat/maint) -"lti" = ( -/obj/structure/table, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/maintenance/department/medical/morgue) "ltt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate, @@ -22932,65 +23089,17 @@ /obj/structure/cable/yellow, /turf/open/floor/plating, /area/crew_quarters/heads/hor) -"ltD" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridgedoors"; - name = "Bridge Access Blast Door" - }, -/turf/open/floor/iron/dark, -/area/bridge) "ltJ" = ( /obj/effect/turf_decal/sand/plating, /obj/structure/chair/fancy/bench/pew/left, /turf/open/floor/iron, /area/crew_quarters/dorms) -"ltK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 4 - }, -/obj/structure/railing, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible/layer5{ - dir = 4 - }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/engine/atmos) "ltQ" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 }, /turf/open/floor/iron, /area/maintenance/department/crew_quarters/dorms) -"luf" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron, -/area/maintenance/department/crew_quarters/bar) "luk" = ( /obj/structure/flora/ausbushes/ywflowers, /turf/open/floor/plating/asteroid/planetary, @@ -23003,10 +23112,19 @@ "luF" = ( /turf/open/floor/iron, /area/maintenance/department/medical/morgue) -"lvj" = ( -/obj/structure/bookcase/random/adult, -/turf/open/floor/plating, -/area/library/abandoned) +"lvc" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/item/wrench, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/tech, +/area/engine/engineering) "lvV" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 6 @@ -23019,36 +23137,39 @@ }, /turf/open/floor/iron/cafeteria, /area/crew_quarters/kitchen) -"lwi" = ( -/obj/effect/turf_decal/stripes/line{ +"lwh" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + alpha = 180; dir = 1 }, -/obj/item/clothing/under/rank/cargo/exploration{ - pixel_x = 5; - pixel_y = -3 +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","security") }, -/obj/item/radio/headset/headset_exploration{ - pixel_x = -1; - pixel_y = -1 +/obj/machinery/button/door{ + id = "armory"; + name = "Armory Shutter Toggle"; + pixel_x = -32; + pixel_y = 1; + req_access_txt = "3" }, -/obj/effect/decal/cleanable/blood/gibs/torso, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/iron/techmaint/planetary, -/area/asteroid/paradise/surface) -"lwz" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "4-8" +/obj/structure/bed/dogbed/walter, +/mob/living/simple_animal/pet/dog/bullterrier/walter{ + density = 0; + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/stack/sheet/bone{ + pixel_x = 6; + pixel_y = -6 }, -/obj/structure/sign/warning/pods{ - pixel_x = 1; - pixel_y = 32 +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/security/warden) +"lwo" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) +/turf/open/floor/plating/asteroid/planetary, +/area/asteroid/paradise/surface) "lwX" = ( /obj/effect/turf_decal/tile/dark_green/fourcorners/contrasted, /obj/machinery/door/airlock/medical/glass{ @@ -23072,34 +23193,6 @@ /obj/effect/spawner/lootdrop/maintenance/two, /turf/open/floor/iron, /area/maintenance/department/crew_quarters/bar) -"lxp" = ( -/obj/machinery/vending/wardrobe/cargo_wardrobe, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/quartermaster/storage) -"lxu" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = 9; - pixel_y = 6 - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/pen{ - pixel_x = -4; - pixel_y = 5 - }, -/turf/open/floor/iron, -/area/hallway/primary/aft) "lxZ" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -23113,6 +23206,15 @@ }, /turf/open/floor/iron, /area/maintenance/department/science/xenobiology) +"lyd" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/iron/white, +/area/crew_quarters/heads/cmo) "lys" = ( /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/plating, @@ -23158,28 +23260,51 @@ /obj/machinery/space_heater, /turf/open/floor/iron, /area/maintenance/department/engine) -"lzc" = ( -/obj/machinery/computer/security/mining, -/obj/effect/turf_decal/tile/brown/half/contrasted{ +"lyZ" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/iron/grid/steel, +/area/medical/patients_rooms) +"lzi" = ( +/obj/machinery/door/poddoor/shutters{ + id = "exploration" + }, +/obj/machinery/button/door{ + desc = "A remote control switch."; + id = "exploration"; + name = "Exploration Shuttle Shutters"; + pixel_y = 24 + }, +/turf/open/floor/mineral/titanium, +/area/asteroid/paradise/surface) +"lzo" = ( +/obj/machinery/door/window/northleft{ + dir = 2 + }, +/turf/open/floor/iron/dark/side, +/area/hallway/primary/fore) +"lzs" = ( +/obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/structure/window/reinforced{ - dir = 8 +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/multiz{ + dir = 2 }, -/turf/open/floor/iron, -/area/bridge) +/turf/open/floor/iron/dark, +/area/quartermaster/storage) "lAn" = ( /obj/effect/turf_decal/sand/plating, /obj/structure/girder, /turf/open/floor/plating, /area/engine/atmos) -"lAq" = ( -/obj/item/radio/intercom{ - pixel_x = -31; - pixel_y = -2 - }, -/turf/open/openspace, -/area/engineering/hallway) "lAt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/yellow{ @@ -23204,10 +23329,17 @@ "lAN" = ( /turf/closed/wall/mineral/wood, /area/asteroid/paradise/surface) -"lBL" = ( -/obj/structure/barricade/wooden, +"lBD" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance/three, +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, /turf/open/floor/plating, -/area/library/abandoned) +/area/maintenance/department/engine/atmos) "lBS" = ( /obj/effect/spawner/lootdrop/glowstick/lit, /turf/open/floor/iron, @@ -23227,47 +23359,41 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/maintenance/department/bridge) -"lCH" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/department/medical/central) -"lCI" = ( -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/obj/machinery/camera/autoname/directional/east{ - c_tag = "Interrogation room"; - name = "Interrogation room"; - network = list("interrogation") - }, -/obj/machinery/light_switch{ - pixel_x = 21; - pixel_y = 22 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron, -/area/security/brig) -"lCL" = ( -/obj/structure/railing, -/obj/effect/turf_decal/tile/blue/half{ - dir = 4 +"lCc" = ( +/obj/machinery/telecomms/relay/preset/auto, +/obj/machinery/door/window/northleft{ + name = "Engi Desk"; + req_one_access_txt = "32;19" }, -/obj/effect/turf_decal/siding/white, +/obj/structure/window/reinforced/survival_pod, +/obj/structure/cable/yellow, /obj/structure/cable/yellow{ - icon_state = "1-4" + icon_state = "1-2" }, +/turf/open/floor/plating, +/area/hallway/primary/fore) +"lCv" = ( +/obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/structure/disposalpipe/sorting/mail/destination/genetics{ +/obj/structure/cable/yellow, +/obj/machinery/door/poddoor/preopen{ + id = "Engidesk"; + name = "engineering Security Door" + }, +/turf/open/floor/plating, +/area/storage/tech) +"lCB" = ( +/turf/closed/wall/r_wall/rust, +/area/asteroid/paradise) +"lCM" = ( +/obj/structure/chair/stool/directional/west, +/obj/effect/landmark/start/medical_doctor, +/obj/structure/disposalpipe/multiz/down{ dir = 8 }, -/turf/open/floor/iron/white, +/turf/open/floor/iron, /area/medical/medbay/central) "lCP" = ( /obj/effect/turf_decal/stripes/corner{ @@ -23302,6 +23428,33 @@ }, /turf/open/floor/iron/dark, /area/bridge) +"lDk" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/evac{ + dir = 1 + }, +/obj/structure/disposalpipe/multiz, +/turf/open/floor/iron, +/area/maintenance/department/science/xenobiology) +"lDA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/open/floor/iron/tech, +/area/engine/engineering) +"lDM" = ( +/obj/structure/fence/corner{ + dir = 1 + }, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) "lDU" = ( /obj/effect/turf_decal/trimline/white/line{ dir = 4 @@ -23314,43 +23467,15 @@ }, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise/surface) +"lEc" = ( +/obj/structure/fence{ + dir = 8 + }, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) "lEg" = ( /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/aisat/foyer) -"lEj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/science/mixing) -"lEl" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/hallway/primary/aft) -"lEo" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/effect/turf_decal/tile/dark_green/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/maintenance/department/medical/morgue) -"lEp" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) "lEt" = ( /obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ alpha = 180 @@ -23388,34 +23513,16 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/closed/wall/r_wall, /area/engine/engineering) +"lEX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/hallway/primary/aft) "lEY" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/closed/wall, /area/quartermaster/sorting) -"lFh" = ( -/obj/structure/closet/crate/science, -/obj/item/circuitboard/computer/shuttle/exploration_shuttle, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/circuitboard/machine/shuttle/heater, -/turf/open/floor/mineral/titanium, -/area/asteroid/paradise/surface) -"lFj" = ( -/obj/structure/closet/l3closet/virology, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/storage/box/beakers{ - pixel_x = 4; - pixel_y = 14 - }, -/obj/item/storage/bag/bio, -/obj/item/slime_scanner, -/obj/item/storage/box/syringes, -/turf/open/floor/iron/grid/steel, -/area/science/xenobiology) "lFC" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/stripes/line{ @@ -23435,55 +23542,45 @@ /obj/structure/grille/broken, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/dorms) -"lFQ" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/atmos_waste/layer4{ - dir = 4 +"lFZ" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" }, -/turf/open/floor/plating/asteroid/basalt/planetary, -/area/asteroid/paradise) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/aft) "lGc" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/space_heater, /turf/open/floor/iron, /area/maintenance/department/medical/morgue) -"lGn" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/asteroid/paradise/surface) -"lGq" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/pen/red, -/obj/machinery/newscaster{ - pixel_y = 33 +"lGo" = ( +/obj/structure/chair{ + dir = 8 }, -/obj/item/kirbyplants{ - pixel_x = 19; - pixel_y = 13 +/obj/structure/railing/corner{ + dir = 8 }, -/obj/item/flashlight/lamp{ - pixel_x = -12; - pixel_y = 8 +/obj/effect/turf_decal/siding/white/corner{ + dir = 8 }, -/turf/open/floor/wood, -/area/library/abandoned) +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) "lGG" = ( /turf/open/floor/prison, /area/security/prison) -"lHk" = ( -/obj/effect/turf_decal/sand/plating, -/obj/item/chair/plastic, +"lHB" = ( /obj/effect/turf_decal/stripes/line{ - dir = 4 + dir = 1 }, -/turf/open/floor/iron/techmaint/planetary, -/area/asteroid/paradise/surface) +/turf/open/floor/iron, +/area/maintenance/department/chapel) "lHU" = ( /obj/effect/turf_decal/delivery, /obj/structure/cable/yellow{ @@ -23502,6 +23599,12 @@ dir = 4 }, /area/asteroid/paradise/surface) +"lIf" = ( +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/hallway/primary/aft) "lIt" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -27 @@ -23515,39 +23618,23 @@ /obj/machinery/portable_atmospherics/canister, /turf/open/floor/iron, /area/maintenance/disposal/incinerator) -"lID" = ( -/obj/structure/fence, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) -"lIF" = ( -/obj/structure/cable{ - icon_state = "1-8" +"lIu" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/effect/turf_decal/trimline/dark/warning{ dir = 4 }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/engine/engineering) +/turf/open/floor/iron/dark, +/area/engineering/hallway) "lII" = ( /obj/structure/closet/cardboard, /obj/effect/spawner/lootdrop/maintenance/two, /turf/open/floor/iron, /area/maintenance/department/science/xenobiology) -"lIK" = ( -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "test Chamber Blast Door" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/closeup{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/explab) "lIL" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch"; @@ -23558,6 +23645,16 @@ }, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) +"lIQ" = ( +/obj/effect/turf_decal/tile/purple/fourcorners/contrasted, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/science/research) "lJj" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -23570,29 +23667,34 @@ }, /turf/open/floor/iron, /area/engine/atmos) -"lJE" = ( -/obj/structure/table/wood, -/obj/item/wrench, -/obj/item/circuitboard/machine/paystand, -/turf/open/floor/iron, -/area/hallway/primary/fore) "lJP" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, /area/engine/atmos) -"lJZ" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ +"lJY" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron, +/area/asteroid/paradise) +"lKa" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/microwave{ - pixel_x = -2; - pixel_y = 5 +/turf/open/floor/plating, +/area/maintenance/department/engine) +"lKm" = ( +/obj/structure/disposalpipe/junction, +/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-8" }, -/obj/machinery/digital_clock/directional/north, -/turf/open/floor/prison/dark, -/area/security/prison) +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/iron/grid/steel, +/area/medical/patients_rooms) "lKR" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/stripes/line{ @@ -23626,49 +23728,39 @@ }, /turf/open/floor/engine, /area/maintenance/disposal/incinerator) -"lLT" = ( -/obj/effect/turf_decal/tile/dark_red/corner_ramp{ - alpha = 180; - color = "#DE3A3A"; - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/security/brig) "lMj" = ( /obj/structure/fence/door/opened{ dir = 8 }, /turf/open/floor/plating/dirt/planetary, /area/asteroid/paradise/surface/grass) -"lMI" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/maintenance/department/engine) -"lOf" = ( -/obj/structure/sign/departments/minsky/security/command, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/captain) -"lOl" = ( -/obj/effect/decal/cleanable/dirt, +"lMQ" = ( /obj/structure/cable/yellow{ - icon_state = "0-8" + icon_state = "0-4" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +/obj/machinery/disposal/bin, +/obj/machinery/newscaster{ + pixel_y = -30 }, -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 +/obj/effect/turf_decal/bot{ + dir = 1 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/obj/machinery/light, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/crew_quarters/heads/cmo) +"lNu" = ( +/turf/closed/wall/r_wall, +/area/medical/medbay/central) +"lOf" = ( +/obj/structure/sign/departments/minsky/security/command, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/captain) "lOq" = ( /obj/structure/rack, /obj/effect/turf_decal/bot, @@ -23744,23 +23836,26 @@ }, /turf/open/floor/wood, /area/crew_quarters/heads/captain) +"lPj" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/warning/pods{ + pixel_x = 1; + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) "lPu" = ( /obj/structure/railing{ dir = 4 }, /turf/open/openspace, /area/asteroid/paradise) -"lPI" = ( -/obj/effect/turf_decal/siding/dark/corner, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/corner, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/engineering/hallway) "lPQ" = ( /obj/machinery/teleport/hub, /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, @@ -23797,6 +23892,24 @@ }, /turf/open/floor/carpet/blue, /area/crew_quarters/cafeteria) +"lQd" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/autoname/directional/west, +/obj/structure/sign/warning/nosmoking/circle{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/grid/steel, +/area/hydroponics) "lQi" = ( /turf/open/floor/carpet/purple, /area/crew_quarters/dorms) @@ -23810,6 +23923,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroid/basalt/planetary, /area/asteroid/paradise) +"lQr" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/numbers/two_nine, +/turf/open/floor/iron, +/area/maintenance/department/science/xenobiology) "lQx" = ( /obj/machinery/computer/atmos_alert{ dir = 1 @@ -23823,6 +23949,14 @@ }, /turf/open/floor/iron, /area/engine/atmos) +"lQy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/glowstick/lit, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/maintenance/department/engine/atmos) "lQZ" = ( /obj/effect/turf_decal/tile/purple/half/contrasted, /obj/structure/sink{ @@ -23853,11 +23987,28 @@ /obj/effect/landmark/start/captain, /turf/open/floor/carpet/blue, /area/crew_quarters/heads/captain/private) +"lRf" = ( +/obj/machinery/atmospherics/components/unary/shuttle/heater{ + dir = 1 + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 1 + }, +/turf/open/floor/plating/dirt/planetary, +/area/asteroid/paradise/surface) "lRg" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/plating, /area/maintenance/department/security/brig) +"lRA" = ( +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test Chamber Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/explab) "lRE" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/effect/turf_decal/bot, @@ -23902,30 +24053,37 @@ /obj/effect/turf_decal/stripes/closeup, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/dorms) -"lTj" = ( -/obj/structure/rack, -/obj/item/stack/cable_coil/white, -/obj/item/circuitboard/machine/rtg/advanced{ - pixel_x = -1; - pixel_y = -3 +"lTM" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/pen/red, +/obj/machinery/newscaster{ + pixel_y = 33 }, -/turf/open/floor/plating/asteroid/planetary, -/area/asteroid/paradise/surface) -"lTB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/fancy/comfy{ - color = "#666666"; - dir = 8 +/obj/item/kirbyplants{ + pixel_x = 19; + pixel_y = 13 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +/obj/item/flashlight/lamp{ + pixel_x = -12; + pixel_y = 8 }, -/turf/open/floor/carpet/purple, +/turf/open/floor/wood, /area/library/abandoned) "lTW" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/medical/storage) +"lUc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/cable_coil/cut/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/library/abandoned) "lUd" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 28 @@ -24006,30 +24164,20 @@ /obj/structure/railing/corner, /turf/open/openspace, /area/medical/medbay/central) -"lVH" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 +"lVB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/engine/engineering) +/turf/open/floor/grass/no_border, +/area/hallway/primary/aft) +"lVC" = ( +/obj/structure/lattice/catwalk/over, +/obj/structure/ladder, +/turf/open/openspace, +/area/engineering/hallway) "lVP" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable/yellow{ @@ -24075,11 +24223,20 @@ dir = 8 }, /area/asteroid/paradise/surface) +"lWF" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) "lWH" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/iron, /area/maintenance/department/bridge) +"lWK" = ( +/obj/structure/fence, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) "lWU" = ( /obj/effect/turf_decal/tile/dark_green/fourcorners/contrasted, /obj/effect/decal/cleanable/food/tomato_smudge, @@ -24097,23 +24254,6 @@ }, /turf/open/floor/iron, /area/hydroponics) -"lXC" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) -"lXD" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 6 - }, -/obj/effect/turf_decal/siding/dark/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/dark/corner{ - dir = 1 - }, -/obj/machinery/light/small, -/turf/open/floor/iron/dark, -/area/engineering/hallway) "lXL" = ( /obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/tile/black/opposingcorners{ @@ -24123,38 +24263,6 @@ /obj/structure/displaycase/labcage, /turf/open/floor/iron/white, /area/crew_quarters/heads/hor) -"lXT" = ( -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/rnd/production/protolathe/department/science, -/turf/open/floor/iron, -/area/science/lab) -"lYh" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/iron, -/area/engine/engineering) "lYF" = ( /obj/machinery/power/terminal{ dir = 1 @@ -24173,25 +24281,35 @@ }, /turf/open/floor/engine, /area/ai_monitored/turret_protected/ai) -"lYL" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" +"lYU" = ( +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = -32; + pixel_y = -33; + receive_ore_updates = 1 }, -/obj/machinery/ai_slipper{ - uses = 10 +/obj/machinery/airalarm/directional/west, +/obj/machinery/monkey_recycler, +/obj/machinery/camera/autoname/directional/west{ + c_tag = "Xenobiology Lab"; + name = "Xeno camera"; + network = list("ss13","rd","xeno") }, -/turf/open/floor/iron/showroomfloor, -/area/crew_quarters/fitness/recreation) -"lZb" = ( -/obj/structure/railing{ - dir = 6 +/turf/open/floor/iron/grid/steel, +/area/science/xenobiology) +"lYV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/fancy/comfy{ + color = "#666666"; + dir = 8 }, -/obj/effect/turf_decal/siding/dark{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/hallway/primary/central) +/turf/open/floor/carpet/purple, +/area/library/abandoned) "lZd" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24199,17 +24317,30 @@ /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/plating, /area/maintenance/department/bridge) -"lZj" = ( -/obj/structure/sign/departments/minsky/supply/hydroponics{ - pixel_x = -33 - }, -/obj/effect/turf_decal/tile/dark_green, -/turf/open/floor/iron, -/area/maintenance/department/medical/morgue) "lZV" = ( /obj/effect/turf_decal/sand/plating, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise) +"mab" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) +"mam" = ( +/obj/machinery/dna_scannernew, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom{ + dir = 1; + pixel_x = 1; + pixel_y = 23 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron, +/area/medical/genetics/cloning) "man" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ @@ -24223,18 +24354,38 @@ }, /turf/open/floor/iron/freezer, /area/crew_quarters/kitchen/coldroom) -"maC" = ( +"mao" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "1-8" +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/structure/cable/yellow, -/obj/machinery/door/poddoor/preopen{ - id = "brigentrance"; - name = "Brig Blast Door" +/obj/machinery/door/poddoor{ + id = "AIwindows"; + name = "AI View Blast Door" }, /turf/open/floor/plating, -/area/security/warden) +/area/ai_monitored/turret_protected/ai) +"maJ" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/tech, +/area/science/mixing/chamber) "maU" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -24253,6 +24404,15 @@ }, /turf/open/floor/iron/freezer, /area/crew_quarters/kitchen/coldroom) +"mbp" = ( +/obj/machinery/computer/security/qm{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/central) "mby" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -24298,28 +24458,23 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/dark, /area/medical/morgue) +"mcN" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/closet/secure_closet/captains, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/reagent_containers/food/drinks/flask/gold{ + pixel_x = 3; + pixel_y = 8 + }, +/obj/item/pinpointer/nuke{ + pixel_y = 5 + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/heads/captain/private) "mcO" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/sepia, /area/quartermaster/warehouse) -"mcZ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/medical/genetics/cloning) "mdk" = ( /obj/structure/table, /obj/item/stack/sheet/mineral/plasma/fifty{ @@ -24382,22 +24537,18 @@ "mev" = ( /turf/closed/wall/r_wall, /area/quartermaster/qm) -"meI" = ( -/obj/effect/turf_decal/box/white, -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4 +"meL" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted, +/turf/open/floor/iron/dark/corner{ + dir = 1 }, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) -"mfJ" = ( -/obj/effect/turf_decal/box, -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/hallway/primary/central) +"mfi" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron, -/area/hallway/primary/fore) +/turf/open/floor/iron/dark, +/area/hallway/primary/aft) "mgk" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -24412,6 +24563,10 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/maintenance/department/bridge) +"mgu" = ( +/obj/effect/landmark/loneops, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface/grass) "mgK" = ( /obj/structure/railing, /turf/open/openspace, @@ -24461,22 +24616,6 @@ /obj/effect/turf_decal/numbers/two_nine, /turf/open/floor/iron, /area/maintenance/department/cargo) -"mhD" = ( -/turf/open/floor/plating/asteroid/planetary, -/area/asteroid/paradise/surface/sand) -"mhE" = ( -/obj/structure/window/plasma/reinforced{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/rad_collector/anchored, -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/supermatter) "mhI" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -24490,11 +24629,6 @@ }, /turf/open/floor/iron, /area/science/research) -"mic" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/iron, -/area/hallway/primary/aft) "mik" = ( /obj/structure/cable{ icon_state = "4-8" @@ -24522,11 +24656,6 @@ /obj/item/paicard, /turf/open/floor/iron/dark, /area/maintenance/department/crew_quarters/dorms) -"miE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/security/warden) "mjt" = ( /obj/machinery/portable_atmospherics/canister, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ @@ -24539,36 +24668,6 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/plating, /area/maintenance/department/security/brig) -"mjX" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/pen{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/reagent_containers/dropper{ - pixel_x = -3; - pixel_y = -4 - }, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = 9; - pixel_y = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/item/clothing/glasses/science{ - pixel_x = -4 - }, -/obj/machinery/digital_clock/directional/north, -/turf/open/floor/iron, -/area/science/lab) "mjZ" = ( /obj/machinery/flasher{ id = "AI"; @@ -24597,6 +24696,25 @@ luminosity = 2 }, /area/ai_monitored/turret_protected/ai) +"mkh" = ( +/turf/open/openspace, +/area/engineering/hallway) +"mkn" = ( +/obj/machinery/shower{ + dir = 8; + name = "emergency shower"; + pixel_y = -3 + }, +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/circuit/telecomms/server, +/area/science/xenobiology) "mks" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -24632,60 +24750,38 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/tech, /area/engine/atmos) -"mkQ" = ( -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/open/floor/iron, -/area/hallway/primary/aft) "mll" = ( /turf/open/openspace, /area/maintenance/department/crew_quarters/bar) +"mlA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" + }, +/turf/open/floor/plating, +/area/security/prison) "mlC" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/closed/wall/r_wall, /area/security/brig) -"mlY" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/table, -/obj/item/pipe_dispenser{ - pixel_x = 1; - pixel_y = 12 - }, -/obj/item/pipe_dispenser{ - pixel_y = 7 - }, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/glasses/meson{ - pixel_y = 1 - }, -/obj/item/clothing/glasses/meson{ - pixel_x = 2 - }, -/obj/item/card/id/job/atmospheric_technician{ - access = list(11); - pixel_y = -5 +"mlP" = ( +/obj/structure/railing{ + dir = 4 }, -/obj/item/clothing/glasses/meson/engine{ - pixel_y = -6 +/obj/effect/turf_decal/siding/dark{ + dir = 4 }, -/obj/item/clothing/head/beret/atmos{ - pixel_x = 4; - pixel_y = -2 +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/layer_manifold/visible{ +/turf/open/floor/iron/dark/side{ dir = 4 }, -/turf/open/floor/iron/dark, -/area/engine/engineering) +/area/hallway/primary/central) "mma" = ( /obj/item/toy/beach_ball/holoball, /obj/effect/turf_decal/bot, @@ -24736,32 +24832,49 @@ /obj/effect/spawner/lootdrop/maintenance/five, /turf/open/openspace, /area/maintenance/department/engine/atmos) -"mny" = ( -/obj/machinery/seed_extractor, -/obj/machinery/status_display/evac{ - pixel_y = -32 +"mnM" = ( +/obj/effect/spawner/structure/window, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/maintenance/department/medical/morgue) -"mnV" = ( -/obj/effect/decal/cleanable/robot_debris, -/turf/open/floor/plating/airless, -/area/science/mixing) -"moy" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 8 +/turf/open/floor/plating, +/area/chapel/main) +"mnQ" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/obj/machinery/vending/cigarette, +/turf/open/floor/iron/dark, +/area/bridge/meeting_room) +"mnS" = ( +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 7 }, -/obj/structure/disposalpipe/trunk{ +/obj/structure/sign/directions/command{ dir = 1 }, -/obj/machinery/disposal/bin, -/turf/open/floor/carpet/orange, -/area/quartermaster/qm) +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_y = -6 + }, +/turf/closed/wall, +/area/hallway/primary/aft) +"mnV" = ( +/obj/effect/decal/cleanable/robot_debris, +/turf/open/floor/plating/airless, +/area/science/mixing) +"moh" = ( +/obj/machinery/firealarm/directional/east, +/obj/effect/spawner/lootdrop/grille_or_trash, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"mon" = ( +/obj/effect/turf_decal/sand/plating, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium, +/area/asteroid/paradise/surface) "moz" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/asteroid/planetary, @@ -24783,6 +24896,24 @@ /obj/effect/turf_decal/stripes/closeup, /turf/open/floor/plating, /area/science/mixing) +"moT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible/layer5{ + dir = 9 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/engine/engineering) "moU" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -24792,48 +24923,63 @@ }, /turf/open/floor/iron/white/side, /area/science/research) -"mpj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"moV" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) -"mpI" = ( -/obj/structure/sign/departments/restroom, -/turf/closed/wall/mineral/titanium/survival/nodiagonal, -/area/hallway/primary/fore) -"mpS" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 +/obj/structure/cable/yellow{ + icon_state = "2-4" }, -/obj/structure/chair/fancy/bench, /obj/structure/disposalpipe/segment{ - dir = 8 + dir = 9 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 1; - pixel_y = 32 +/turf/open/floor/iron, +/area/maintenance/department/science/xenobiology) +"mpq" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_y = -27 }, /turf/open/floor/iron, -/area/security/prison) -"mqv" = ( -/obj/effect/decal/cleanable/dirt, +/area/medical/surgery) +"mpz" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/obj/effect/turf_decal/siding/white{ + alpha = 100 + }, +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/iron/white, +/area/crew_quarters/fitness/recreation) +"mpH" = ( +/obj/structure/table/reinforced, /obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "qm_warehouse"; - name = "warehouse Shutters" +/obj/machinery/door/window/northright{ + dir = 2; + name = "Engi Desk"; + req_one_access_txt = "32;19" }, -/obj/machinery/button/door{ - id = "qm_warehouse"; - name = "Warehouse Door Control"; - pixel_x = 32; - pixel_y = 1; - req_access_txt = "31" +/obj/item/toy/figure/engineer{ + pixel_x = 3; + pixel_y = -1 }, -/turf/open/floor/iron/sepia, -/area/quartermaster/warehouse) +/obj/machinery/door/poddoor/preopen{ + id = "Engidesk"; + name = "engineering Security Door" + }, +/turf/open/floor/iron/dark, +/area/engine/engineering) "mqS" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 @@ -24843,14 +24989,15 @@ }, /turf/open/floor/iron/showroomfloor, /area/crew_quarters/fitness/recreation) -"mrg" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 4 +"mrb" = ( +/obj/structure/railing/corner{ + dir = 8 }, -/turf/open/floor/iron/dark/side{ - dir = 4 +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 }, -/area/hallway/primary/central) +/turf/open/floor/iron, +/area/hallway/primary/aft) "mrx" = ( /obj/structure/railing/corner{ dir = 8 @@ -24864,25 +25011,6 @@ }, /turf/open/floor/carpet/purple, /area/crew_quarters/cafeteria) -"msj" = ( -/obj/machinery/power/apc/auto_name/directional/west{ - pixel_x = -24 - }, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/hallway/primary/central) "mss" = ( /obj/structure/railing{ dir = 1 @@ -24917,20 +25045,6 @@ }, /turf/closed/wall, /area/medical/storage) -"mtH" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - alpha = 180; - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_y = 33 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/rnd/production/techfab/department/security, -/turf/open/floor/iron/dark, -/area/security/warden) "mtK" = ( /obj/structure/table/reinforced, /obj/item/computer_hardware/hard_drive/role/engineering{ @@ -24952,6 +25066,9 @@ /obj/item/book/manual/wiki/sopengineering, /turf/open/floor/carpet/royalblue, /area/crew_quarters/heads/chief) +"mtO" = ( +/turf/open/floor/iron/white, +/area/medical/apothecary) "muw" = ( /obj/machinery/pool_filter, /obj/effect/turf_decal/siding/blue{ @@ -24974,58 +25091,19 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/showroomfloor, /area/crew_quarters/cryopods) -"mvx" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/musician/piano{ - icon_state = "piano" - }, -/obj/machinery/light{ - dir = 1; - light_color = "#7AC3FF" - }, -/obj/machinery/camera/autoname/directional/north{ - c_tag = "Captain's Quarters"; - network = list("ss13","public") - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/sign/barsign{ - pixel_x = 1; - pixel_y = 33 - }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/cafeteria) -"mvN" = ( -/obj/machinery/door/airlock/grunge{ - name = "Morgue"; - req_one_access_txt = "6;5;4;28" - }, +"mvK" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/turf_decal/stripes/closeup, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "quarantineshutters"; - name = "Isolation Shutters" - }, -/turf/open/floor/plating, -/area/medical/morgue) -"mvX" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/obj/machinery/light{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 1 }, -/obj/structure/cable/yellow{ - icon_state = "4-8" +/obj/effect/turf_decal/tile/red{ + alpha = 180; + dir = 8 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/iron/white/side, -/area/science/lab) +/turf/open/floor/iron, +/area/hallway/primary/central) "mwj" = ( /obj/effect/turf_decal/sand/plating, /obj/effect/decal/cleanable/dirt/dust, @@ -25037,6 +25115,23 @@ /obj/effect/spawner/lootdrop/costume, /turf/open/floor/iron/dark, /area/maintenance/department/crew_quarters/dorms) +"mwy" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/vending/games{ + pixel_y = -1 + }, +/turf/open/floor/carpet/green, +/area/crew_quarters/cafeteria) +"mwY" = ( +/obj/effect/turf_decal/sand/plating, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/iron, +/area/hallway/primary/fore) "mxd" = ( /obj/structure/sign/departments/minsky/research/robotics, /turf/closed/wall, @@ -25051,6 +25146,22 @@ /obj/structure/flora/grass/jungle/b, /turf/open/floor/plating/asteroid/planetary, /area/quartermaster/storage) +"mxu" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/iron, +/area/medical/surgery) "mxy" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /obj/machinery/vending/dinnerware, @@ -25065,18 +25176,6 @@ /obj/structure/barricade/wooden, /turf/open/floor/plating, /area/maintenance/department/security/brig) -"mxH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 9 - }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/heads/cmo) "mxW" = ( /obj/effect/turf_decal/tile/blue/half/contrasted, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ @@ -25086,6 +25185,12 @@ /obj/effect/turf_decal/box, /turf/open/floor/iron/white, /area/medical/storage) +"mxX" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/iron, +/area/hallway/primary/central) "mxY" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -25117,24 +25222,12 @@ }, /turf/open/floor/iron/grid/steel, /area/hydroponics) -"myy" = ( -/obj/item/radio/intercom{ - pixel_y = 23 - }, -/obj/machinery/button/door{ - id = "psypriv"; - name = "Psycology Shutters Control"; - pixel_y = 37 - }, -/obj/structure/table/wood, -/obj/machinery/computer/med_data/laptop{ - pixel_y = 4 - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","medbay") +"myM" = ( +/obj/structure/railing{ + dir = 4 }, -/turf/open/floor/wood, -/area/medical/exam_room) +/turf/open/openspace, +/area/hallway/primary/fore) "myN" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -25148,6 +25241,28 @@ }, /turf/open/floor/carpet/blue, /area/crew_quarters/heads/hop) +"myS" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/security/glass{ + id_tag = "brigentrance"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "brigentrance"; + name = "Brig Blast Door" + }, +/turf/open/floor/iron/dark, +/area/security/brig) "myV" = ( /obj/structure/flora/grass/jungle, /obj/structure/flora/ausbushes/ppflowers, @@ -25157,13 +25272,44 @@ }, /turf/open/floor/plating/asteroid/planetary, /area/crew_quarters/dorms) -"mzo" = ( -/obj/structure/railing{ - dir = 5 +"myX" = ( +/obj/structure/table/optable{ + pixel_y = 7 }, -/obj/structure/lattice, -/turf/open/openspace, -/area/hallway/primary/fore) +/obj/item/surgical_drapes{ + pixel_y = 4 + }, +/obj/machinery/light, +/obj/item/clothing/gloves/color/latex{ + pixel_x = -1; + pixel_y = -1 + }, +/turf/open/floor/iron, +/area/medical/surgery) +"myY" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/evac/evac_big{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"mzj" = ( +/obj/item/clothing/suit/costume/ianshirt, +/obj/item/bedsheet/ian, +/obj/structure/closet/secure_closet{ + req_access_txt = "57" + }, +/obj/item/wrench{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/clothing/suit/hooded/ian_costume, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/carpet/blue, +/area/crew_quarters/heads/hop) "mzC" = ( /obj/effect/spawner/xmastree, /turf/open/floor/wood, @@ -25178,41 +25324,30 @@ }, /turf/open/floor/circuit, /area/gateway) -"mAj" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - alpha = 180; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/turf/open/floor/iron, -/area/hallway/primary/central) "mAp" = ( /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/plating, /area/engine/engineering) -"mAS" = ( -/obj/structure/railing{ - dir = 1 +"mAt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63" }, -/obj/structure/lattice, -/turf/open/openspace, -/area/engineering/hallway) -"mBs" = ( -/obj/machinery/smartfridge/sci, -/turf/open/floor/iron/white, -/area/science/robotics) +/obj/effect/turf_decal/tile/red/half/contrasted{ + alpha = 180 + }, +/obj/effect/turf_decal/stripes/closeup, +/obj/machinery/door/poddoor/preopen{ + id = "brigentrance"; + name = "Brig Blast Door" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/security/brig) "mBS" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -25232,20 +25367,6 @@ /obj/machinery/atmospherics/pipe/layer_manifold/visible, /turf/open/floor/engine/n2o, /area/engine/atmos) -"mCp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/hydroponics/constructable, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/item/paper/guides/jobs/hydroponics{ - default_raw_text = "

Hey there,

Sorry about the cramped space! � I know it's a bit tight in here.

But just so you know, I found a few more hydroponic trays stashed behind botany in maintenance. Feel free to grab them if you need!

Take care!

"; - pixel_x = 6 - }, -/turf/open/floor/iron/grid/steel, -/area/hydroponics) "mCw" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -25261,28 +25382,6 @@ }, /turf/open/floor/catwalk_floor/iron_dark, /area/quartermaster/storage) -"mCz" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyer"; - name = "Medbay Doors Control"; - normaldoorcontrol = 1; - pixel_x = 4; - pixel_y = 36 - }, -/obj/machinery/button/door{ - id = "chemistry_shutters"; - id_tag = "cmoprivacy"; - name = "Chem Shutters Control"; - pixel_x = 4; - pixel_y = 27 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/iron/white, -/area/medical/apothecary) "mDm" = ( /obj/structure/rack, /obj/item/rollerbed{ @@ -25302,54 +25401,71 @@ }, /turf/open/floor/iron/dark, /area/medical/morgue) -"mDA" = ( -/obj/structure/frame/computer{ - anchored = 1; - dir = 1 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/library/abandoned) "mDY" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/storage/primary) -"mEn" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/delivery, +"mEl" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, /obj/structure/cable/yellow{ icon_state = "2-8" }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/iron/dark, +/area/engine/engineering) +"mEp" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/folder/red{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/taperecorder{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/flashlight/lamp{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1423; + listening = 0; + name = "Interrogation Intercom"; + pixel_x = 3; + pixel_y = -34 + }, /turf/open/floor/iron, -/area/maintenance/department/crew_quarters/bar) +/area/security/brig) "mEr" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/openspace, /area/engine/atmos) -"mEw" = ( -/obj/effect/turf_decal/siding/blue, -/turf/open/floor/glass/reinforced, -/area/medical/medbay/central) "mEO" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/flora/rock/pile, /turf/open/floor/plating/asteroid/basalt/planetary, /area/asteroid/paradise) -"mEU" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/maintenance/department/engine/atmos) "mFq" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -25373,23 +25489,70 @@ /obj/structure/flora/ausbushes/ywflowers, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise) -"mFz" = ( -/obj/structure/railing{ - dir = 8 +"mFx" = ( +/obj/structure/urinal{ + dir = 1; + pixel_x = 1; + pixel_y = 33 }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - alpha = 180; +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/freezer, +/area/hallway/primary/fore) +"mFB" = ( +/obj/structure/table/glass, +/obj/item/book/manual/wiki/grenades{ + pixel_x = 4; + pixel_y = 19 + }, +/obj/item/storage/box/beakers{ + pixel_x = -6; + pixel_y = 24 + }, +/obj/item/grenade/chem_grenade{ + pixel_x = 12; + pixel_y = 11 + }, +/obj/item/grenade/chem_grenade{ + pixel_x = 10; + pixel_y = 7 + }, +/obj/item/grenade/chem_grenade{ + pixel_x = 11; + pixel_y = 2 + }, +/obj/item/assembly/igniter{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/item/assembly/igniter{ + pixel_y = 5 + }, +/obj/item/assembly/timer{ + pixel_y = 2 + }, +/obj/item/assembly/timer, +/obj/item/screwdriver{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ dir = 8 }, -/obj/item/kirbyplants/random, -/obj/structure/sign/map/echo{ - pixel_y = -32 +/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/turf/open/floor/iron/dark/corner{ - dir = 1 +/obj/structure/cable/yellow{ + icon_state = "1-4" }, -/area/hallway/primary/central) +/turf/open/floor/iron, +/area/medical/apothecary) "mFI" = ( /obj/effect/turf_decal/siding/wideplating/dark, /obj/structure/chair/fancy/comfy{ @@ -25440,23 +25603,55 @@ }, /turf/open/floor/plating/asteroid/basalt/planetary, /area/asteroid/paradise) -"mHk" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/sopengineering, -/obj/item/clothing/glasses/meson{ - pixel_y = 1 +"mHg" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine/atmos) +"mHu" = ( +/obj/structure/railing{ + dir = 4 }, /obj/effect/turf_decal/siding/dark{ - dir = 8 + dir = 4 }, -/obj/effect/turf_decal/trimline/yellow/corner{ +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ dir = 4 }, -/obj/effect/turf_decal/siding/yellow/corner{ +/area/hallway/primary/central) +"mHx" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 }, -/turf/open/floor/iron/dark, -/area/engineering/hallway) +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","security") + }, +/obj/item/kirbyplants/random, +/obj/structure/sink/kitchen{ + pixel_y = 22 + }, +/turf/open/floor/iron, +/area/security/brig) +"mHA" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron/tech, +/area/engine/engineering) +"mHI" = ( +/obj/structure/sign/painting/library{ + pixel_y = 1 + }, +/turf/closed/wall, +/area/library/abandoned) "mHX" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -25465,27 +25660,28 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/rust, /area/science/test_area) -"mIl" = ( -/obj/effect/turf_decal/siding/white/corner{ - dir = 1 +"mIh" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/hallway/primary/central) +"mIp" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 }, -/obj/effect/turf_decal/siding/blue{ - dir = 9 +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/turf/open/floor/glass/reinforced, -/area/medical/medbay/central) -"mIx" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 }, -/obj/structure/railing{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 }, /obj/structure/disposalpipe/segment{ - dir = 9 + dir = 6 }, -/turf/open/floor/wood, -/area/crew_quarters/cafeteria) +/turf/open/floor/iron/white, +/area/medical/genetics/cloning) "mIF" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -25527,6 +25723,12 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/storage) +"mJc" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/engineering/hallway) "mJg" = ( /obj/machinery/newscaster{ pixel_x = -32; @@ -25540,6 +25742,14 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/janitor) +"mJq" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/department/engine/atmos) "mJs" = ( /obj/effect/turf_decal/tile/purple/anticorner/contrasted{ dir = 4 @@ -25562,18 +25772,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise) +"mKQ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/hallway/primary/aft) "mLo" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/closet/firecloset/full, /turf/open/floor/plating, /area/maintenance/department/bridge) -"mLL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron, -/area/hallway/primary/aft) "mLQ" = ( /obj/machinery/atmospherics/pipe/layer_manifold/visible, /obj/effect/decal/cleanable/dirt, @@ -25586,27 +25798,16 @@ "mLS" = ( /turf/closed/indestructible/riveted, /area/quartermaster/storage) -"mMc" = ( -/obj/structure/disposalpipe/segment{ +"mMa" = ( +/obj/structure/lattice, +/obj/structure/railing{ dir = 4 }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/hallway/primary/fore) -"mMj" = ( -/obj/machinery/airalarm/engine{ - dir = 8; - pixel_x = -23 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Gas to Filter" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/engine, -/area/engine/supermatter) +/turf/open/openspace, +/area/hallway/primary/central) +"mMf" = ( +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/asteroid/paradise/surface) "mMl" = ( /obj/structure/bed, /obj/item/bedsheet/hop, @@ -25618,14 +25819,6 @@ }, /turf/open/floor/carpet/blue, /area/crew_quarters/heads/hop) -"mMm" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/digital_clock/directional/north, -/turf/open/floor/engine, -/area/science/explab) "mMn" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/closed/wall, @@ -25636,6 +25829,11 @@ }, /turf/open/floor/plating, /area/maintenance/department/engine/atmos) +"mMC" = ( +/obj/structure/stairs, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/pod/dark, +/area/hallway/primary/fore) "mMZ" = ( /obj/machinery/atmospherics/components/binary/valve, /obj/machinery/button/ignition/incinerator/toxmix{ @@ -25655,15 +25853,6 @@ }, /turf/open/floor/iron/tech, /area/science/mixing/chamber) -"mNh" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron/techmaint/planetary, -/area/asteroid/paradise/surface) "mNk" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/stripes/line{ @@ -25699,51 +25888,74 @@ slowdown = 0 }, /area/asteroid/paradise/surface) -"mNC" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" +"mNH" = ( +/obj/machinery/light/small{ + dir = 4 }, +/turf/open/floor/engine, +/area/science/xenobiology) +"mNO" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 10 +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + alpha = 180; + dir = 8 }, +/turf/open/floor/iron, +/area/hallway/primary/aft) +"mNS" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 +/obj/machinery/atmospherics/pipe/layer_manifold/visible{ + dir = 4 }, -/turf/open/floor/iron/dark, -/area/bridge) -"mNF" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/obj/item/stock_parts/micro_laser/ultra, -/obj/item/stock_parts/micro_laser/ultra, -/obj/item/stock_parts/matter_bin/super, -/obj/item/stock_parts/matter_bin/super, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 4; - initialize_directions = 4 +/obj/structure/table, +/obj/item/clothing/mask/gas{ + pixel_x = -4; + pixel_y = 10 }, -/turf/open/floor/iron/tech, +/obj/item/analyzer{ + pixel_x = 1 + }, +/obj/item/crowbar/red{ + pixel_x = -2; + pixel_y = 11 + }, +/obj/item/tank/internals/plasma{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/iron/dark, /area/engine/engineering) -"mNH" = ( -/obj/machinery/light/small{ +"mNU" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Access" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/hallway/primary/aft) +"mOm" = ( +/obj/structure/railing/corner{ dir = 4 }, -/turf/open/floor/engine, -/area/science/xenobiology) -"mNQ" = ( -/obj/structure/disposalpipe/sorting/mail/destination/xenobiology{ +/obj/effect/turf_decal/siding/dark/corner{ dir = 4 }, -/turf/closed/wall/r_wall, -/area/science/mixing) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/hallway/primary/aft) "mOp" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -25767,12 +25979,42 @@ }, /turf/open/floor/iron, /area/maintenance/department/science/xenobiology) -"mPN" = ( -/obj/machinery/atmospherics/components/unary/plasma_refiner{ +"mPk" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron, +/area/maintenance/department/engine) +"mPv" = ( +/obj/structure/fence/corner{ dir = 8 }, -/turf/open/floor/mineral/titanium, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/plating/grass, /area/asteroid/paradise/surface) +"mQl" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron, +/area/maintenance/department/engine/atmos) "mQm" = ( /obj/structure/cable/yellow{ icon_state = "1-8" @@ -25787,25 +26029,6 @@ /obj/effect/spawner/lootdrop/maintenance/two, /turf/open/floor/plating, /area/maintenance/department/bridge) -"mQH" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"mQJ" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/dark/corner{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/hallway/primary/central) "mQK" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -25816,53 +26039,36 @@ }, /turf/open/floor/iron/sepia, /area/quartermaster/storage) -"mRe" = ( -/obj/machinery/button/flasher{ - id = "brigentryaux"; - pixel_x = 5; - pixel_y = -37 - }, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "outerbrig"; - name = "Brig Exterior Doors Control"; - normaldoorcontrol = 1; - pixel_x = -6; - pixel_y = -25; - req_access_txt = "63" +"mRB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/obj/machinery/button/door{ - id = "brigentrance"; - name = "Brig Lockdown Control"; - pixel_x = 6; - pixel_y = -25; - req_access_txt = "63" +/obj/structure/closet/secure_closet/medical3, +/obj/effect/spawner/lootdrop/techstorage/medical, +/obj/item/folder/white{ + pixel_x = -1; + pixel_y = -4 }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - alpha = 180; - dir = 8 +/obj/item/storage/belt/medical{ + pixel_y = 2 }, -/obj/item/radio/intercom{ - dir = 1; - pixel_x = -32; - pixel_y = -28 +/obj/structure/sign/painting/library{ + pixel_y = 32 }, -/obj/machinery/computer/crew{ - dir = 4; - req_one_access = list(5,4,3) +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","medbay","public") }, -/obj/structure/disposalpipe/segment{ - dir = 5 +/turf/open/floor/iron, +/area/medical/storage) +"mRW" = ( +/obj/structure/stairs{ + dir = 4 }, -/turf/open/floor/iron/dark, -/area/security/warden) -"mRH" = ( -/obj/structure/bookcase/random/adult, -/obj/machinery/newscaster{ - pixel_y = 33 +/obj/machinery/light{ + dir = 1 }, -/turf/open/floor/carpet/royalblack, -/area/library/abandoned) +/turf/open/floor/pod/dark, +/area/hallway/primary/aft) "mRZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -25888,15 +26094,6 @@ "mSE" = ( /turf/closed/wall/r_wall, /area/crew_quarters/heads/captain/private) -"mSK" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/hallway/primary/aft) "mSM" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ @@ -25920,10 +26117,32 @@ }, /turf/open/floor/prison/dark, /area/security/prison) +"mTe" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/plating/asteroid/planetary, +/area/asteroid/paradise/surface) "mTi" = ( /obj/structure/lattice/catwalk/over, /turf/open/openspace, /area/maintenance/department/crew_quarters/bar) +"mTl" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced/prison, +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" + }, +/turf/open/floor/plating, +/area/security/prison) "mTL" = ( /obj/machinery/door/poddoor/incinerator_atmos_main, /obj/effect/turf_decal/sand/plating, @@ -25939,16 +26158,18 @@ /obj/machinery/computer/pandemic, /turf/open/floor/iron/white, /area/crew_quarters/heads/cmo) +"mUh" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/engine) "mUB" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise) -"mUU" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 5 - }, -/turf/open/floor/glass/reinforced, -/area/medical/medbay/central) +"mUP" = ( +/obj/machinery/door/airlock/shuttle, +/turf/open/floor/mineral/titanium, +/area/asteroid/paradise/surface) "mVg" = ( /obj/structure/flora/ausbushes/sparsegrass, /turf/open/floor/plating/asteroid/planetary, @@ -25967,18 +26188,31 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/maintenance/department/bridge) -"mVr" = ( -/obj/structure/fence/corner{ - dir = 6 +"mVt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-16" }, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) -"mVX" = ( -/obj/structure/fence/cut/large{ - dir = 8 +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/light/small{ + dir = 4 }, -/turf/open/floor/plating/dirt/planetary, -/area/asteroid/paradise/surface) +/turf/open/floor/pod/dark, +/area/maintenance/department/medical/morgue) +"mVN" = ( +/obj/structure/lattice, +/obj/structure/railing/corner, +/turf/open/openspace, +/area/hallway/primary/fore) +"mVW" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/tech, +/area/science/mixing) +"mWb" = ( +/obj/effect/turf_decal/sand/plating, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron, +/area/hallway/primary/fore) "mWc" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 1 @@ -25986,14 +26220,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /turf/open/floor/carpet/red, /area/crew_quarters/heads/hos) -"mWk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/hallway/primary/central) "mWt" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -26063,6 +26289,29 @@ /obj/effect/spawner/lootdrop/maintenance/two, /turf/open/floor/iron, /area/maintenance/department/science/central) +"mYe" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/asteroid/paradise/surface) +"mYH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/flora/tree/jungle/small, +/turf/open/floor/grass/no_border, +/area/hallway/primary/aft) "mYL" = ( /obj/structure/closet, /obj/effect/spawner/lootdrop/maintenance/two, @@ -26106,16 +26355,44 @@ }, /turf/open/floor/plating, /area/maintenance/department/science/central) -"naa" = ( +"mZW" = ( /obj/structure/cable/yellow{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"naW" = ( +/obj/effect/turf_decal/box/white, +/obj/effect/turf_decal/tile/blue/half/contrasted{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/iron/white, +/area/medical/surgery) +"naX" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/bridge) +/turf/open/floor/iron, +/area/maintenance/department/medical/morgue) "nbf" = ( /obj/machinery/door/window/southleft{ dir = 1; @@ -26139,19 +26416,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plating, /area/maintenance/department/eva) -"nbG" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/iron/grid/steel, -/area/medical/patients_rooms) "nbS" = ( /obj/effect/turf_decal/sand/plating, /obj/effect/decal/cleanable/dirt/dust, @@ -26170,25 +26434,16 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/plating, /area/maintenance/department/science/central) -"ncA" = ( -/obj/effect/turf_decal/caution/stand_clear, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" +"ncK" = ( +/obj/machinery/holopad{ + pixel_x = 16; + pixel_y = 16 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/hallway/primary/aft) +/turf/open/floor/iron/white, +/area/medical/medbay/central) "ncM" = ( /obj/structure/reagent_dispensers/beerkeg{ pixel_x = 6; @@ -26205,31 +26460,27 @@ }, /turf/open/floor/plating, /area/storage/primary) -"ndg" = ( -/obj/structure/sign/directions/engineering{ - pixel_y = -5 +"ncY" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 }, -/obj/structure/sign/directions/supply{ - pixel_y = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/obj/structure/sign/directions/evac{ - dir = 8; - pixel_y = 7 +/turf/open/floor/iron, +/area/hallway/primary/central) +"ndA" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" }, -/turf/closed/wall, -/area/hallway/primary/aft) -"ndI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/obj/structure/cable/yellow{ + icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/engine/engineering) -"ndP" = ( /turf/open/floor/iron, -/area/hallway/primary/central) +/area/maintenance/department/engine/atmos) "ndU" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -26250,32 +26501,27 @@ /obj/structure/flora/ausbushes/sparsegrass, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise) -"neX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark/side{ - dir = 5 - }, -/area/hallway/primary/central) -"nfX" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 +"nee" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + alpha = 180; + dir = 1 }, /obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 + icon_state = "1-2" }, +/obj/structure/disposalpipe/segment, /turf/open/floor/iron, -/area/maintenance/department/engine/atmos) +/area/security/brig) +"neA" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"nfC" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/numbers, +/turf/open/floor/iron, +/area/hallway/primary/fore) "nfZ" = ( /obj/effect/turf_decal/sand/plating, /obj/effect/decal/cleanable/dirt/dust, @@ -26300,16 +26546,57 @@ }, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/bar) -"ngW" = ( +"ngP" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-16" + }, +/obj/effect/turf_decal/trimline/yellow, +/obj/effect/landmark/start/station_engineer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible/layer5{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/engine/atmos) +"nhd" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /obj/structure/cable/yellow{ icon_state = "4-8" }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"nhp" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/dirt/planetary, -/area/asteroid/paradise/surface/grass) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/numbers/two_nine{ + dir = 1 + }, +/turf/open/floor/iron, +/area/hallway/primary/central) +"nhl" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible/layer2{ + dir = 9 + }, +/turf/closed/wall, +/area/engine/supermatter) "nhs" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -26325,20 +26612,14 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/engine, /area/ai_monitored/turret_protected/ai) -"nhW" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/light, -/obj/structure/sign/warning/pods{ - pixel_y = -32 +"nhC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/turf/open/floor/iron, -/area/maintenance/department/chapel) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_dark, +/area/medical/medbay/central) "nhY" = ( /mob/living/basic/mothroach{ density = 0; @@ -26358,10 +26639,6 @@ /obj/effect/turf_decal/sand/plating, /turf/open/floor/plating, /area/quartermaster/storage) -"niw" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/hallway/primary/aft) "niN" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/trinary/filter/flipped, @@ -26370,25 +26647,31 @@ }, /turf/open/floor/iron/dark, /area/maintenance/disposal/incinerator) -"njI" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 4 +"niR" = ( +/obj/machinery/light, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","rd") }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 4 +/obj/machinery/power/apc/auto_name/directional/south{ + pixel_y = -24 }, -/turf/open/floor/iron, -/area/hallway/primary/aft) -"nkk" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/siding/white{ - dir = 10 +/obj/structure/cable/yellow{ + icon_state = "0-8" }, -/obj/structure/disposalpipe/segment{ - dir = 9 +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 8 }, -/turf/open/floor/wood, -/area/crew_quarters/cafeteria) +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"niT" = ( +/obj/structure/lattice/catwalk/over, +/obj/structure/marker_beacon, +/turf/open/openspace, +/area/engineering/hallway) +"nku" = ( +/obj/structure/lattice/catwalk/over, +/turf/open/openspace, +/area/hallway/primary/fore) "nlo" = ( /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 8 @@ -26406,6 +26689,21 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white/side, /area/science/lab) +"nlB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrous_output{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","engine") + }, +/turf/open/floor/engine/n2o, +/area/engine/atmos) +"nlE" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/maintenance/department/security/brig) "nlH" = ( /obj/structure/chair/fancy/comfy{ dir = 4 @@ -26419,25 +26717,16 @@ }, /turf/open/floor/carpet/red, /area/medical/exam_room) -"nlO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +"nlL" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/structure/ladder, -/turf/open/floor/pod/dark, -/area/maintenance/department/chapel) -"nlW" = ( -/obj/structure/table/wood, -/obj/item/paper, -/obj/structure/sign/poster/official/random{ - pixel_x = -33 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/library/abandoned) +/turf/open/floor/plating, +/area/maintenance/department/engine) "nlX" = ( /obj/machinery/power/emitter/welded{ dir = 4 @@ -26447,6 +26736,12 @@ /obj/machinery/light/small, /turf/open/floor/plating, /area/engine/engineering) +"nmv" = ( +/obj/structure/sign/poster/official/moth8{ + pixel_y = 31 + }, +/turf/open/floor/glass/reinforced, +/area/crew_quarters/heads/cmo) "nmz" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -26454,6 +26749,37 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, /area/maintenance/department/crew_quarters/dorms) +"nmO" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel Office"; + req_access_txt = "27" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/open/floor/wood, +/area/chapel/office) +"nmP" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/open/floor/iron, +/area/hallway/primary/aft) "nmR" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/light/small{ @@ -26480,10 +26806,6 @@ /obj/structure/lattice/catwalk/over, /turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat/maint) -"nnv" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating/asteroid/basalt/planetary, -/area/asteroid/paradise) "nnF" = ( /obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ alpha = 180; @@ -26511,51 +26833,60 @@ /turf/open/floor/carpet/blue, /area/crew_quarters/cafeteria) "nnQ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 1 + }, /obj/structure/cable/yellow{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/effect/turf_decal/tile/dark_green/half/contrasted, -/turf/open/floor/iron, -/area/maintenance/department/medical/morgue) +/turf/open/floor/iron/dark, +/area/engine/engineering) "nnR" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/flora/rock/pile, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise/surface) -"noe" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/siding/dark{ - dir = 4 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/hallway/primary/central) "noh" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/crew_quarters/fitness/recreation) -"nol" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted{ +"nor" = ( +/obj/structure/stairs{ dir = 4 }, -/obj/structure/cable/yellow{ - icon_state = "1-8" +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/pod/dark, +/area/hallway/primary/aft) +"noC" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/spawner/lootdrop/glowstick/lit, +/turf/open/floor/iron/white/side, +/area/asteroid/paradise) +"noX" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible/layer2{ + dir = 4 }, -/obj/structure/cable/yellow{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/yellow/visible/layer2, +/obj/structure/window/plasma/reinforced{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 9 +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 }, -/turf/open/floor/iron/white/side{ +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2/layer4{ + dir = 8 + }, +/turf/open/floor/iron, +/area/engine/atmos) +"npg" = ( +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/area/science/research) +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/iron, +/area/hallway/primary/fore) "npi" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/stripes/line, @@ -26577,26 +26908,10 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/carpet/blue, /area/crew_quarters/cafeteria) -"npW" = ( -/obj/machinery/power/smes{ - charge = 5e+006; - name = "ai power storage unit" - }, -/obj/machinery/flasher{ - id = "AI"; - name = "Meatbag Pacifier"; - pixel_x = 23; - pixel_y = 22 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/item/toy/plush/lizard_plushie{ - pixel_x = 1; - pixel_y = 14 - }, -/turf/open/floor/circuit/red, -/area/ai_monitored/turret_protected/ai) +"npY" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/open/floor/iron/tech, +/area/engine/engineering) "nqk" = ( /obj/structure/extinguisher_cabinet{ pixel_y = -33 @@ -26610,14 +26925,6 @@ }, /turf/open/floor/carpet/orange, /area/crew_quarters/dorms) -"nqv" = ( -/obj/item/kirbyplants/random, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/maintenance/department/medical/morgue) "nqP" = ( /obj/structure/lattice/catwalk/over, /obj/machinery/light{ @@ -26639,21 +26946,12 @@ }, /turf/open/floor/iron/dark, /area/engine/engineering) -"nrf" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +"nrr" = ( +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","rd") }, -/turf/open/floor/iron/tech, -/area/engine/atmos) +/turf/open/openspace, +/area/science/explab) "nrw" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/eastleft{ @@ -26676,9 +26974,28 @@ }, /turf/open/floor/iron/dark, /area/security/warden) -"nrQ" = ( -/turf/closed/wall/mineral/titanium/survival/nodiagonal, -/area/hallway/primary/fore) +"nrA" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/crew_quarters/heads/cmo) +"nrF" = ( +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/hallway/primary/aft) +"nsd" = ( +/obj/structure/railing, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/hallway/primary/central) "nst" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch"; @@ -26696,15 +27013,6 @@ /obj/effect/turf_decal/stripes/closeup, /turf/open/floor/plating, /area/security/prison) -"nsH" = ( -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/poddoor/preopen{ - id = "meetingshutter"; - name = "Council Blast Doors" - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron/dark, -/area/bridge/meeting_room) "ntA" = ( /obj/effect/turf_decal/tile/blue/opposingcorners, /obj/effect/turf_decal/tile/dark_blue/opposingcorners{ @@ -26722,33 +27030,11 @@ /turf/open/floor/iron/white, /area/medical/medbay/central) "nub" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8; - pixel_x = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/flora/rock/pile, -/turf/open/floor/iron/techmaint/planetary, -/area/asteroid/paradise/surface) -"nuy" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/frame/computer{ - anchored = 1 - }, -/turf/open/floor/mineral/plastitanium, -/area/asteroid/paradise/surface) -"nuA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/engine/engineering) +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/maintenance/department/medical/morgue) "nuD" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/item/clothing/under/misc/assistantformal, @@ -26769,6 +27055,21 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) +"nuZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) +"nvd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/hallway/primary/central) "nve" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -26778,16 +27079,6 @@ /obj/structure/sign/departments/minsky/supply/cargo, /turf/closed/wall, /area/maintenance/department/engine/atmos) -"nvo" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/plating, -/area/library/abandoned) "nvB" = ( /obj/structure/railing, /obj/machinery/light{ @@ -26799,43 +27090,116 @@ /obj/structure/cable/yellow{ icon_state = "1-2" }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"nwu" = ( -/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"nwu" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron, +/area/maintenance/department/science/central) +"nww" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, +/turf/open/floor/iron/dark, +/area/medical/morgue) +"nwN" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/box, +/mob/living/simple_animal/bot/secbot{ + arrest_type = 1; + health = 45; + icon_state = "secbot1"; + idcheck = 1; + name = "Sergeant-at-Armsky"; + weaponscheck = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/security/armory) +"nxt" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/table, +/obj/item/airlock_painter/decal, +/turf/open/floor/iron, +/area/maintenance/department/chapel) +"nxD" = ( +/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ + alpha = 180 + }, +/obj/effect/turf_decal/loading_area{ + dir = 4; + pixel_y = -1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "hopqueue"; + name = "Queue Shutter Control"; + pixel_y = -36; + req_access_txt = "57" + }, /obj/structure/cable/yellow{ icon_state = "4-8" }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 1; + pixel_x = 1; + pixel_y = -27 + }, /turf/open/floor/iron, -/area/maintenance/department/science/central) -"nwN" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 +/area/hallway/primary/fore) +"nxE" = ( +/obj/machinery/requests_console{ + department = "AI"; + departmentType = 5; + name = "AI RC"; + pixel_x = 30; + pixel_y = -30 + }, +/obj/machinery/ai_slipper{ + uses = 10 }, -/obj/machinery/holopad, /obj/effect/turf_decal/box, -/mob/living/simple_animal/bot/secbot{ - arrest_type = 1; - health = 45; - icon_state = "secbot1"; - idcheck = 1; - name = "Sergeant-at-Armsky"; - weaponscheck = 1 +/obj/machinery/flasher{ + id = "AI"; + name = "Meatbag Pacifier"; + pixel_x = 24; + pixel_y = 24 }, -/obj/structure/cable/yellow{ - icon_state = "1-4" +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) -"nxt" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/table, -/obj/item/airlock_painter/decal, -/turf/open/floor/iron, -/area/maintenance/department/chapel) +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) "nxK" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/item/clothing/under/suit/burgundy, @@ -26844,13 +27208,6 @@ /obj/item/coin/gold, /turf/open/floor/carpet/orange, /area/crew_quarters/dorms) -"nxR" = ( -/obj/structure/table, -/obj/item/clothing/suit/apron/overalls, -/obj/item/cultivator, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/maintenance/department/medical/morgue) "nye" = ( /obj/effect/turf_decal/tile/dark_green/fourcorners/contrasted, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, @@ -26878,24 +27235,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/chapel) -"nyK" = ( -/obj/structure/closet/secure_closet/lethalshots, -/obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) "nyO" = ( /obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ alpha = 180; @@ -26946,23 +27285,6 @@ }, /turf/open/floor/iron/tech, /area/engine/atmos) -"nzq" = ( -/obj/structure/railing{ - dir = 10 - }, -/turf/open/openspace, -/area/hallway/primary/fore) -"nzr" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) "nzU" = ( /obj/effect/turf_decal/tile/black/opposingcorners{ dir = 1 @@ -26997,10 +27319,6 @@ }, /turf/open/floor/pod/dark, /area/maintenance/department/crew_quarters/dorms) -"nAw" = ( -/obj/machinery/smartfridge/organ, -/turf/open/floor/iron/dark, -/area/medical/morgue) "nAy" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold/cyan/visible, @@ -27015,36 +27333,56 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/disposal/incinerator) -"nAF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/sand/plating, -/obj/item/radio/intercom{ - dir = 1; - pixel_x = -31; - pixel_y = -3 +"nAU" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","public") }, -/turf/open/floor/iron, +/turf/open/floor/plating/asteroid/planetary, /area/hallway/primary/fore) -"nAN" = ( -/turf/open/floor/iron/white, -/area/medical/apothecary) "nBs" = ( /obj/structure/flora/rock/pile, /turf/open/floor/iron/techmaint/planetary, /area/asteroid/paradise/surface) +"nBT" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/hallway/primary/aft) "nCa" = ( /obj/structure/closet/crate, /obj/effect/spawner/lootdrop/maintenance/two, /turf/open/floor/iron, /area/maintenance/department/science/xenobiology) -"nCH" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible/layer2{ - dir = 10 +"nCT" = ( +/obj/structure/railing/corner{ + dir = 4 }, -/turf/closed/wall, -/area/engine/supermatter) +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) +"nCU" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) "nDA" = ( /obj/structure/table, /obj/machinery/fax/service, @@ -27072,6 +27410,15 @@ "nEl" = ( /turf/open/floor/iron, /area/maintenance/department/chapel) +"nEw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/aft) "nEN" = ( /obj/structure/stairs{ dir = 1 @@ -27116,33 +27463,32 @@ }, /turf/open/floor/iron, /area/security/brig) -"nFK" = ( -/obj/structure/cable{ - icon_state = "1-2" +"nFx" = ( +/obj/structure/window/plasma/reinforced{ + dir = 4 }, /obj/structure/cable{ - icon_state = "1-4" + icon_state = "0-8" }, -/obj/structure/cable{ - icon_state = "1-8" +/obj/machinery/power/rad_collector/anchored, +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 8 }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/catwalk_floor/iron_dark, -/area/asteroid/paradise/surface) +/turf/open/floor/plating, +/area/engine/supermatter) "nFR" = ( /turf/closed/wall/r_wall/rust, /area/science/explab) -"nFY" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/chemist, -/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" +"nFX" = ( +/obj/structure/railing/corner, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/tile/purple/fourcorners/contrasted, +/obj/effect/turf_decal/siding/white/corner, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 }, /turf/open/floor/iron/white, -/area/medical/apothecary) +/area/science/lab) "nGn" = ( /obj/item/reagent_containers/food/drinks/drinkingglass{ pixel_x = -7; @@ -27164,15 +27510,15 @@ }, /turf/open/floor/carpet/green, /area/crew_quarters/cafeteria) -"nGJ" = ( -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 +"nGy" = ( +/obj/effect/turf_decal/box, +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/iron/white, -/area/crew_quarters/heads/cmo) +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron, +/area/hallway/primary/fore) "nGN" = ( /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 1 @@ -27185,54 +27531,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/iron/white, /area/science/xenobiology) -"nGU" = ( -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/medical/medbay/central) -"nHb" = ( -/obj/item/stack/sheet/iron/fifty{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = -5; - pixel_y = 1 - }, -/obj/item/stack/sheet/plasteel{ - amount = 10; - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/stack/sheet/rglass{ - amount = 30; - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/stack/sheet/iron/fifty{ - pixel_x = 1; - pixel_y = 1 - }, -/obj/item/stack/sheet/iron/fifty{ - pixel_x = 4; - pixel_y = -1 - }, -/obj/item/stack/rods/fifty, -/obj/structure/table, -/turf/open/floor/iron/tech, -/area/engine/engineering) "nHd" = ( /obj/structure/closet/emcloset/anchored, /turf/open/floor/plating, @@ -27240,16 +27538,13 @@ "nHi" = ( /turf/closed/wall, /area/gateway) -"nHp" = ( -/obj/effect/decal/cleanable/dirt/dust, +"nHK" = ( /obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/iron, -/area/maintenance/department/engine) +/area/hallway/primary/central) "nHL" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -27302,19 +27597,34 @@ /obj/machinery/door/firedoor, /turf/open/floor/plating, /area/maintenance/department/engine) -"nHZ" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/machinery/digital_clock/directional/north, -/turf/open/floor/pod/dark, -/area/hallway/primary/aft) "nId" = ( /obj/effect/turf_decal/sand/plating, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/techmaint/planetary, /area/asteroid/paradise/surface) +"nIe" = ( +/obj/machinery/light/small, +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/item/storage/box/lights/mixed{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron/tech, +/area/engine/engineering) "nIh" = ( /obj/machinery/vending/hydronutrients, /obj/effect/turf_decal/stripes/line{ @@ -27339,31 +27649,20 @@ }, /turf/open/floor/iron/techmaint/planetary, /area/science/mixing) -"nIu" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/effect/turf_decal/stripes/line{ +"nIv" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ dir = 4 }, -/turf/open/floor/iron/dark, -/area/engine/engineering) -"nIw" = ( -/obj/structure/stairs{ - dir = 4 +/obj/item/radio/intercom{ + dir = 1; + pixel_x = 32; + pixel_y = 29 }, -/obj/machinery/light{ - dir = 1 +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/corner{ + dir = 8 }, -/turf/open/floor/pod/dark, -/area/hallway/primary/aft) +/area/hallway/primary/central) "nIy" = ( /obj/machinery/air_sensor/atmos/carbon_tank, /obj/machinery/atmospherics/pipe/simple/yellow/hidden/layer4{ @@ -27377,6 +27676,29 @@ }, /turf/open/openspace, /area/crew_quarters/heads/hor) +"nIC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/clothing/under/rank/cargo/exploration{ + pixel_x = 5; + pixel_y = -3 + }, +/obj/item/radio/headset/headset_exploration{ + pixel_x = -1; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/blood/gibs/torso, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/iron/techmaint/planetary, +/area/asteroid/paradise/surface) +"nIF" = ( +/obj/structure/fence{ + dir = 8 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) "nIN" = ( /obj/machinery/door/airlock/command{ name = "Head of Security's Office"; @@ -27396,19 +27718,27 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/carpet/red, /area/crew_quarters/heads/hos) -"nIZ" = ( -/obj/structure/railing/corner, -/turf/open/openspace, -/area/hallway/primary/central) -"nJl" = ( -/obj/structure/railing/corner{ - dir = 8 +"nJy" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" }, -/obj/structure/railing/corner{ +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ dir = 4 }, -/turf/open/openspace, -/area/engineering/hallway) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/bridge) "nJX" = ( /obj/effect/mapping_helpers/airlock/unres{ dir = 8 @@ -27434,6 +27764,12 @@ }, /turf/open/floor/iron/white, /area/medical/medbay/central) +"nKa" = ( +/obj/structure/table/wood, +/obj/item/wrench, +/obj/item/circuitboard/machine/paystand, +/turf/open/floor/iron, +/area/hallway/primary/fore) "nKc" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -27447,32 +27783,25 @@ /obj/structure/flora/rock, /turf/open/floor/plating/grass, /area/asteroid/paradise/surface) +"nKs" = ( +/obj/structure/window/plasma/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/rad_collector/anchored, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) "nKB" = ( /obj/effect/turf_decal/sand/plating, /turf/open/floor/sepia/planetary{ slowdown = 0 }, /area/asteroid/paradise/surface) -"nKC" = ( -/obj/effect/turf_decal/bot, -/obj/item/pushbroom, -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/structure/closet/secure_closet/brig{ - name = "Storage Locker"; - req_one_access_txt = "1;4" - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","security") - }, -/turf/open/floor/iron/dark, -/area/security/brig) -"nKL" = ( -/obj/machinery/smartfridge/chemistry, -/turf/open/floor/iron/white, -/area/medical/apothecary) "nKV" = ( /obj/effect/turf_decal/siding/white{ alpha = 100; @@ -27505,24 +27834,31 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/storage) -"nMt" = ( -/turf/open/floor/plating/dirt/jungle/wasteland, -/area/asteroid/paradise/surface) -"nME" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/aft) "nMG" = ( /obj/machinery/computer/atmos_control/tank/nitrous_tank, /obj/effect/turf_decal/bot, /obj/item/book/manual/wiki/atmospherics, /turf/open/floor/iron/tech, /area/engine/atmos) +"nNf" = ( +/obj/structure/chair/fancy/bench/corporate/right{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/engineering/hallway) +"nNB" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/spawner/structure/window/hollow/survival_pod/directional, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/hallway/primary/fore) "nNO" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -27532,6 +27868,22 @@ /obj/structure/railing, /turf/open/openspace, /area/ai_monitored/turret_protected/aisat/maint) +"nNY" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/mineral/titanium, +/area/asteroid/paradise/surface) +"nOn" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/machinery/status_display/evac{ + pixel_y = -32 + }, +/turf/open/floor/iron, +/area/security/brig) "nOq" = ( /obj/structure/window/reinforced{ dir = 8 @@ -27579,31 +27931,17 @@ }, /turf/open/floor/wood, /area/asteroid/paradise/surface) -"nQs" = ( -/obj/structure/lattice/catwalk/over, -/obj/effect/turf_decal/trimline/yellow, -/obj/structure/cable/yellow{ - icon_state = "8-32" - }, -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/department/science/central) -"nRz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "Security" - }, -/obj/structure/plasticflaps/opaque, -/obj/machinery/door/poddoor/preopen{ - id = "brigentrance"; - name = "Brig Blast Door" +"nQC" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium, +/area/asteroid/paradise/surface) +"nQI" = ( +/obj/structure/fence{ + dir = 8 }, -/turf/open/floor/plating, -/area/maintenance/department/eva) +/obj/structure/sign/warning/securearea, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) "nRX" = ( /obj/machinery/hydroponics/constructable, /obj/effect/turf_decal/stripes/line{ @@ -27621,17 +27959,6 @@ }, /turf/open/floor/iron/dark, /area/crew_quarters/heads/hos) -"nSh" = ( -/obj/effect/landmark/start/warden, -/obj/effect/turf_decal/tile/red/half/contrasted{ - alpha = 180; - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/security/warden) "nSF" = ( /obj/machinery/vending/wallmed{ pixel_x = -6; @@ -27672,13 +27999,6 @@ /obj/effect/spawner/lootdrop/maintenance/three, /turf/open/floor/iron, /area/maintenance/department/crew_quarters/bar) -"nTP" = ( -/obj/effect/turf_decal/siding/dark, -/obj/effect/turf_decal/siding/dark{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/hallway/primary/fore) "nTR" = ( /obj/effect/spawner/room/threexthree, /turf/open/floor/plating, @@ -27695,17 +28015,6 @@ }, /turf/open/floor/iron/sepia, /area/quartermaster/storage) -"nUN" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/siding/dark{ - dir = 4 - }, -/turf/open/floor/iron/dark/side{ - dir = 6 - }, -/area/hallway/primary/central) "nVd" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/closet/cardboard, @@ -27713,12 +28022,6 @@ /obj/item/paicard, /turf/open/floor/iron, /area/ai_monitored/turret_protected/aisat/maint) -"nVj" = ( -/obj/machinery/atmospherics/pipe/manifold/purple/visible{ - dir = 1 - }, -/turf/open/floor/plating/dirt/planetary, -/area/asteroid/paradise/surface) "nVn" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -27759,24 +28062,13 @@ }, /turf/open/floor/iron, /area/science/research) -"nVt" = ( -/obj/structure/cable/yellow, -/obj/effect/spawner/structure/window/reinforced/prison, -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" - }, -/turf/open/floor/plating, -/area/security/prison) "nVI" = ( /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood, /area/asteroid/paradise/surface) -"nWp" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/tile/dark_green, -/turf/open/floor/iron, -/area/maintenance/department/medical/morgue) +"nWb" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/cargo) "nWu" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -27785,21 +28077,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/engine/engineering) -"nWB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/effect/spawner/structure/window, -/obj/structure/curtain/directional{ - color = "#ACD1E9"; - icon_state = "bathroom-open"; - icon_type = "bathroom" - }, -/turf/open/floor/plating, -/area/medical/surgery) "nXa" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -27832,6 +28109,31 @@ /obj/structure/flora/ausbushes/fullgrass, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise) +"nXC" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/storage/belt/utility, +/obj/item/clothing/glasses/welding{ + pixel_x = 2; + pixel_y = -1 + }, +/obj/item/clothing/head/utility/welding{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/science/robotics) "nYl" = ( /obj/effect/turf_decal/tile/black/opposingcorners{ dir = 1 @@ -27843,78 +28145,75 @@ }, /turf/open/floor/iron/white, /area/crew_quarters/heads/hor) -"nYq" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - alpha = 180; - dir = 8 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_x = -30; - pixel_y = -2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/hallway/primary/central) "nYE" = ( /obj/machinery/light/small{ dir = 1 }, /turf/open/floor/plating, /area/maintenance/department/chapel) -"nYL" = ( -/turf/open/openspace, +"nYV" = ( +/obj/structure/stairs, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/pod/dark, /area/hallway/primary/fore) -"nYP" = ( -/obj/structure/cable{ - icon_state = "1-2" +"nZz" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 }, -/obj/effect/turf_decal/stripes/line{ +/obj/effect/turf_decal/trimline/yellow/warning{ dir = 4 }, -/obj/effect/turf_decal/stripes/line{ +/obj/effect/turf_decal/siding/dark{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 4 +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 }, /turf/open/floor/iron/dark, -/area/engine/engineering) -"nZB" = ( -/obj/structure/stairs, -/turf/open/floor/pod/dark, -/area/hallway/primary/fore) +/area/engineering/hallway) "nZG" = ( /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/department/medical/central) -"oae" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall/r_wall, -/area/medical/medbay/central) +"nZM" = ( +/turf/closed/wall, +/area/hallway/primary/fore) +"nZT" = ( +/obj/effect/landmark/start/librarian, +/turf/open/floor/plating, +/area/library/abandoned) +"nZX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil/slippery, +/obj/structure/table_frame/wood, +/obj/item/folder, +/obj/item/folder{ + pixel_x = 4; + pixel_y = -1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/carpet/purple, +/area/library/abandoned) +"oak" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) "oam" = ( /turf/closed/wall/r_wall, /area/teleporter) -"oax" = ( -/obj/structure/sign/poster/official/suit_sensors{ - pixel_x = -32 - }, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron/dark/side{ - dir = 9 - }, -/area/hallway/primary/central) "oaM" = ( /obj/structure/cable{ icon_state = "0-8" @@ -27948,6 +28247,14 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/science/mixing) +"obp" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/wardrobe/robo_wardrobe, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/science/robotics) "obw" = ( /obj/structure/flora/ausbushes/lavendergrass{ pixel_x = -3; @@ -27964,6 +28271,16 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /turf/open/floor/plating, /area/engine/engineering) +"obz" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/turf/open/floor/iron/dark, +/area/hallway/primary/central) "obC" = ( /obj/effect/turf_decal/tile/blue/anticorner/contrasted{ dir = 4 @@ -27981,37 +28298,13 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/white, /area/medical/medbay/central) -"obH" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, +"ocv" = ( +/obj/effect/turf_decal/sand/plating, /obj/structure/cable/yellow{ icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/turnstile{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/iron/dark, -/area/security/prison) +/turf/open/floor/catwalk_floor/iron_dark, +/area/asteroid/paradise/surface) "ocx" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 10 @@ -28023,53 +28316,6 @@ /obj/structure/flora/rock/pile, /turf/open/floor/plating/asteroid/planetary, /area/quartermaster/storage) -"ocS" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/iron, -/area/quartermaster/sorting) -"odp" = ( -/obj/structure/filingcabinet, -/obj/item/folder/documents, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/east{ - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/iron/dark, -/area/security/nuke_storage) -"odA" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/tree/jungle, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating/asteroid/planetary, -/area/asteroid/paradise/surface) -"odK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/crew_quarters/fitness/recreation) "odM" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/light/small{ @@ -28092,34 +28338,56 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/techmaint/planetary, /area/storage/tech) -"oeH" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Foyer"; - req_one_access_txt = "32" +"oer" = ( +/obj/item/stack/sheet/iron/fifty{ + pixel_x = 5; + pixel_y = 4 }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -5; + pixel_y = 1 + }, +/obj/item/stack/sheet/plasteel{ + amount = 10; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stack/sheet/rglass{ + amount = 30; + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = 1; + pixel_y = 1 + }, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = 4; + pixel_y = -1 + }, +/obj/item/stack/rods/fifty, +/obj/structure/table, /turf/open/floor/iron/tech, /area/engine/engineering) +"ofC" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/mineral/plastitanium, +/area/asteroid/paradise/surface) "ofE" = ( /obj/effect/turf_decal/sand/plating, /obj/structure/railing, /obj/effect/spawner/lootdrop/glowstick/lit, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise/surface) -"ofT" = ( -/obj/structure/sign/poster/official/random{ - pixel_x = -2; - pixel_y = 32 - }, -/obj/structure/frame/computer{ - anchored = 1 - }, -/obj/structure/light_construct{ - dir = 1 - }, -/turf/open/floor/wood, -/area/library/abandoned) "ofU" = ( /obj/machinery/hydroponics/constructable, /obj/effect/turf_decal/stripes/line{ @@ -28141,6 +28409,16 @@ }, /turf/open/floor/iron, /area/engine/atmos) +"ogl" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/fans/tiny{ + density = 1; + icon = 'icons/effects/effects.dmi'; + icon_state = "m_shield"; + max_integrity = 1e+007 + }, +/turf/open/floor/plating/asteroid/basalt/planetary, +/area/quartermaster/storage) "ogp" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch"; @@ -28150,6 +28428,19 @@ /obj/machinery/door/firedoor, /turf/open/floor/plating, /area/security/brig) +"ogE" = ( +/obj/machinery/airalarm/engine{ + dir = 8; + pixel_x = -23 + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Gas to Filter" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/engine/supermatter) "ogJ" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/stripes/corner, @@ -28162,21 +28453,63 @@ /obj/machinery/vending/wardrobe/hydro_wardrobe, /turf/open/floor/iron/grid/steel, /area/hydroponics) -"ogP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/grid/steel, -/area/medical/patients_rooms) +"ohb" = ( +/obj/machinery/vending/autodrobe/all_access, +/obj/machinery/airalarm/directional/north, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/wood, +/area/crew_quarters/theatre/backstage) "ohg" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/caution/stand_clear, /turf/open/floor/dock/drydock, /area/quartermaster/storage) +"ohh" = ( +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room Access"; + req_one_access_txt = "7;27" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/science/mixing) "ohi" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/science/robotics) +"ohu" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/donkpockets{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/desk_bell{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/item/food/mint, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Chefwindow"; + name = "Chef Window" + }, +/turf/open/floor/iron/white, +/area/crew_quarters/kitchen) +"ohx" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron/grid/steel, +/area/medical/patients_rooms) "ohC" = ( /obj/effect/decal/cleanable/blood/gibs/body, /turf/open/floor/plating/dirt/planetary, @@ -28188,13 +28521,6 @@ }, /turf/open/floor/plating/beach/water, /area/asteroid/paradise/surface/water) -"ohY" = ( -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/turf/open/floor/iron/solarpanel, -/area/asteroid/paradise/surface) "oiG" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -28214,46 +28540,22 @@ dir = 1 }, /area/science/lab) -"oiK" = ( -/obj/machinery/airalarm/directional/north{ - pixel_y = -23 - }, -/mob/living/simple_animal/bot/mulebot{ - home_destination = "QM #3"; - suffix = "#3" - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "QM #3" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/quartermaster/warehouse) "oiS" = ( /obj/structure/closet/crate/freezer/surplus_limbs, /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/medical/morgue) -"oiT" = ( -/obj/machinery/door/airlock{ - name = "Service Hall"; - req_one_access_txt = "22;25;26;28;35;37;38;46" - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +"oju" = ( +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 +/obj/structure/disposalpipe/segment, +/obj/machinery/rnd/production/protolathe/department/engineering{ + req_access_txt = "32" }, -/obj/effect/turf_decal/stripes/closeup, +/obj/structure/window/plasma/reinforced, /turf/open/floor/iron, -/area/hallway/secondary/service) +/area/engine/engineering) "ojw" = ( /obj/effect/turf_decal/sand/plating, /obj/effect/turf_decal/sand/plating, @@ -28275,6 +28577,37 @@ slowdown = 0 }, /area/asteroid/paradise/surface) +"ojT" = ( +/obj/machinery/atmospherics/components/binary/pump/layer4{ + dir = 4; + name = "Port to Filter" + }, +/obj/machinery/atmospherics/components/binary/pump/layer2{ + dir = 8; + name = "Air to Ports" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/tech, +/area/engine/atmos) +"ojX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/multiz/down{ + dir = 8 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/hallway/primary/fore) "okk" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/iron, @@ -28296,10 +28629,6 @@ /obj/item/hand_labeler, /turf/open/floor/carpet/green, /area/crew_quarters/cafeteria) -"oln" = ( -/obj/effect/spawner/structure/window, -/turf/open/openspace, -/area/hallway/primary/central) "olB" = ( /obj/structure/table/glass, /obj/item/storage/box/bodybags{ @@ -28340,27 +28669,31 @@ /obj/item/radio/intercom, /turf/open/floor/carpet/green, /area/crew_quarters/cafeteria) -"omf" = ( -/obj/structure/railing/corner, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/openspace, -/area/hallway/primary/fore) -"omw" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/dark/corner{ - dir = 8 +"omd" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/effect/turf_decal/siding/dark{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/iron, +/area/hallway/primary/central) +"omk" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + alpha = 180; dir = 1 }, -/turf/open/floor/iron/dark/side{ +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 9 }, -/area/hallway/primary/central) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/security/warden) "omN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 9 @@ -28407,6 +28740,19 @@ }, /turf/open/floor/engine/light, /area/holodeck/small) +"ooy" = ( +/obj/machinery/computer/cargo/request{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/light, +/obj/machinery/status_display/supply{ + pixel_y = -32 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/aft) "ooF" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -28430,31 +28776,6 @@ }, /turf/open/floor/carpet/red, /area/crew_quarters/heads/hos) -"ooQ" = ( -/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ - alpha = 180 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/evac, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/fore) "ooY" = ( /obj/effect/turf_decal/sand/plating, /obj/effect/turf_decal/sand/plating, @@ -28462,11 +28783,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise/surface) -"opj" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/pickaxe, -/turf/open/floor/plating/asteroid/basalt/planetary, -/area/asteroid/paradise) "opm" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/chair/office{ @@ -28475,15 +28791,6 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/carpet/blue, /area/crew_quarters/heads/captain/private) -"opx" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - alpha = 180; - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/hallway/primary/fore) "opN" = ( /turf/open/floor/plating, /area/maintenance/department/bridge) @@ -28507,6 +28814,13 @@ }, /turf/open/floor/iron, /area/maintenance/department/crew_quarters/bar) +"oqm" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -32; + pixel_y = -1 + }, +/turf/open/floor/plating/dirt/planetary, +/area/asteroid/paradise/surface) "oqn" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 32; @@ -28525,20 +28839,6 @@ }, /turf/open/floor/carpet/blue, /area/crew_quarters/heads/captain/private) -"oqp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron/dark/side{ - dir = 6 - }, -/area/hallway/primary/aft) "oqF" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/trimline/yellow, @@ -28547,6 +28847,11 @@ }, /turf/open/floor/pod/dark, /area/maintenance/department/science/xenobiology) +"oqS" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/maintenance/department/engine) "oqZ" = ( /obj/machinery/atmospherics/components/unary/heat_exchanger{ dir = 1 @@ -28556,6 +28861,13 @@ "orc" = ( /turf/open/floor/iron/cafeteria_red, /area/crew_quarters/cafeteria) +"orp" = ( +/obj/structure/bookcase/random/adult, +/obj/machinery/newscaster{ + pixel_y = 33 + }, +/turf/open/floor/carpet/royalblack, +/area/library/abandoned) "oru" = ( /obj/structure/lattice/catwalk/over, /obj/machinery/computer/apc_control{ @@ -28564,15 +28876,6 @@ /obj/machinery/airalarm/directional/east, /turf/open/openspace, /area/crew_quarters/heads/chief) -"orv" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/turf_decal/evac, -/turf/open/floor/iron, -/area/hallway/primary/central) "orA" = ( /obj/item/storage/book/bible{ pixel_x = 6; @@ -28614,6 +28917,9 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/bar) +"orN" = ( +/turf/open/floor/grass/no_border, +/area/hallway/primary/aft) "orO" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/landmark/start/assistant, @@ -28625,6 +28931,29 @@ "orX" = ( /turf/closed/wall, /area/maintenance/department/engine) +"osq" = ( +/obj/effect/turf_decal/tile/dark_blue{ + alpha = 180 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/hallway/primary/fore) "osA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 @@ -28634,18 +28963,17 @@ }, /turf/open/floor/iron, /area/ai_monitored/turret_protected/aisat/maint) -"osB" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +"osM" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "1-4" }, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -32 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/maintenance/department/medical/morgue) +/turf/open/floor/plating, +/area/maintenance/department/engine) "osP" = ( /obj/structure/rack, /obj/effect/turf_decal/bot, @@ -28659,19 +28987,6 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) -"ote" = ( -/obj/machinery/telecomms/relay/preset/auto, -/obj/machinery/door/window/northleft{ - name = "Engi Desk"; - req_one_access_txt = "32;19" - }, -/obj/structure/window/reinforced/survival_pod, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/hallway/primary/fore) "oth" = ( /obj/structure/sign/warning/explosives, /turf/closed/wall, @@ -28700,6 +29015,18 @@ }, /turf/open/floor/carpet/red, /area/crew_quarters/heads/hos) +"otu" = ( +/mob/living/simple_animal/chicken/turkey{ + atmos_requirements = list("min_oxy" = 0, "max_oxy" = 0, "min_tox" = 0, "max_tox" = 0, "min_co2" = 0, "max_co2" = 0, "min_n2" = 0, "max_n2" = 0); + desc = "A veteran of Nanotrasen's Animal Experimentation Program that attempted to replicate the organic space suit that some hostile entities are known to have exhibited, Tom now serves Nanotrasen as the mascot of the Exploration Crew."; + health = 200; + maxHealth = 200; + melee_damage = 5; + minbodytemp = 2.7; + name = "Tom" + }, +/turf/open/floor/mineral/plastitanium, +/area/asteroid/paradise/surface) "otW" = ( /obj/effect/turf_decal/box, /obj/machinery/holopad, @@ -28713,6 +29040,14 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/security/brig) +"oua" = ( +/obj/machinery/door/airlock{ + id_tag = "Toilet 1"; + name = "Toilet Unit" + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/techmaint/planetary, +/area/hallway/primary/fore) "ouA" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ @@ -28730,6 +29065,23 @@ }, /turf/open/floor/iron/sepia, /area/quartermaster/storage) +"ouI" = ( +/obj/structure/lattice/catwalk/over, +/obj/structure/table, +/obj/item/paper/fluff/jobs/security/beepsky_mom{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/clothing/accessory/armband/deputy, +/obj/item/storage/fancy/cigarettes/cigpack_robust{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/openspace, +/area/hallway/primary/fore) "ouO" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -28758,6 +29110,15 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, /area/science/lab) +"ove" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/flora/rock/pile, +/turf/open/floor/iron/techmaint/planetary, +/area/asteroid/paradise/surface) "ovg" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -28774,6 +29135,12 @@ }, /turf/open/floor/prison/dark, /area/security/prison) +"ovn" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/engineering/hallway) "ovD" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/sepia/planetary{ @@ -28801,17 +29168,6 @@ }, /turf/open/floor/iron/dark, /area/security/brig) -"ovP" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/iron, -/area/hallway/primary/aft) "ovX" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/sand/plating, @@ -28822,6 +29178,19 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) +"ovZ" = ( +/obj/item/stack/cable_coil{ + amount = 5 + }, +/obj/item/stack/cable_coil{ + amount = 5; + pixel_x = 1; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/turf/open/floor/wood/broken, +/area/library/abandoned) "oxg" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -28846,21 +29215,14 @@ }, /turf/open/openspace, /area/hydroponics) -"oxy" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/open/floor/iron, -/area/hallway/primary/aft) "oxK" = ( /turf/open/floor/iron/dark, /area/maintenance/department/crew_quarters/dorms) +"oyg" = ( +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/iron/grid/steel, +/area/medical/patients_rooms) "oyk" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 @@ -28871,28 +29233,38 @@ /obj/machinery/portable_atmospherics/canister, /turf/open/floor/iron/tech, /area/engine/atmos) -"oyV" = ( +"oyM" = ( /obj/structure/cable/yellow{ - icon_state = "4-8" + icon_state = "1-2" }, -/turf/open/floor/plating, -/area/maintenance/department/medical/central) -"ozb" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" +/obj/machinery/conveyor_switch/oneway{ + dir = 1; + id = "packageSort2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/effect/landmark/start/cargo_technician, +/obj/structure/cable/yellow{ + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 + dir = 5 }, -/obj/machinery/digital_clock/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 }, -/turf/open/floor/wood, -/area/chapel/main) +/obj/structure/disposalpipe/sorting/mail/destination/dormitories{ + dir = 8 + }, +/turf/open/floor/iron, +/area/quartermaster/sorting) +"oyV" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) "ozj" = ( /obj/structure/flora/rock/pile, /turf/open/floor/plating/asteroid/planetary, @@ -28931,6 +29303,18 @@ "ozT" = ( /turf/open/floor/iron/grid/steel, /area/medical/patients_rooms) +"oAk" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/engineering/hallway) "oAv" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, @@ -28984,12 +29368,27 @@ "oCE" = ( /turf/open/openspace, /area/engine/atmos) -"oCL" = ( -/obj/effect/turf_decal/tile/blue/half/contrasted{ +"oDI" = ( +/obj/structure/fence/corner{ + dir = 6 + }, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) +"oDM" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/open/floor/iron, -/area/hallway/primary/central) +/obj/machinery/light{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 1; + pixel_x = 32; + pixel_y = 3 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) "oDR" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -29007,6 +29406,18 @@ }, /turf/open/floor/catwalk_floor/iron_dark, /area/medical/medbay/central) +"oDU" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/iron/white/side{ + dir = 10 + }, +/area/science/lab) "oEg" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -29061,6 +29472,13 @@ /obj/effect/turf_decal/bot/right, /turf/open/floor/iron/white, /area/science/xenobiology) +"oEz" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/maintenance/department/engine) "oEJ" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -29084,16 +29502,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/carpet/green, /area/crew_quarters/cafeteria) -"oFr" = ( -/obj/structure/railing/corner, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/tile/purple/fourcorners/contrasted, -/obj/effect/turf_decal/siding/white/corner, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/iron/white, -/area/science/lab) "oFs" = ( /obj/structure/railing/corner{ dir = 1 @@ -29174,19 +29582,14 @@ /turf/open/floor/plating, /area/quartermaster/warehouse) "oHn" = ( -/obj/structure/table/optable{ - pixel_y = 7 - }, -/obj/item/surgical_drapes{ - pixel_y = 4 - }, -/obj/machinery/light, -/obj/item/clothing/gloves/color/latex{ - pixel_x = -1; - pixel_y = -1 +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ + dir = 4 }, -/turf/open/floor/iron, -/area/medical/surgery) +/turf/open/floor/iron/tech, +/area/engine/engineering) "oHx" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -29233,9 +29636,25 @@ }, /turf/open/floor/iron/white, /area/medical/medbay/central) -"oIi" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark/side{ +"oIl" = ( +/obj/machinery/door/airlock/engineering/glass/critical{ + heat_proof = 1; + name = "Supermatter Chamber"; + req_access_txt = "10" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"oJd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ dir = 4 }, /area/hallway/primary/aft) @@ -29267,6 +29686,60 @@ /obj/structure/window/plasma/reinforced, /turf/open/floor/iron, /area/engine/atmos) +"oJY" = ( +/obj/structure/table/wood, +/obj/item/soap{ + pixel_y = 9 + }, +/obj/item/camera{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/taperecorder{ + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/library/abandoned) +"oKf" = ( +/obj/structure/closet/secure_closet/hop, +/obj/item/modular_computer/tablet/pda, +/obj/item/modular_computer/tablet/pda, +/obj/item/modular_computer/tablet/pda, +/obj/item/modular_computer/tablet/pda, +/obj/item/modular_computer/tablet/pda, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/heads/hop) +"oKo" = ( +/obj/machinery/firealarm/directional/south, +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_y = 7 + }, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_y = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/security/armory) "oKy" = ( /obj/machinery/holopad, /obj/effect/turf_decal/stripes/line{ @@ -29283,13 +29756,33 @@ }, /turf/open/floor/iron/dark, /area/gateway) -"oKL" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ +"oKH" = ( +/obj/effect/turf_decal/tile/purple/fourcorners/contrasted, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/disposalpipe/sorting/mail/destination/xenobiology{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/science/research) +"oLh" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ dir = 8 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/security/brig) +/area/hallway/primary/aft) "oLi" = ( /obj/effect/turf_decal/caution/stand_clear, /obj/structure/cable/yellow{ @@ -29332,12 +29825,6 @@ }, /turf/open/floor/iron/dark, /area/engine/engineering) -"oLq" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) "oLK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/chair/stool/directional/west, @@ -29366,45 +29853,19 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/engine/engineering) -"oLX" = ( -/obj/item/kirbyplants/random{ - pixel_y = 22 - }, -/obj/machinery/power/apc/auto_name/directional/west{ - pixel_x = -24 +"oMh" = ( +/obj/structure/railing{ + dir = 4 }, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "1-2" +/obj/effect/turf_decal/siding/dark{ + dir = 4 }, -/turf/open/floor/iron/dark, -/area/hallway/primary/aft) -"oMd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/iron/dark/side{ dir = 6 }, -/area/hallway/primary/central) -"oMe" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/frame/computer{ - anchored = 1 - }, -/obj/item/wallframe/apc{ - pixel_x = -2; - pixel_y = 29 - }, -/turf/open/floor/iron, -/area/asteroid/paradise) -"oMj" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -28 - }, -/obj/machinery/ore_silo, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/dark, -/area/security/nuke_storage) +/area/hallway/primary/aft) "oMm" = ( /obj/machinery/power/emitter/welded{ dir = 8 @@ -29526,28 +29987,27 @@ /obj/effect/spawner/room/threexthree, /turf/open/floor/plating, /area/maintenance/department/security/brig) -"oNR" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/food_cart, -/turf/open/floor/plating, -/area/hallway/secondary/service) -"oNY" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ +"oOl" = ( +/obj/effect/turf_decal/siding/dark/corner{ dir = 4 }, -/obj/effect/spawner/randomvend/snack, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","medbay") +/turf/open/floor/iron/dark/corner{ + dir = 4 }, -/turf/open/floor/iron, -/area/medical/medbay/central) +/area/hallway/primary/central) "oOr" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/crew_quarters/dorms) +"oOz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/iron/showroomfloor, +/area/crew_quarters/fitness/recreation) "oOA" = ( /obj/effect/turf_decal/tile/dark_green/fourcorners/contrasted, /mob/living/simple_animal/hostile/retaliate/frog{ @@ -29562,21 +30022,14 @@ }, /turf/open/floor/iron, /area/hydroponics) -"oOT" = ( -/obj/structure/closet/secure_closet/hop, -/obj/item/modular_computer/tablet/pda, -/obj/item/modular_computer/tablet/pda, -/obj/item/modular_computer/tablet/pda, -/obj/item/modular_computer/tablet/pda, -/obj/item/modular_computer/tablet/pda, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/machinery/light{ +"oOM" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/heads/hop) +/obj/machinery/telecomms/hub/preset, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) "oPi" = ( /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 1 @@ -29598,12 +30051,20 @@ dir = 4 }, /area/science/research) +"oPl" = ( +/obj/structure/filingcabinet/employment, +/turf/open/floor/wood/broken, +/area/library/abandoned) "oPm" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 4 }, /turf/open/floor/iron/grid/steel, /area/bridge) +"oPp" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) "oPC" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -29626,36 +30087,19 @@ /turf/open/floor/plating, /area/maintenance/disposal/incinerator) "oQj" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + alpha = 180; + dir = 8 }, -/obj/structure/cable{ - icon_state = "2-8" +/turf/open/floor/iron/dark/corner{ + dir = 4 }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/asteroid/paradise/surface) +/area/hallway/primary/central) "oQk" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/grille/broken, /turf/open/floor/plating, /area/maintenance/department/bridge) -"oQq" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/item/wrench, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/tech, -/area/engine/engineering) "oQu" = ( /obj/effect/spawner/room/fivexfour, /turf/open/floor/plating, @@ -29668,6 +30112,18 @@ }, /turf/open/floor/iron/sepia, /area/quartermaster/storage) +"oQF" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron/dark, +/area/engine/engineering) "oQQ" = ( /obj/machinery/camera/autoname/directional/south{ network = list("ss13","security") @@ -29681,27 +30137,15 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/security/prison) -"oRf" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ - alpha = 180 - }, -/obj/item/aicard{ - pixel_x = 6 - }, -/obj/item/storage/secure/briefcase{ - pixel_x = -2 - }, -/obj/item/storage/lockbox/loyalty, -/turf/open/floor/iron/dark, -/area/bridge) "oRo" = ( /obj/effect/spawner/lootdrop/glowstick/lit, /turf/open/floor/plating, /area/maintenance/department/engine) +"oRp" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/food_cart, +/turf/open/floor/plating, +/area/hallway/secondary/service) "oRs" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -29717,13 +30161,33 @@ }, /turf/open/floor/wood, /area/chapel/main) -"oSR" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/cable/yellow{ - icon_state = "4-8" +"oRE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 }, -/obj/machinery/digital_clock/directional/north, -/turf/open/floor/plating/asteroid/planetary, +/obj/machinery/flasher{ + id = "AI"; + name = "Meatbag Pacifier"; + pixel_x = -33; + pixel_y = 1 + }, +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname/directional/south{ + network = list("aiupload") + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"oRL" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/side, +/area/hallway/primary/aft) +"oRT" = ( +/obj/structure/fence{ + dir = 8 + }, +/obj/structure/sign/warning/securearea, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/grass, /area/asteroid/paradise/surface) "oSY" = ( /obj/machinery/door/poddoor/shutters{ @@ -29742,6 +30206,29 @@ }, /turf/open/floor/plating, /area/crew_quarters/cafeteria) +"oTh" = ( +/obj/machinery/door/airlock/security{ + name = "Detective's Office"; + req_access_txt = "4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/closeup{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/detectives_office) "oTt" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/animalhide/mothroach, @@ -29757,18 +30244,40 @@ }, /turf/open/floor/iron/white, /area/science/research) -"oUo" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/sign/painting/library{ +"oUg" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/noticeboard{ pixel_x = 1; - pixel_y = -32 + pixel_y = 28 }, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) +"oUB" = ( +/obj/structure/railing{ + dir = 4 }, -/turf/open/floor/iron, -/area/medical/surgery) +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/hallway/primary/central) "oUH" = ( /obj/structure/table/optable{ name = "Forensics Operating Table" @@ -29788,6 +30297,19 @@ }, /turf/open/floor/iron/dark, /area/security/detectives_office) +"oUR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/iron/white, +/area/medical/genetics/cloning) "oUT" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -29797,50 +30319,9 @@ /obj/structure/cable/yellow, /turf/open/floor/plating, /area/bridge) -"oVc" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating/asteroid/planetary, -/area/asteroid/paradise/surface) -"oVg" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/asteroid/paradise/surface) "oVh" = ( /turf/open/floor/plating/beach/coastline_t/sandwater_inner, /area/asteroid/paradise/surface) -"oVk" = ( -/turf/closed/wall/r_wall, -/area/medical/medbay/central) -"oVD" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = -6; - pixel_y = 14 - }, -/obj/item/bikehorn/rubberducky{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/storage/photo_album{ - pixel_x = 3; - pixel_y = -1 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/carpet/blue, -/area/crew_quarters/heads/captain/private) "oVJ" = ( /obj/effect/turf_decal/bot, /obj/item/clothing/suit/armor/riot{ @@ -29894,40 +30375,66 @@ /obj/item/radio, /turf/open/floor/iron/dark, /area/gateway) -"oWj" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ - dir = 4 +"oWa" = ( +/obj/structure/table/wood, +/obj/item/paper, +/obj/structure/sign/poster/official/random{ + pixel_x = -33 }, -/turf/open/floor/iron/tech, -/area/engine/engineering) -"oWy" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/library/abandoned) +"oXe" = ( +/turf/closed/wall, +/area/maintenance/department/medical/central) +"oXj" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + base_state = "rightsecure"; + dir = 4; + icon_state = "rightsecure"; + name = "Head of Personnel's Paperwork Door"; + req_access_txt = "57" }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 +/obj/machinery/door/window/northleft{ + dir = 8; + name = "Paperwork Window" }, -/turf/open/floor/iron/dark/side{ - dir = 4 +/obj/item/pen{ + pixel_x = 6; + pixel_y = 1 }, -/area/hallway/primary/central) -"oXd" = ( -/obj/structure/railing{ - dir = 9 +/obj/item/pen{ + pixel_x = 10; + pixel_y = 1 }, -/obj/effect/turf_decal/siding/dark{ - dir = 9 +/obj/item/pen{ + pixel_x = 8; + pixel_y = -3 }, -/obj/structure/closet/emcloset, +/obj/item/paper{ + pixel_x = -6 + }, +/obj/machinery/door/firedoor, +/obj/structure/desk_bell/speed_demon, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopshutter"; + name = "Privacy Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/iron, +/area/crew_quarters/heads/hop) +"oXl" = ( +/obj/structure/railing, +/obj/structure/closet/bombcloset, /obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, /turf/open/floor/iron/dark, -/area/hallway/primary/central) -"oXe" = ( -/turf/closed/wall, -/area/maintenance/department/medical/central) +/area/science/mixing) "oXZ" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -29937,6 +30444,28 @@ /obj/effect/spawner/lootdrop/maintenance/two, /turf/open/floor/plating, /area/maintenance/department/eva) +"oYL" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/engine/engineering) +"oYO" = ( +/obj/structure/railing{ + dir = 9 + }, +/turf/open/openspace, +/area/engineering/hallway) "oYP" = ( /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 1 @@ -29980,65 +30509,31 @@ }, /turf/open/floor/plating, /area/maintenance/department/chapel) -"oZk" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/catwalk_floor/iron_dark, -/area/asteroid/paradise/surface) "oZn" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/maintenance/department/eva) -"oZJ" = ( -/obj/item/stack/sheet/iron/fifty{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/stack/sheet/iron/fifty{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/stack/sheet/iron/fifty{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/stack/sheet/iron/fifty{ - pixel_y = 3 - }, -/obj/item/stack/sheet/plasteel{ - amount = 15; - pixel_x = 2 - }, -/obj/item/stack/sheet/mineral/plasma/fifty{ - amount = 5 - }, -/obj/item/stack/sheet/iron/fifty{ - pixel_x = 2; - pixel_y = 3 +"oZs" = ( +/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ + alpha = 180 }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/table, -/obj/machinery/requests_console{ - department = "Robotics Lab"; - name = "Robotics RC"; - pixel_x = -32; - pixel_y = -2; - receive_ore_updates = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/obj/structure/sign/painting/library{ - pixel_x = 1; - pixel_y = 29 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/obj/item/borg/upgrade/ai{ - pixel_x = 2 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/light{ - dir = 1 +/turf/open/floor/iron, +/area/hallway/primary/fore) +"oZL" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/atmos_waste/layer4{ + dir = 4 }, -/turf/open/floor/iron/dark, -/area/science/robotics) +/turf/open/floor/plating/asteroid/basalt/planetary, +/area/asteroid/paradise) "oZT" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 1 @@ -30092,10 +30587,6 @@ }, /turf/open/floor/prison/dark, /area/security/prison) -"pbk" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron, -/area/hallway/primary/fore) "pbq" = ( /obj/machinery/door/airlock/command{ name = "Head of Personnel's Office"; @@ -30133,6 +30624,45 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron, /area/hydroponics) +"pbz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/computer/med_data/laptop{ + dir = 4; + pixel_x = 2; + pixel_y = 2 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/heads/cmo) +"pcn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/fancy/comfy{ + color = "#666666"; + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/carpet/purple, +/area/library/abandoned) +"pcu" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 9 + }, +/turf/open/floor/glass/reinforced, +/area/medical/medbay/central) "pcy" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -30146,32 +30676,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/science/central) -"pcJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor{ - id = "AIwindows"; - name = "AI View Blast Door" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"pcL" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/northright{ - dir = 2; - name = "Engi Desk"; - req_one_access_txt = "32;19" - }, -/obj/item/toy/figure/engineer{ - pixel_x = 3; - pixel_y = -1 - }, -/obj/machinery/door/poddoor/preopen{ - id = "Engidesk"; - name = "engineering Security Door" - }, -/turf/open/floor/iron/dark, -/area/engine/engineering) "pcP" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -30200,6 +30704,12 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) +"pdf" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/openspace, +/area/hallway/primary/central) "pdm" = ( /turf/open/floor/plating/beach/coastline_t/sandwater_inner{ dir = 8 @@ -30234,24 +30744,40 @@ }, /turf/open/floor/plating/grass, /area/asteroid/paradise/surface) -"pfh" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = 4; - pixel_y = 3 +"pei" = ( +/obj/item/seeds/tea, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/hydroponics, +/turf/open/floor/iron, +/area/maintenance/department/medical/morgue) +"pfa" = ( +/obj/structure/railing/corner{ + dir = 4 }, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 4 +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 }, -/obj/machinery/light{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 1 }, -/obj/item/radio/intercom{ - pixel_y = 20 +/turf/open/floor/iron/dark/corner{ + dir = 4 }, -/turf/open/floor/iron, -/area/medical/surgery) +/area/hallway/primary/central) +"pfq" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/microwave{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/prison/dark, +/area/security/prison) "pfN" = ( /obj/structure/window/reinforced{ dir = 1 @@ -30274,6 +30800,11 @@ }, /turf/open/floor/catwalk_floor/iron_dark, /area/engine/atmos) +"pgl" = ( +/obj/machinery/firealarm/directional/north, +/obj/structure/lattice/catwalk/over, +/turf/open/openspace, +/area/maintenance/department/security/brig) "pgy" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/lavendergrass, @@ -30281,15 +30812,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise) -"pgO" = ( -/obj/structure/railing/corner{ - dir = 4 +"pgR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/machinery/light/small{ - dir = 4 +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 }, -/turf/open/openspace, -/area/hallway/primary/fore) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/iron, +/area/hallway/primary/central) "phc" = ( /obj/machinery/light/small{ dir = 4 @@ -30302,37 +30837,6 @@ }, /turf/open/openspace, /area/crew_quarters/kitchen) -"phm" = ( -/obj/machinery/door/poddoor/shutters{ - id = "exploration" - }, -/obj/machinery/button/door{ - desc = "A remote control switch."; - id = "exploration"; - name = "Exploration Shuttle Shutters"; - pixel_y = 24 - }, -/turf/open/floor/mineral/titanium, -/area/asteroid/paradise/surface) -"pih" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/security/glass{ - id_tag = "brigentrance"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "brigentrance"; - name = "Brig Blast Door" - }, -/turf/open/floor/iron/dark, -/area/security/brig) "pij" = ( /obj/structure/sign/departments/minsky/research/research, /turf/closed/wall/r_wall, @@ -30353,6 +30857,18 @@ "piQ" = ( /turf/closed/wall/rust, /area/maintenance/disposal) +"piY" = ( +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 9 + }, +/turf/open/floor/carpet/blue, +/area/bridge/meeting_room) "pjs" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/recharge_station, @@ -30361,15 +30877,6 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/storage) -"pjF" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - alpha = 180; - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/hallway/primary/aft) "pjN" = ( /obj/machinery/light_switch{ pixel_x = 8; @@ -30397,10 +30904,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"pjV" = ( -/obj/structure/sink/puddle, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) "pka" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 1 @@ -30410,6 +30913,17 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) +"pki" = ( +/obj/effect/turf_decal/siding/dark, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/railing/corner, +/turf/open/floor/iron/dark/side, +/area/hallway/primary/central) "pkH" = ( /obj/machinery/chem_master/condimaster, /obj/structure/railing{ @@ -30432,6 +30946,19 @@ }, /turf/open/floor/iron, /area/engine/engineering) +"pkZ" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/grass/no_border, +/area/hallway/primary/fore) "pld" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -30444,21 +30971,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/iron/dark, /area/crew_quarters/fitness/recreation) -"plh" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_x = 32; - pixel_y = 3 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) "pll" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/dark_green{ @@ -30481,59 +30993,47 @@ }, /turf/open/floor/plating/asteroid/planetary, /area/crew_quarters/dorms) +"pmc" = ( +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) "pmk" = ( /obj/machinery/camera/autoname/directional/east, /obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/engine/light, -/area/holodeck/small) -"pmo" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/small{ - dir = 1 + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/maintenance/department/medical/morgue) +/turf/open/floor/engine/light, +/area/holodeck/small) "pmx" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/asteroid/basalt/planetary, /area/asteroid/paradise) -"pnk" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/spawner/structure/window/hollow/survival_pod/directional, -/turf/open/floor/plating, -/area/hallway/primary/fore) -"pnn" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine/atmos) +"pnX" = ( +/turf/closed/wall, +/area/engineering/hallway) "pob" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/engine/atmos) -"poV" = ( -/obj/effect/turf_decal/tile/purple/anticorner/contrasted, -/obj/structure/table_frame, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = -2; - pixel_y = 3 +"poA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/turf/open/floor/iron, +/area/hallway/primary/aft) +"ppi" = ( +/obj/structure/railing{ + dir = 5 }, -/obj/item/slime_scanner{ - pixel_x = 6; - pixel_y = -2 +/obj/effect/turf_decal/siding/dark{ + dir = 5 }, -/turf/open/floor/iron, -/area/asteroid/paradise) +/obj/machinery/space_heater, +/turf/open/floor/iron/dark, +/area/hallway/primary/central) "ppj" = ( /obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ alpha = 180; @@ -30552,15 +31052,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/security/brig) -"ppr" = ( -/obj/machinery/atmospherics/components/unary/shuttle/heater{ - dir = 1 - }, -/obj/structure/window/reinforced/survival_pod{ - dir = 1 - }, -/turf/open/floor/plating/dirt/planetary, -/area/asteroid/paradise/surface) "ppQ" = ( /obj/machinery/light/small{ dir = 1 @@ -30573,47 +31064,26 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/crew_quarters/cryopods) -"pqi" = ( -/obj/structure/stairs, -/turf/open/floor/pod/dark, -/area/hallway/primary/aft) -"pqu" = ( -/obj/machinery/light{ - light_color = "#7AC3FF" - }, -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 +"ppX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 }, -/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-4" +/obj/machinery/ai_slipper{ + uses = 10 }, -/turf/open/floor/iron/grid/steel, -/area/medical/patients_rooms) +/turf/open/floor/carpet/blue, +/area/crew_quarters/heads/hop) "pqE" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/crew_quarters/cafeteria) -"pqZ" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/bodycontainer/morgue{ - dir = 2 +"prd" = ( +/obj/structure/chair/fancy/shuttle{ + dir = 1 }, -/turf/open/floor/iron/dark, -/area/medical/morgue) +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium, +/area/asteroid/paradise/surface) "psm" = ( /obj/effect/spawner/lootdrop/aimodule_neutral, /obj/effect/spawner/lootdrop/aimodule_neutral, @@ -30644,28 +31114,6 @@ }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) -"psr" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/dark/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"psv" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/effect/decal/cleanable/dirt, -/obj/item/hand_labeler, -/obj/item/food/grown/tea, -/obj/item/food/grown/grapes, -/obj/item/food/grown/cherries, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/maintenance/department/medical/morgue) "psS" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -30675,43 +31123,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/maintenance/department/science/central) -"psY" = ( -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/hallway/primary/central) -"psZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/central) -"ptb" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 5; - pixel_y = 11 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 9; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka{ - pixel_x = -7; - pixel_y = 17 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/security/nuke_storage) "ptc" = ( /obj/effect/turf_decal/stripes/closeup, /obj/machinery/door/airlock/maintenance_hatch{ @@ -30720,46 +31131,22 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"pti" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" +"ptj" = ( +/obj/machinery/light_switch{ + pixel_x = 24; + pixel_y = 24 }, -/turf/open/floor/iron/grid/steel, -/area/medical/patients_rooms) +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/iron/white, +/area/medical/apothecary) "ptP" = ( /obj/machinery/nanite_programmer, /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/science/research) -"ptZ" = ( -/obj/effect/turf_decal/stripes/box, -/obj/machinery/mineral/ore_redemption{ - input_dir = 2 - }, -/obj/item/food/donkpocket/pizza{ - pixel_x = 10; - pixel_y = 9 - }, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = 4; - pixel_y = 12 - }, -/turf/open/floor/iron/dark, -/area/quartermaster/storage) "pub" = ( /turf/open/openspace, /area/maintenance/department/security/brig) -"pvd" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input/layer4, -/turf/open/floor/engine/o2, -/area/engine/atmos) "pvC" = ( /obj/effect/turf_decal/numbers/two_nine, /obj/effect/turf_decal/bot, @@ -30833,24 +31220,17 @@ "pxs" = ( /turf/closed/mineral/bscrystal, /area/quartermaster/storage) -"pxu" = ( -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) "pyd" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/maintenance/department/cargo) -"pyn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light{ +"pyq" = ( +/obj/structure/lattice/catwalk/over, +/obj/structure/chair/foldable{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/iron/dark, -/area/engine/engineering) +/turf/open/openspace, +/area/hallway/primary/fore) "pyw" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -30874,27 +31254,6 @@ }, /turf/open/floor/carpet/red, /area/medical/exam_room) -"pyH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/bridge) "pyM" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -30905,6 +31264,15 @@ /obj/structure/sign/warning/fire, /turf/closed/wall/r_wall, /area/maintenance/disposal/incinerator) +"pzG" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + alpha = 180; + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/hallway/primary/fore) "pzQ" = ( /obj/structure/closet, /obj/effect/spawner/lootdrop/maintenance/two, @@ -30914,12 +31282,6 @@ /obj/structure/railing, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise/surface) -"pAd" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/openspace, -/area/engineering/hallway) "pAe" = ( /obj/machinery/newscaster{ pixel_y = 32 @@ -30948,19 +31310,38 @@ }, /turf/open/floor/plating, /area/maintenance/department/science/central) +"pBl" = ( +/obj/structure/railing/corner, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/airlock/atmos/glass{ + req_access_txt = "11" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible/layer5{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/engine/atmos) "pBm" = ( /obj/item/trash/waffles, /turf/open/floor/plating/beach/coastline_b{ dir = 1 }, /area/asteroid/paradise/surface/water) -"pBq" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/machinery/digital_clock/directional/north, -/turf/open/floor/pod/dark, -/area/crew_quarters/cafeteria) "pBB" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -30985,18 +31366,16 @@ /obj/effect/turf_decal/siding/wood, /turf/open/floor/carpet/green, /area/crew_quarters/cafeteria) -"pCa" = ( -/obj/machinery/door/airlock/engineering/glass/critical{ - heat_proof = 1; - name = "Supermatter Chamber"; - req_access_txt = "10" +"pBL" = ( +/obj/item/barcodescanner{ + name = "Scanner"; + pixel_x = -2; + pixel_y = 3 }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable/yellow{ - icon_state = "1-2" +/turf/open/floor/plating/beach/coastline_t/sandwater_inner{ + dir = 8 }, -/turf/open/floor/engine, -/area/engine/supermatter) +/area/asteroid/paradise/surface) "pCc" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 33 @@ -31004,6 +31383,44 @@ /obj/item/kirbyplants/random, /turf/open/floor/wood, /area/chapel/main) +"pCF" = ( +/obj/effect/turf_decal/tile/blue/half{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/iron/white, +/area/medical/medbay/central) +"pCQ" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel Office"; + req_access_txt = "27" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/chapel/office) "pCT" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -31037,17 +31454,19 @@ dir = 4 }, /area/medical/genetics/cloning) -"pDv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 +"pDx" = ( +/obj/structure/railing{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","public") +/obj/effect/turf_decal/siding/white{ + dir = 8 }, -/turf/open/floor/iron, -/area/maintenance/department/crew_quarters/dorms) +/obj/machinery/atmospherics/pipe/simple/general/hidden/layer4, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/mapping_helpers/simple_pipes/general/visible, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2, +/turf/open/floor/iron/grid/steel, +/area/medical/medbay/central) "pDD" = ( /obj/effect/turf_decal/stripes/line, /obj/item/radio/intercom{ @@ -31067,21 +31486,35 @@ }, /turf/open/floor/iron, /area/security/brig) -"pDR" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 +"pDS" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ + alpha = 180 }, -/obj/structure/bookcase/manuals/medical, -/obj/structure/cable/yellow{ - icon_state = "0-8" +/obj/effect/turf_decal/stripes/corner{ + dir = 5 }, -/turf/open/floor/wood, -/area/medical/exam_room) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/iron, +/area/hallway/primary/fore) "pEf" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/medical/surgery) +"pEh" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/yellow/corner, +/turf/open/floor/iron/dark, +/area/engineering/hallway) "pEs" = ( /obj/effect/turf_decal/box, /obj/machinery/ai_slipper{ @@ -31095,30 +31528,6 @@ "pEv" = ( /turf/closed/wall, /area/storage/primary) -"pEG" = ( -/obj/structure/lattice/catwalk/over, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera/autoname/directional/east, -/turf/open/openspace, -/area/hallway/primary/fore) -"pEJ" = ( -/obj/structure/lattice/catwalk/over, -/turf/open/openspace, -/area/engineering/hallway) -"pEN" = ( -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/turf/open/floor/iron/white/side{ - dir = 10 - }, -/area/science/lab) "pFh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/dark/visible, @@ -31144,6 +31553,10 @@ }, /turf/open/floor/iron/dark, /area/security/brig) +"pFV" = ( +/obj/effect/spawner/structure/window, +/turf/open/openspace, +/area/hallway/primary/central) "pFZ" = ( /obj/structure/railing{ dir = 1 @@ -31193,13 +31606,6 @@ }, /turf/open/floor/iron, /area/maintenance/department/bridge) -"pGy" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) "pGA" = ( /obj/effect/decal/cleanable/blood/old, /obj/item/hatchet, @@ -31210,6 +31616,32 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise) +"pGC" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/vending/wallmed{ + pixel_x = -32 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","medbay") + }, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/layer_4, +/turf/open/floor/iron/grid/steel, +/area/medical/medbay/central) +"pGF" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2{ + dir = 6 + }, +/turf/closed/wall, +/area/engine/supermatter) "pHe" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/door/airlock/maintenance_hatch{ @@ -31277,22 +31709,6 @@ /obj/machinery/door/airlock/public/glass, /turf/open/floor/iron/dark, /area/security/brig) -"pHJ" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/structure/disposalpipe/sorting/mail/destination/cargo_bay/flip{ - dir = 2 - }, -/turf/open/floor/iron/sepia, -/area/quartermaster/storage) "pHN" = ( /obj/machinery/portable_atmospherics/pump, /obj/effect/turf_decal/bot{ @@ -31312,6 +31728,11 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/bar) +"pIB" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plating, +/area/engine/supermatter) "pKj" = ( /obj/structure/flora/rock/pile, /obj/effect/turf_decal/sand/plating, @@ -31340,49 +31761,46 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/carpet/blue, /area/crew_quarters/cafeteria) -"pKG" = ( -/obj/item/radio/intercom{ - pixel_x = 1; - pixel_y = -30 +"pKx" = ( +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/tech, -/area/engine/engineering) -"pKX" = ( -/obj/machinery/light{ - dir = 4 +/obj/structure/cable/yellow{ + icon_state = "0-4" }, -/obj/machinery/camera/autoname/directional/east, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/central) -"pLd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/iron/dark, -/area/storage/tech) -"pLs" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" +/area/science/robotics) +"pKz" = ( +/obj/machinery/door/window/brigdoor/southright{ + dir = 4; + name = "Command Chair"; + req_access_txt = "19" }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 6 }, -/obj/structure/disposalpipe/multiz/down{ +/turf/open/floor/iron/grid/steel, +/area/bridge) +"pLd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 }, -/obj/structure/cable/yellow{ - icon_state = "2-4" +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/medical/medbay/central) +/turf/open/floor/iron/dark, +/area/storage/tech) "pLv" = ( /obj/effect/turf_decal/siding/white{ alpha = 100; @@ -31445,16 +31863,35 @@ }, /turf/open/floor/iron, /area/security/brig) -"pMV" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ - dir = 8 +"pMI" = ( +/obj/structure/table/wood, +/obj/machinery/light, +/obj/item/storage/fancy/candle_box{ + pixel_x = 3; + pixel_y = 3 }, -/obj/machinery/firealarm/directional/east, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/hallway/primary/aft) +/obj/item/storage/fancy/candle_box{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/pen/fountain/captain{ + pixel_x = 1; + pixel_y = 1 + }, +/obj/item/food/grown/flower/harebell{ + pixel_x = -12; + pixel_y = 5 + }, +/obj/item/food/grown/flower/harebell{ + pixel_x = 14; + pixel_y = 5 + }, +/obj/machinery/power/apc/auto_name/directional/south{ + pixel_y = -24 + }, +/obj/structure/cable/yellow, +/turf/open/floor/carpet/green, +/area/chapel/main) "pMW" = ( /turf/closed/wall/r_wall/rust, /area/maintenance/department/engine) @@ -31488,25 +31925,6 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/chapel/main) -"pOl" = ( -/obj/machinery/atmospherics/components/binary/pump/layer4{ - dir = 4; - name = "Port to Filter" - }, -/obj/machinery/atmospherics/components/binary/pump/layer2{ - dir = 8; - name = "Air to Ports" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/tech, -/area/engine/atmos) "pOn" = ( /obj/effect/turf_decal/tile/purple/fourcorners/contrasted, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -31527,6 +31945,30 @@ }, /turf/open/floor/iron/white, /area/science/research) +"pOA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/engine/engineering) +"pOE" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + alpha = 180 + }, +/turf/open/floor/iron, +/area/hallway/primary/central) "pPs" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/trimline/yellow, @@ -31543,69 +31985,34 @@ }, /turf/open/floor/iron, /area/maintenance/department/security/brig) -"pPP" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/machinery/door/poddoor/preopen{ - id = "brigfrontdoor"; - name = "Front Security Blast Door" - }, -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"pPR" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "2-4" }, -/turf/open/floor/iron, -/area/security/brig) -"pPZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/r_wall/rust, -/area/asteroid/paradise) +/turf/open/floor/catwalk_floor/iron_dark, +/area/asteroid/paradise/surface) "pQk" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, /area/maintenance/department/engine/atmos) -"pRW" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 +"pQS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{ + dir = 9 }, -/turf/open/floor/carpet/red, -/area/security/detectives_office) -"pRZ" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "1-2" +/turf/open/floor/iron/tech, +/area/engine/engineering) +"pRe" = ( +/obj/structure/fence{ + dir = 8 }, -/turf/open/floor/iron, -/area/maintenance/department/crew_quarters/bar) +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) "pSj" = ( /obj/machinery/camera/autoname/directional/east{ network = list("ss13","rd") @@ -31624,15 +32031,6 @@ }, /turf/open/floor/iron, /area/science/lab) -"pSK" = ( -/obj/effect/turf_decal/tile/dark_green/fourcorners/contrasted, -/obj/structure/sink{ - dir = 1; - pixel_y = 20 - }, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/iron, -/area/hydroponics) "pSN" = ( /obj/effect/turf_decal/siding/blue{ alpha = 100; @@ -31643,9 +32041,11 @@ "pSY" = ( /turf/open/floor/plating, /area/maintenance/department/chapel) -"pTq" = ( -/turf/open/floor/glass/reinforced, -/area/hallway/primary/central) +"pTs" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) "pTv" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/closed/wall, @@ -31654,6 +32054,20 @@ /obj/effect/landmark/carpspawn, /turf/open/floor/plating/beach/water, /area/asteroid/paradise/surface/water) +"pTM" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced/prison, +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" + }, +/turf/open/floor/plating, +/area/security/prison) "pTO" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -31697,6 +32111,19 @@ }, /turf/open/openspace, /area/maintenance/department/engine/atmos) +"pUe" = ( +/obj/machinery/door/poddoor/shutters{ + id = "atmosshutters"; + name = "Atmos Storage" + }, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/iron/dark, +/area/engine/atmos) "pUf" = ( /obj/structure/filingcabinet, /turf/open/floor/wood, @@ -31795,14 +32222,67 @@ }, /turf/open/floor/iron, /area/maintenance/disposal/incinerator) -"pVx" = ( +"pVj" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/structure/flora/rock/pile, +/obj/machinery/power/apc/auto_name/directional/east{ + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/iron, +/area/maintenance/department/engine) +"pVy" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, -/turf/open/floor/iron/techmaint/planetary, -/area/asteroid/paradise/surface) +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/turnstile{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" + }, +/obj/structure/fans/tiny, +/turf/open/floor/iron/dark, +/area/security/prison) +"pVC" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/medical/surgery) +"pVT" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) "pVY" = ( /turf/closed/wall, /area/engine/engineering) @@ -31816,6 +32296,18 @@ }, /turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat/maint) +"pWq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) +"pWv" = ( +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/hallway/primary/central) "pWG" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch"; @@ -31921,15 +32413,21 @@ }, /turf/open/floor/carpet/blue, /area/crew_quarters/heads/captain) -"pXQ" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment{ - dir = 4 +"pXA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/maintenance/department/medical/morgue) +"pXT" = ( +/obj/item/reagent_containers/food/drinks/bottle/beer{ + pixel_x = 6; + pixel_y = 27 }, -/turf/open/floor/plating, -/area/maintenance/department/engine) +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/iron/dark, +/area/science/mixing) "pYd" = ( /turf/open/floor/wood/broken, /area/hallway/secondary/service) @@ -31975,17 +32473,6 @@ /obj/structure/fence, /turf/open/floor/plating/dirt/planetary, /area/asteroid/paradise/surface/grass) -"qaK" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/turf/open/floor/iron, -/area/hallway/primary/aft) "qaU" = ( /turf/open/floor/iron, /area/maintenance/department/crew_quarters/dorms) @@ -32033,12 +32520,46 @@ }, /turf/open/floor/iron/dark, /area/crew_quarters/heads/captain) -"qbr" = ( -/obj/structure/cable/yellow{ - icon_state = "0-4" +"qbo" = ( +/obj/machinery/door/window{ + base_state = "rightsecure"; + dir = 4; + icon_state = "rightsecure"; + name = "Primary AI Core Access"; + obj_integrity = 300; + req_access_txt = "16" }, -/turf/closed/mineral/random/air, -/area/engine/atmos) +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Core shutters"; + name = "AI Core Shutter" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/light_switch{ + pixel_x = 6; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/camera/autoname/directional/south{ + network = list("aiupload") + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"qbw" = ( +/obj/structure/lattice/catwalk/over, +/obj/item/wirecutters{ + pixel_x = -6; + pixel_y = -12 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/hallway/primary/central) "qbN" = ( /turf/open/floor/plating/beach/coastline_t{ dir = 9 @@ -32047,34 +32568,10 @@ "qbW" = ( /turf/closed/wall/rust, /area/crew_quarters/dorms) -"qcb" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/aft) "qcr" = ( /obj/structure/sign/warning/explosives, /turf/closed/wall/mineral/titanium/survival, /area/asteroid/paradise/surface) -"qcv" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/frame/computer{ - anchored = 1; - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) "qcy" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted, /obj/structure/cable/yellow{ @@ -32084,6 +32581,15 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/iron/sepia, /area/quartermaster/storage) +"qcV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/aft) "qdc" = ( /obj/machinery/atmospherics/pipe/simple/general/visible/layer4{ dir = 6 @@ -32095,6 +32601,32 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/tech, /area/engine/atmos) +"qdf" = ( +/obj/machinery/power/smes, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating/asteroid/planetary, +/area/asteroid/paradise/surface) +"qdm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/wallframe/firealarm{ + pixel_x = 1; + pixel_y = -33 + }, +/turf/open/floor/wood, +/area/library/abandoned) +"qdy" = ( +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/engineering/hallway) "qdG" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/techstorage/RnD_secure, @@ -32107,15 +32639,6 @@ }, /turf/open/floor/iron/techmaint/planetary, /area/storage/tech) -"qdN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/iron/dark, -/area/bridge) "qdO" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -32129,47 +32652,44 @@ }, /turf/open/floor/plating, /area/maintenance/department/medical/morgue) -"qdV" = ( +"qdZ" = ( /obj/structure/cable/yellow{ - icon_state = "4-8" + icon_state = "1-8" }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/hallway/primary/aft) +/turf/open/floor/iron/grid/steel, +/area/medical/medbay/central) "qeb" = ( /obj/effect/spawner/structure/window, /obj/structure/barricade/wooden/crude, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) -"qen" = ( -/obj/effect/decal/cleanable/dirt/dust, +"qey" = ( /obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - alpha = 180; - dir = 1 - }, -/obj/effect/turf_decal/stripes/closeup, -/obj/machinery/door/poddoor/preopen{ - id = "brigentrance"; - name = "Brig Blast Door" + icon_state = "0-8" }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/security/brig) +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/cmo) "qeO" = ( /obj/structure/flora/rock/pile, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise) +"qeW" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/engine/engineering) "qfj" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -32200,40 +32720,23 @@ /obj/machinery/flasher/portable, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) -"qfZ" = ( -/turf/open/floor/mineral/plastitanium, -/area/asteroid/paradise/surface) -"qga" = ( -/obj/effect/turf_decal/tile/black/opposingcorners{ - dir = 1 - }, -/obj/machinery/photocopier, -/obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/directional/south{ - pixel_y = -24 - }, +"qgn" = ( /obj/structure/cable/yellow{ - icon_state = "0-8" + icon_state = "2-8" }, -/turf/open/floor/iron/white, -/area/crew_quarters/heads/hor) -"qgj" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/fernybush, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "HoP Queue Shutters" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 }, -/obj/structure/window/reinforced{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/structure/cable/yellow{ + icon_state = "2-4" }, -/turf/open/floor/grass/no_border, -/area/hallway/primary/fore) +/turf/open/floor/iron, +/area/maintenance/department/engine/atmos) "qgB" = ( /obj/structure/table/wood, /obj/effect/turf_decal/siding/wood{ @@ -32262,12 +32765,39 @@ /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/department/engine/atmos) -"qhp" = ( -/obj/structure/fence/corner{ +"qhg" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clothing/neck/stethoscope{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/reagent_containers/medspray/sterilizine{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) +/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron/grid/steel, +/area/medical/patients_rooms) +"qhq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "brigentrance"; + name = "Brig Blast Door" + }, +/turf/open/floor/plating, +/area/security/brig) "qhy" = ( /obj/structure/cable/yellow{ icon_state = "1-4" @@ -32285,20 +32815,6 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) -"qhz" = ( -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/spawner/structure/window/reinforced/prison, -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" - }, -/turf/open/floor/plating, -/area/security/prison) "qhA" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -32313,6 +32829,26 @@ "qhT" = ( /turf/closed/wall/r_wall, /area/maintenance/department/security/brig) +"qiC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/turf/open/floor/grass/no_border, +/area/hallway/primary/aft) +"qiD" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/light_switch{ + pixel_x = 25; + pixel_y = 40 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/turf/open/floor/iron/white, +/area/medical/surgery) "qiO" = ( /obj/effect/turf_decal/siding/white{ dir = 1 @@ -32326,24 +32862,8 @@ pixel_x = 6; pixel_y = 3 }, -/turf/open/floor/iron/cafeteria, -/area/crew_quarters/kitchen) -"qjd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/fancy/comfy{ - color = "#666666"; - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/carpet/purple, -/area/library/abandoned) -"qjh" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) +/turf/open/floor/iron/cafeteria, +/area/crew_quarters/kitchen) "qji" = ( /obj/machinery/space_heater, /obj/effect/turf_decal/bot{ @@ -32351,108 +32871,101 @@ }, /turf/open/floor/iron/dark, /area/engine/atmos) -"qjm" = ( -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/iron/solarpanel, -/area/asteroid/paradise/surface) "qjq" = ( /obj/structure/flora/grass/jungle/b, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4, /turf/open/floor/plating/asteroid/basalt/planetary, /area/asteroid/paradise) -"qju" = ( -/obj/effect/turf_decal/tile/black/opposingcorners{ +"qjr" = ( +/obj/structure/window/reinforced/survival_pod{ dir = 1 }, -/obj/machinery/light, -/obj/machinery/camera/autoname/directional/south{ - network = list("ss13","rd") - }, -/obj/machinery/firealarm/directional/south, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/iron/white, -/area/crew_quarters/heads/hor) -"qjB" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "bridgewindows"; - name = "Bridge View Blast doors"; - pixel_x = -6; - pixel_y = -2; - req_access_txt = "19" - }, -/obj/machinery/button/door{ - id = "bridgedoors"; - name = "Bridge Access Blast door"; - pixel_x = -6; - pixel_y = 8 +/obj/structure/frame, +/turf/open/floor/mineral/plastitanium, +/area/asteroid/paradise/surface) +"qjK" = ( +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 4 }, -/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ - alpha = 180 +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/machinery/light, -/obj/machinery/power/apc/auto_name/directional/south{ - pixel_y = -24 +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/security/brig) +"qjP" = ( +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_y = 29 }, -/obj/structure/cable/yellow, -/obj/item/camera{ - pixel_x = 2; - pixel_y = 6 +/obj/machinery/computer/cargo, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment{ + dir = 10 }, +/obj/machinery/firealarm/directional/east, /turf/open/floor/iron/dark, -/area/bridge) -"qjF" = ( -/obj/structure/railing{ - dir = 8 +/area/quartermaster/storage) +"qjT" = ( +/obj/structure/bookcase/random/adult, +/turf/open/floor/plating, +/area/library/abandoned) +"qka" = ( +/obj/structure/flora/ausbushes/fernybush, +/obj/effect/turf_decal/siding/white{ + alpha = 100; + dir = 6 }, -/obj/effect/turf_decal/siding/dark{ +/turf/open/floor/plating/asteroid/planetary, +/area/crew_quarters/dorms) +"qki" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 8 }, -/turf/open/floor/iron/dark/side{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4{ dir = 8 }, -/area/hallway/primary/central) -"qjI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/plasma_output{ - dir = 1 - }, -/turf/open/floor/engine/plasma, -/area/engine/atmos) -"qjR" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/effect/turf_decal/loading_area, -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" +/obj/machinery/door/airlock/public/glass/incinerator{ + frequency = null; + req_access_txt = "11"; + req_one_access = null }, +/turf/open/floor/plating/asteroid/planetary, +/area/asteroid/paradise) +"qkv" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 1 }, -/obj/structure/disposalpipe/sorting/mail/destination/atmospherics, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/box, /turf/open/floor/iron, -/area/security/prison) -"qka" = ( -/obj/structure/flora/ausbushes/fernybush, -/obj/effect/turf_decal/siding/white{ - alpha = 100; - dir = 6 +/area/hallway/primary/aft) +"qky" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 }, -/turf/open/floor/plating/asteroid/planetary, -/area/crew_quarters/dorms) +/obj/machinery/door/airlock/security/glass{ + id_tag = "brigentrance"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "brigentrance"; + name = "Brig Blast Door" + }, +/turf/open/floor/iron/dark, +/area/security/brig) "qkM" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -32462,6 +32975,14 @@ }, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) +"qlb" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cmoshutter"; + name = "CMO Office Shutters" + }, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/medbay/central) "qlg" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -32487,26 +33008,26 @@ /obj/structure/fans/tiny, /turf/open/floor/iron/techmaint/planetary, /area/science/mixing) -"qmb" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/glass/reinforced, -/area/hallway/primary/fore) -"qmd" = ( -/obj/structure/railing{ +"qlO" = ( +/obj/item/seeds/flower/harebell, +/obj/machinery/light/small, +/obj/effect/turf_decal/delivery, +/obj/machinery/hydroponics, +/turf/open/floor/iron, +/area/maintenance/department/medical/morgue) +"qlS" = ( +/obj/effect/spawner/structure/window, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - alpha = 180; +/turf/open/floor/plating, +/area/science/mixing) +"qms" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/hallway/primary/central) +/turf/open/floor/iron/dark, +/area/engine/engineering) "qmz" = ( /obj/machinery/holopad, /obj/effect/turf_decal/box, @@ -32524,58 +33045,19 @@ }, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise) -"qnI" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/iron/white, -/area/crew_quarters/heads/cmo) -"qnO" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/iron, -/area/hallway/primary/fore) "qnY" = ( /obj/structure/flora/ausbushes/lavendergrass, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise) -"qoc" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 10 - }, -/obj/effect/turf_decal/siding/dark/corner{ - dir = 4 +"qoo" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" }, -/obj/effect/turf_decal/trimline/dark/corner{ - dir = 4 +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/machinery/light/small, /turf/open/floor/iron/dark, -/area/engineering/hallway) -"qor" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/central) +/area/hallway/primary/aft) "qow" = ( /obj/structure/stairs, /turf/open/floor/pod/dark, @@ -32612,20 +33094,14 @@ }, /turf/open/floor/plating/grass, /area/asteroid/paradise/surface/grass) -"qpi" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/box, -/turf/open/floor/iron, -/area/hallway/primary/central) "qpS" = ( /turf/closed/mineral/random/air, /area/maintenance/disposal) -"qrH" = ( -/obj/machinery/door/airlock/external/glass{ - autoclose = 0.1 - }, -/turf/open/floor/plating/dirt/planetary, -/area/asteroid/paradise/surface) +"qqB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/lawyer, +/turf/open/floor/plating, +/area/library/abandoned) "qrO" = ( /obj/machinery/conveyor{ dir = 4; @@ -32636,18 +33112,29 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/storage) -"qse" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +"qsx" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 + }, /obj/structure/cable/yellow{ - icon_state = "1-2" + icon_state = "0-2" }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/tech, -/area/engine/engineering) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/pod/dark, +/area/maintenance/department/crew_quarters/dorms) +"qsz" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) "qsE" = ( /obj/structure/sign/directions/science{ dir = 4; @@ -32663,6 +33150,16 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, /area/maintenance/department/chapel) +"qte" = ( +/obj/machinery/rnd/production/techfab/department/service, +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/iron, +/area/hallway/secondary/service) "qti" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -32677,22 +33174,23 @@ /obj/machinery/power/tesla_coil, /turf/open/floor/iron, /area/engine/engineering) +"qtv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/iron, +/area/hallway/primary/aft) +"qtB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible/layer5{ + dir = 9 + }, +/turf/open/floor/iron/tech, +/area/engine/atmos) "qtI" = ( /turf/open/openspace, /area/bridge) -"quq" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine/atmos) "qur" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 4 @@ -32705,48 +33203,16 @@ }, /turf/open/floor/carpet/green, /area/chapel/main) -"quz" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/table, -/obj/item/stack/sheet/rglass{ - amount = 30; - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/stack/sheet/plasteel/fifty, -/obj/item/circuitboard/machine/shuttle/engine/plasma{ - pixel_y = 3 - }, -/obj/item/circuitboard/machine/shuttle/engine/plasma{ - pixel_x = -6 - }, -/obj/item/shuttle_creator{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/circuitboard/machine/exploration_equipment_vendor{ - pixel_y = 5 - }, -/obj/item/circuitboard/machine/shuttle/heater, -/turf/open/floor/iron/techmaint/planetary, -/area/asteroid/paradise/surface) "quA" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 }, /turf/open/floor/iron, /area/teleporter) -"quK" = ( -/obj/effect/turf_decal/siding/white, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/recharge_station, -/obj/structure/railing, -/turf/open/floor/iron, -/area/science/robotics) +"quB" = ( +/obj/structure/stairs, +/turf/open/floor/pod/dark, +/area/hallway/primary/fore) "qvu" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/stripes/corner{ @@ -32759,14 +33225,6 @@ /obj/structure/closet/secure_closet/evidence, /turf/open/floor/iron/dark, /area/security/brig) -"qvz" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/aft) "qvD" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -32782,6 +33240,13 @@ /obj/structure/lattice, /turf/open/openspace, /area/science/lab) +"qwe" = ( +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/mineral/titanium, +/area/asteroid/paradise/surface) "qwi" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, @@ -32792,12 +33257,6 @@ /obj/structure/chair/office, /turf/open/floor/iron/dark, /area/engine/atmos) -"qwr" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 6 - }, -/turf/open/floor/glass/reinforced, -/area/medical/medbay/central) "qwA" = ( /obj/structure/cable/yellow{ icon_state = "2-4" @@ -32838,64 +33297,30 @@ }, /turf/open/floor/iron, /area/engine/atmos) -"qxa" = ( -/obj/structure/lattice/catwalk/over, -/obj/structure/chair/foldable, -/turf/open/openspace, -/area/engineering/hallway) -"qxp" = ( -/obj/structure/closet/secure_closet/warden{ - anchored = 1 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - alpha = 180; - dir = 1 +"qxC" = ( +/obj/structure/table/wood/fancy/blue, +/obj/item/radio/intercom{ + pixel_x = -28 }, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/west, -/obj/item/restraints/handcuffs{ +/obj/item/storage/secure/briefcase{ pixel_x = -1; - pixel_y = -5 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/security/warden) -"qxA" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/bot_assembly/floorbot, -/turf/open/floor/plating/asteroid/basalt/planetary, -/area/asteroid/paradise) -"qxE" = ( -/obj/structure/stairs, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 + pixel_y = 6 }, -/turf/open/floor/pod/dark, -/area/science/mixing) +/obj/item/book/manual/wiki/sopservice, +/turf/open/floor/carpet/blue, +/area/crew_quarters/heads/hop) "qxQ" = ( /obj/machinery/firealarm/directional/east, /obj/effect/turf_decal/trimline/blue/filled/warning, /turf/open/floor/iron/grid/steel, /area/medical/medbay/central) -"qyj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "qm_warehouse"; - name = "warehouse Shutters" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" +"qyi" = ( +/obj/machinery/airalarm/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/iron/sepia, -/area/quartermaster/warehouse) +/area/hallway/primary/central) "qyw" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2, /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible/layer4{ @@ -32924,38 +33349,37 @@ }, /turf/open/floor/wood, /area/crew_quarters/theatre/backstage) -"qyK" = ( -/obj/structure/chair/fancy/shuttle{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/mineral/plastitanium, -/area/asteroid/paradise/surface) "qza" = ( /obj/structure/flora/ausbushes/lavendergrass, /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise) -"qzd" = ( -/obj/structure/ladder, -/obj/effect/turf_decal/stripes/line{ +"qzs" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/corner{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 1 +/obj/effect/turf_decal/stripes/corner{ + dir = 6 }, -/turf/open/floor/pod/dark, -/area/quartermaster/qm) -"qzj" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 5 +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/effect/turf_decal/trimline/dark/warning{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/turf/open/floor/iron/dark, -/area/engineering/hallway) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/tech, +/area/science/mixing/chamber) "qzt" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -32972,19 +33396,10 @@ }, /turf/open/floor/carpet/blue, /area/bridge/meeting_room) -"qzR" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/catwalk_floor/iron_dark, -/area/asteroid/paradise/surface) +"qAj" = ( +/obj/structure/chair/wood/wings, +/turf/open/floor/carpet/green, +/area/library/abandoned) "qAn" = ( /obj/effect/turf_decal/delivery, /obj/effect/decal/cleanable/dirt/dust, @@ -32997,12 +33412,52 @@ /obj/machinery/door/airlock/wood, /turf/open/floor/wood, /area/asteroid/paradise/surface) -"qAL" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2{ - dir = 5 +"qBl" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 4 }, -/turf/closed/wall, -/area/engine/supermatter) +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/item/paper/pamphlet/centcom/visitor_info{ + default_raw_text = " XCC-P5831 Visitor Information
\ntGreetings, visitor, to XCC-P5831! As you may know, this outpost was once \ntused as Nanotrasen's CENTRAL COMMAND STATION, organizing and coordinating company \ntprojects across the vastness of space.
\ntSince the completion of the much more efficient CC-A5831 on March 8, 2553, XCC-P5831 no longer \ntacts as NT's base of operations but still plays a very important role its corporate affairs; \ntserving as a supply and repair depot, as well as being host to its most important legal proceedings\nt and the thrilling pay-per-view broadcasts of PLASTEEL CHEF and THUNDERDOME LIVE.
\ntWe hope you enjoy your stay!"; + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/paper/pamphlet/centcom/visitor_info{ + default_raw_text = " XCC-P5831 Visitor Information
\ntGreetings, visitor, to XCC-P5831! As you may know, this outpost was once \ntused as Nanotrasen's CENTRAL COMMAND STATION, organizing and coordinating company \ntprojects across the vastness of space.
\ntSince the completion of the much more efficient CC-A5831 on March 8, 2553, XCC-P5831 no longer \ntacts as NT's base of operations but still plays a very important role its corporate affairs; \ntserving as a supply and repair depot, as well as being host to its most important legal proceedings\nt and the thrilling pay-per-view broadcasts of PLASTEEL CHEF and THUNDERDOME LIVE.
\ntWe hope you enjoy your stay!"; + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/paper/pamphlet/centcom/visitor_info{ + default_raw_text = " XCC-P5831 Visitor Information
\ntGreetings, visitor, to XCC-P5831! As you may know, this outpost was once \ntused as Nanotrasen's CENTRAL COMMAND STATION, organizing and coordinating company \ntprojects across the vastness of space.
\ntSince the completion of the much more efficient CC-A5831 on March 8, 2553, XCC-P5831 no longer \ntacts as NT's base of operations but still plays a very important role its corporate affairs; \ntserving as a supply and repair depot, as well as being host to its most important legal proceedings\nt and the thrilling pay-per-view broadcasts of PLASTEEL CHEF and THUNDERDOME LIVE.
\ntWe hope you enjoy your stay!"; + pixel_x = 7; + pixel_y = 2 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) +"qBu" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/item/radio/intercom{ + pixel_y = 24 + }, +/obj/machinery/newscaster{ + pixel_x = -32; + pixel_y = 34 + }, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/multiz{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/white, +/area/medical/medbay/central) "qBw" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -33013,50 +33468,20 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/engine/engineering) -"qBC" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "4-8" +"qBy" = ( +/obj/machinery/light_switch{ + pixel_x = -24; + pixel_y = -25 }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) +/obj/item/crowbar/red, +/turf/open/floor/wood, +/area/library/abandoned) "qCg" = ( /turf/open/floor/plating/beach/deep_water, /area/asteroid/paradise/surface/water) -"qCl" = ( -/obj/structure/rack, -/obj/item/circuitboard/machine/telecomms/bus, -/obj/item/circuitboard/machine/telecomms/broadcaster, -/turf/open/floor/iron/dark, -/area/engine/atmos) -"qCn" = ( -/obj/structure/lattice/catwalk/over, -/obj/item/wirecutters{ - pixel_x = -6; - pixel_y = -12 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/openspace, -/area/hallway/primary/central) -"qCO" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cmoshutter"; - name = "CMO Office Shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) +"qCv" = ( +/turf/open/floor/iron, +/area/hallway/primary/fore) "qDp" = ( /obj/machinery/requests_console{ announcementConsole = 1; @@ -33068,20 +33493,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/carpet/blue, /area/crew_quarters/heads/hop) -"qDH" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/effect/turf_decal/siding/white{ - alpha = 100 - }, -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/iron/white, -/area/crew_quarters/fitness/recreation) "qDJ" = ( /obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ alpha = 180; @@ -33093,13 +33504,6 @@ }, /turf/open/floor/iron/dark, /area/security/brig) -"qDP" = ( -/obj/structure/railing{ - dir = 10 - }, -/obj/structure/lattice, -/turf/open/openspace, -/area/engineering/hallway) "qEd" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -33124,40 +33528,66 @@ }, /turf/open/floor/iron, /area/engine/engineering) -"qFs" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" +"qFu" = ( +/obj/item/stack/sheet/iron/fifty{ + pixel_x = -2; + pixel_y = 5 }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 8 +/obj/item/stack/sheet/iron/fifty{ + pixel_x = -2; + pixel_y = 5 }, -/obj/structure/table/reinforced, -/obj/machinery/computer/med_data/laptop{ - dir = 4; +/obj/item/stack/sheet/iron/fifty{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/stack/sheet/iron/fifty{ + pixel_y = 3 + }, +/obj/item/stack/sheet/plasteel{ + amount = 15; + pixel_x = 2 + }, +/obj/item/stack/sheet/mineral/plasma/fifty{ + amount = 5 + }, +/obj/item/stack/sheet/iron/fifty{ pixel_x = 2; - pixel_y = 2 + pixel_y = 3 }, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment{ - dir = 9 +/obj/effect/turf_decal/stripes/corner, +/obj/structure/table, +/obj/machinery/requests_console{ + department = "Robotics Lab"; + name = "Robotics RC"; + pixel_x = -32; + pixel_y = -2; + receive_ore_updates = 1 }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/heads/cmo) +/obj/structure/sign/painting/library{ + pixel_x = 1; + pixel_y = 29 + }, +/obj/item/borg/upgrade/ai{ + pixel_x = 2 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/science/robotics) "qFF" = ( /turf/open/floor/wood, /area/crew_quarters/heads/captain) "qGg" = ( /turf/closed/wall, /area/maintenance/department/engine/atmos) -"qGy" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/maintenance/department/engine) -"qGC" = ( -/turf/open/floor/iron/dark/side{ - dir = 6 +"qGi" = ( +/obj/machinery/light{ + dir = 8 }, -/area/hallway/primary/aft) +/turf/open/openspace, +/area/hallway/primary/fore) "qGH" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -33192,26 +33622,16 @@ }, /turf/open/floor/iron/dark, /area/engine/atmos) +"qGR" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron, +/area/hallway/primary/aft) "qHP" = ( /turf/closed/wall, /area/security/execution/education) -"qHS" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_y = 25 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_y = 21 - }, -/obj/effect/turf_decal/siding/wood, -/obj/item/food/spaghetti/beefnoodle{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/turf_decal/siding/white, -/obj/structure/railing, -/turf/open/floor/carpet/green, -/area/crew_quarters/cafeteria) "qHY" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -33220,31 +33640,11 @@ /obj/structure/railing/corner, /turf/open/floor/plating, /area/quartermaster/storage) -"qIb" = ( -/obj/item/stack/cable_coil{ - amount = 5 - }, -/obj/item/stack/cable_coil{ - amount = 5; - pixel_x = 1; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood, -/turf/open/floor/wood/broken, -/area/library/abandoned) -"qIE" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/iron/tech, -/area/engine/atmos) -"qIN" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating/beach/sand, -/area/asteroid/paradise/surface) +"qId" = ( +/obj/structure/ladder, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/pod/dark, +/area/maintenance/department/science/central) "qIX" = ( /obj/docking_port/stationary{ dwidth = 3; @@ -33312,24 +33712,23 @@ /obj/effect/mapping_helpers/airlock/abandoned, /turf/open/floor/plating, /area/maintenance/department/science/central) -"qLm" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable{ - icon_state = "1-4" +"qMj" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = 9; + pixel_y = 6 }, -/obj/structure/cable{ - icon_state = "2-4" +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 3 }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/catwalk_floor/iron_dark, -/area/asteroid/paradise/surface) -"qLF" = ( -/obj/structure/fence/corner{ - dir = 8 +/obj/item/pen{ + pixel_x = -4; + pixel_y = 5 }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) +/turf/open/floor/iron, +/area/hallway/primary/aft) "qMA" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -33362,44 +33761,6 @@ /obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer2, /turf/open/floor/engine/air, /area/engine/atmos) -"qMT" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/openspace, -/area/hallway/primary/central) -"qNf" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/security/brig) -"qNm" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/siding/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/central) "qNq" = ( /obj/machinery/computer/cargo/request{ dir = 1 @@ -33408,22 +33769,6 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/wood, /area/crew_quarters/heads/hop) -"qNE" = ( -/obj/structure/lattice/catwalk/over, -/obj/structure/chair/foldable, -/obj/effect/landmark/start/chief_engineer, -/turf/open/openspace, -/area/engineering/hallway) -"qNU" = ( -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/start/chief_medical_officer, -/turf/open/floor/iron/white, -/area/crew_quarters/heads/cmo) "qOg" = ( /obj/machinery/suit_storage_unit/atmos, /obj/effect/turf_decal/stripes/line, @@ -33431,24 +33776,6 @@ /obj/machinery/firealarm/directional/north, /turf/open/floor/iron, /area/engine/engineering) -"qOj" = ( -/obj/structure/bed, -/obj/item/bedsheet/purple{ - name = "Holy bedsheet" - }, -/obj/machinery/newscaster{ - pixel_y = 34 - }, -/obj/machinery/camera/autoname/directional/north, -/obj/item/storage/secure/safe{ - pixel_x = -27; - pixel_y = 1 - }, -/obj/item/storage/book/bible{ - pixel_x = 1 - }, -/turf/open/floor/wood, -/area/chapel/office) "qOn" = ( /obj/structure/table/wood, /obj/item/soap/nanotrasen, @@ -33463,14 +33790,19 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating/rust, /area/science/test_area) -"qOB" = ( -/obj/effect/turf_decal/stripes/line{ +"qOE" = ( +/obj/structure/stairs, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 5 }, -/obj/machinery/rnd/production/circuit_imprinter, -/obj/structure/window/plasma/reinforced, -/turf/open/floor/iron, -/area/engine/engineering) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/pod/dark, +/area/science/mixing) "qON" = ( /obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ alpha = 180; @@ -33481,40 +33813,16 @@ }, /turf/open/floor/iron, /area/security/brig) -"qPe" = ( -/turf/closed/wall/r_wall/rust, -/area/asteroid/paradise) "qPg" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/closet/crate, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/bar) -"qPx" = ( -/obj/machinery/door/poddoor/shutters{ - id = "atmosshutters"; - name = "Atmos Storage" - }, -/obj/effect/turf_decal/loading_area{ +"qPS" = ( +/obj/structure/railing/corner{ dir = 1 }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/iron/dark, -/area/engine/atmos) -"qPC" = ( -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "test Chamber Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/explab) -"qPX" = ( -/obj/machinery/light{ - dir = 8 - }, /turf/open/openspace, /area/hallway/primary/fore) "qQo" = ( @@ -33534,19 +33842,6 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/sorting) -"qQx" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","security") - }, -/obj/item/kirbyplants/random, -/obj/structure/sink/kitchen{ - pixel_y = 22 - }, -/turf/open/floor/iron, -/area/security/brig) "qQD" = ( /obj/structure/cable/yellow{ icon_state = "0-2" @@ -33555,6 +33850,25 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron/dark, /area/engine/engineering) +"qQE" = ( +/obj/effect/turf_decal/siding/white, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/recharge_station, +/obj/structure/railing, +/turf/open/floor/iron, +/area/science/robotics) +"qQU" = ( +/obj/machinery/power/apc/auto_name/directional/south{ + pixel_y = -24 + }, +/obj/structure/cable/yellow, +/obj/machinery/sleeper{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/grid/steel, +/area/medical/patients_rooms) "qQW" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/multiz/layer4{ @@ -33572,22 +33886,18 @@ }, /turf/open/floor/plating, /area/ai_monitored/security/armory) -"qRc" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/hallway/primary/aft) "qRs" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/barricade/wooden, /turf/open/floor/iron, /area/maintenance/department/science/xenobiology) -"qRu" = ( -/obj/structure/lattice, -/turf/open/openspace, -/area/hallway/primary/central) +"qRB" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron/grid/steel, +/area/medical/medbay/central) "qRN" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -33636,17 +33946,17 @@ }, /turf/open/floor/iron/showroomfloor, /area/crew_quarters/fitness/recreation) -"qST" = ( -/obj/item/trash/popcorn, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 4 +"qSS" = ( +/obj/machinery/atmospherics/components/binary/valve, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"qSU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/disposalpipe/sorting/mail/destination/bar{ + dir = 1 }, -/turf/open/floor/iron, -/area/medical/surgery) +/turf/open/floor/wood/broken, +/area/crew_quarters/cafeteria) "qTU" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted, /obj/structure/table/wood, @@ -33698,17 +34008,6 @@ /obj/structure/railing, /turf/open/floor/iron, /area/bridge) -"qUn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "brigentrance"; - name = "Brig Blast Door" - }, -/turf/open/floor/plating, -/area/security/warden) "qUr" = ( /obj/effect/turf_decal/stripes/line, /obj/item/kirbyplants/random, @@ -33718,6 +34017,24 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /turf/open/floor/iron, /area/engine/atmos) +"qUt" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_y = 20 + }, +/turf/open/floor/iron, +/area/medical/surgery) "qUy" = ( /obj/effect/turf_decal/siding/wood/corner, /obj/structure/disposalpipe/segment{ @@ -33730,6 +34047,10 @@ /obj/structure/closet/emcloset/anchored, /turf/open/floor/iron, /area/maintenance/department/science/central) +"qUD" = ( +/obj/structure/flora/ash/tall_shroom, +/turf/open/floor/plating/asteroid/planetary, +/area/asteroid/paradise) "qUJ" = ( /obj/machinery/clonepod/prefilled, /obj/effect/turf_decal/bot, @@ -33760,22 +34081,28 @@ /obj/structure/rack, /turf/open/floor/plating, /area/maintenance/department/eva) -"qVo" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/cafeteria) "qVs" = ( /obj/structure/sign/warning/nosmoking/circle, /turf/closed/wall/r_wall/rust, /area/engine/atmos) +"qVN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/effect/turf_decal/numbers{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/sorting/mail/destination/hop_office/flip{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/hallway/primary/fore) "qVO" = ( /obj/effect/turf_decal/bot, /obj/structure/closet/crate, @@ -33792,6 +34119,29 @@ }, /turf/open/floor/plating, /area/crew_quarters/heads/hor) +"qWg" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/command, +/obj/effect/turf_decal/delivery, +/obj/item/radio/intercom{ + pixel_y = 29 + }, +/obj/machinery/power/apc/auto_name/directional/east{ + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/camera/motion/directional/east{ + c_tag = "Technical Storage"; + name = "motion-sensitive Technical Storage"; + network = list("ss13","engine") + }, +/turf/open/floor/iron/techmaint/planetary, +/area/storage/tech) "qWJ" = ( /obj/machinery/door/window/southleft{ dir = 4; @@ -33803,41 +34153,22 @@ }, /turf/open/floor/iron/dark, /area/science/mixing) -"qWU" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/light/floor, -/turf/open/floor/iron/dark, -/area/hallway/primary/aft) -"qWX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/wood, -/area/library/abandoned) -"qXb" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, +"qWS" = ( /obj/machinery/light{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 8 +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 +/obj/item/radio/intercom{ + dir = 1; + pixel_x = -30; + pixel_y = -2 }, -/obj/machinery/camera/autoname/directional/west{ - network = list("ss13","security") +/turf/open/floor/iron/dark/side{ + dir = 9 }, -/turf/open/floor/iron, -/area/security/brig) +/area/hallway/primary/aft) "qXt" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 8 @@ -33911,6 +34242,23 @@ }, /turf/open/floor/iron, /area/maintenance/department/medical/morgue) +"qYu" = ( +/obj/item/storage/fancy/donut_box{ + name = "Holy donut box"; + pixel_x = -4; + pixel_y = 17 + }, +/obj/item/radio/intercom{ + dir = 1; + pixel_x = 33; + pixel_y = -2 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/wood, +/area/chapel/office) "qYC" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -33918,6 +34266,22 @@ /obj/machinery/digital_clock/directional/south, /turf/open/floor/iron, /area/security/brig) +"qYP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 + }, +/turf/open/floor/plating, +/area/quartermaster/warehouse) "qYU" = ( /obj/machinery/computer/bounty{ dir = 1 @@ -33928,15 +34292,17 @@ /obj/structure/flora/tree/jungle, /turf/open/floor/plating/grass, /area/asteroid/paradise/surface) -"qZk" = ( -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 +"qZw" = ( +/obj/machinery/power/solar_control, +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/turf/open/floor/iron/white, -/area/crew_quarters/heads/cmo) +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/techmaint/planetary, +/area/asteroid/paradise/surface) "qZA" = ( /obj/structure/closet/secure_closet/miner, /obj/effect/turf_decal/bot, @@ -33961,6 +34327,22 @@ "qZN" = ( /turf/closed/indestructible/opshuttle, /area/science/test_area) +"qZR" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + alpha = 180 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/warden) "qZZ" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 @@ -33971,44 +34353,13 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/carpet/purple, /area/crew_quarters/cafeteria) -"rab" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/library/abandoned) -"ran" = ( -/obj/structure/table/reinforced, -/obj/item/storage/fancy/cigarettes/cigpack_carp{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/radio/intercom{ - pixel_y = 34 - }, -/obj/machinery/button/massdriver{ - id = "toxinsdriver"; - pixel_y = 26 - }, +"rak" = ( +/obj/effect/decal/cleanable/dirt/dust, /obj/machinery/light{ - dir = 4 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 1; - pixel_y = 3 - }, -/turf/open/floor/iron/dark, -/area/science/mixing) -"rat" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/obj/machinery/ai_slipper{ - uses = 10 + dir = 1 }, -/turf/open/floor/iron/dark, -/area/hallway/primary/aft) +/turf/open/floor/plating/asteroid/planetary, +/area/hallway/primary/fore) "raX" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/layer_manifold/visible{ @@ -34045,6 +34396,16 @@ slowdown = 0 }, /area/asteroid/paradise/surface) +"rca" = ( +/obj/structure/lattice/catwalk/over, +/obj/effect/turf_decal/trimline/yellow, +/obj/structure/cable/yellow{ + icon_state = "8-32" + }, +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/open/floor/plating, +/area/maintenance/department/science/central) "rck" = ( /obj/effect/turf_decal/caution/stand_clear, /obj/structure/disposalpipe/segment{ @@ -34052,27 +34413,24 @@ }, /turf/open/floor/iron, /area/security/brig) -"rcA" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +"rcr" = ( +/obj/structure/sign/departments/minsky/supply/hydroponics{ + pixel_x = -33 }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 +/obj/effect/turf_decal/tile/dark_green, +/turf/open/floor/iron, +/area/maintenance/department/medical/morgue) +"rcz" = ( +/obj/machinery/shower{ + name = "emergency shower"; + pixel_y = 12 }, -/obj/machinery/atmospherics/pipe/simple/orange/visible/layer5{ - dir = 6 +/obj/effect/turf_decal/stripes/end, +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/turf/open/floor/iron/tech, -/area/engine/atmos) +/turf/open/floor/noslip/standard, +/area/science/lab) "rcE" = ( /obj/structure/lattice/catwalk/over, /obj/machinery/modular_computer/console/preset/engineering{ @@ -34096,40 +34454,40 @@ }, /turf/open/floor/plating, /area/science/research) +"rcM" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/hallway/primary/fore) "rcQ" = ( /obj/structure/railing{ dir = 1 }, /turf/open/openspace, /area/ai_monitored/turret_protected/aisat/maint) -"rcR" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/sepia, -/area/quartermaster/storage) -"rcY" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/machinery/status_display/evac{ - pixel_y = -32 - }, -/turf/open/floor/iron, -/area/security/brig) -"rdf" = ( -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" +"rdi" = ( +/obj/structure/railing{ + dir = 6 }, -/obj/machinery/space_heater, -/turf/open/floor/iron, -/area/maintenance/department/medical/central) +/obj/structure/lattice, +/turf/open/openspace, +/area/hallway/primary/fore) "rdw" = ( /obj/structure/grille/broken, /turf/open/floor/iron, /area/maintenance/department/engine/atmos) +"rdU" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/maintenance/department/engine) "rdY" = ( /obj/machinery/light/small{ dir = 8 @@ -34141,19 +34499,13 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/dark, /area/medical/morgue) -"rem" = ( -/obj/machinery/dna_scannernew, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom{ - dir = 1; - pixel_x = 1; - pixel_y = 23 - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","medbay") +"ren" = ( +/obj/structure/railing{ + dir = 10 }, -/turf/open/floor/iron, -/area/medical/genetics/cloning) +/obj/structure/lattice, +/turf/open/openspace, +/area/hallway/primary/fore) "reS" = ( /obj/structure/railing/corner, /obj/effect/decal/cleanable/dirt/dust, @@ -34186,79 +34538,46 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plating, /area/maintenance/department/engine/atmos) -"rfc" = ( -/obj/structure/window/reinforced/spawner/north, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +"rfh" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/structure/cable/yellow{ + icon_state = "8-16" }, -/obj/effect/turf_decal/box/white, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) -"rff" = ( -/obj/structure/railing/corner, /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/airlock/atmos/glass{ - req_access_txt = "11" + dir = 6 }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/hallway/primary/central) +"rfF" = ( +/obj/machinery/light{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/orange/visible/layer5{ +/turf/open/openspace, +/area/hallway/primary/fore) +"rfL" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ dir = 4 }, -/turf/open/floor/iron/dark, -/area/engine/atmos) -"rfn" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, +/obj/machinery/computer/security, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron, +/area/bridge) +"rfT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/security/brig) -"rfC" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/iron, -/area/maintenance/department/crew_quarters/bar) +/turf/open/floor/catwalk_floor/iron_dark, +/area/engine/engineering) "rgj" = ( /obj/effect/turf_decal/delivery, /obj/effect/decal/cleanable/dirt/dust, @@ -34298,10 +34617,61 @@ }, /turf/open/floor/wood, /area/crew_quarters/theatre/backstage) -"rhg" = ( +"rgL" = ( +/obj/effect/turf_decal/tile/dark_red{ + alpha = 180; + color = "#DE3A3A"; + dir = 1 + }, /obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark/side, -/area/hallway/primary/aft) +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/hallway/primary/fore) +"rgP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/table, +/obj/item/assembly/igniter{ + pixel_x = 12; + pixel_y = -6 + }, +/obj/item/assembly/igniter{ + pixel_x = 15; + pixel_y = 6 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/machinery/power/apc/auto_name/directional/south{ + pixel_y = -24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/iron, +/area/storage/primary) +"rhe" = ( +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","rd") + }, +/obj/machinery/computer/security/telescreen/toxins{ + pixel_x = 1; + pixel_y = 30 + }, +/obj/machinery/doppler_array/research/science{ + dir = 4 + }, +/turf/open/floor/iron, +/area/science/mixing) "rhp" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/reagent_dispensers/watertank, @@ -34338,12 +34708,15 @@ }, /turf/open/floor/iron/white, /area/crew_quarters/fitness/recreation) -"riF" = ( -/obj/effect/turf_decal/siding/white, -/obj/item/kirbyplants/random, +"riG" = ( /obj/structure/railing, -/turf/open/floor/iron, -/area/science/robotics) +/obj/effect/turf_decal/tile/purple/fourcorners/contrasted, +/obj/effect/turf_decal/siding/white, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/science/lab) "riT" = ( /obj/machinery/button/door{ id = "meetingshutter"; @@ -34370,25 +34743,22 @@ }, /turf/open/floor/iron/dark, /area/bridge/meeting_room) +"rjf" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"rjx" = ( +/obj/structure/fence, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) "rjD" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/prison, /area/security/prison) -"rjG" = ( -/obj/machinery/computer/cargo/request{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/light, -/obj/machinery/status_display/supply{ - pixel_y = -32 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/aft) "rjX" = ( /obj/machinery/holopad, /obj/effect/turf_decal/box, @@ -34431,14 +34801,6 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating/airless, /area/science/mixing) -"rky" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/iron/tech, -/area/engine/engineering) "rkK" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -34446,16 +34808,6 @@ /obj/structure/chair/stool/directional/west, /turf/open/floor/iron, /area/medical/medbay/central) -"rkL" = ( -/obj/machinery/rnd/production/techfab/department/service, -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/iron, -/area/hallway/secondary/service) "rkR" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 5 @@ -34484,17 +34836,15 @@ /obj/item/pickaxe, /turf/open/floor/plating/asteroid/basalt/planetary, /area/quartermaster/storage) -"rll" = ( -/obj/structure/ladder, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/disposalpipe/segment{ - dir = 6 +"rlo" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/turf/open/floor/pod/dark, -/area/maintenance/department/engine) +/obj/effect/turf_decal/box/white, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) "rlr" = ( /obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ alpha = 180; @@ -34547,20 +34897,15 @@ }, /turf/open/floor/iron/dark, /area/gateway) -"rlN" = ( -/obj/machinery/door/airlock/research{ - name = "Toxins Launch Room Access"; - req_one_access_txt = "7;27" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 +"rlJ" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + alpha = 180; + dir = 8 }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/iron/dark/corner{ + dir = 1 }, -/turf/open/floor/iron, -/area/science/mixing) +/area/hallway/primary/aft) "rlP" = ( /obj/effect/turf_decal/sand/plating, /obj/machinery/light/floor, @@ -34574,16 +34919,6 @@ /obj/structure/cable/yellow, /turf/open/floor/plating, /area/ai_monitored/security/armory) -"rmk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-16" - }, -/obj/effect/turf_decal/trimline/yellow, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/pod/dark, -/area/maintenance/department/medical/morgue) "rmX" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/conveyor/inverted{ @@ -34596,28 +34931,49 @@ /obj/effect/spawner/room/threexthree, /turf/open/floor/plating, /area/maintenance/department/medical/central) +"rnq" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/under/suit/tan, +/obj/item/reagent_containers/food/drinks/bottle/champagne{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet/purple, +/area/crew_quarters/dorms) +"rnv" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/lattice, +/turf/open/openspace, +/area/engineering/hallway) +"rnE" = ( +/obj/machinery/light_switch{ + pixel_x = -24; + pixel_y = 27 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/machinery/status_display/ai{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/security/detectives_office) "rnG" = ( /obj/effect/turf_decal/delivery, /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /turf/open/floor/iron/dark, /area/science/mixing) -"rnO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Engidesk"; - name = "engineering Security Door" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"rnR" = ( -/obj/machinery/vending/autodrobe/all_access, -/obj/machinery/airalarm/directional/north, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/wood, -/area/crew_quarters/theatre/backstage) "roc" = ( /obj/structure/table/reinforced, /obj/item/paper_bin{ @@ -34633,11 +34989,6 @@ }, /turf/open/floor/iron/dark, /area/security/nuke_storage) -"roh" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/tech, -/area/engine/engineering) "roj" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 @@ -34645,30 +34996,28 @@ /obj/effect/turf_decal/trimline/dark_red/filled/warning, /turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat_interior) -"ros" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/openspace, -/area/hallway/primary/fore) "roN" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/department/security/brig) -"rpn" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable{ - icon_state = "4-8" +"rpb" = ( +/obj/structure/railing{ + dir = 9 }, -/obj/structure/cable{ - icon_state = "1-4" +/obj/effect/turf_decal/siding/dark{ + dir = 9 }, -/obj/structure/cable{ - icon_state = "2-4" +/obj/machinery/space_heater, +/turf/open/floor/iron/dark, +/area/hallway/primary/central) +"rpq" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_one_access_txt = "12;7;29" }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/catwalk_floor/iron_dark, -/area/asteroid/paradise/surface) +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/engine) "rpu" = ( /obj/structure/table/wood, /obj/item/paper_bin, @@ -34678,65 +35027,21 @@ }, /turf/open/floor/iron/dark, /area/bridge/meeting_room) -"rpC" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/camera/autoname/directional/south{ - network = list("ss13","cargo") - }, -/obj/structure/table/reinforced, -/obj/item/stack/package_wrap{ - pixel_x = -15 - }, -/obj/item/stack/package_wrap{ - pixel_x = -16; - pixel_y = 10 - }, -/obj/item/stack/wrapping_paper{ - pixel_x = -15; - pixel_y = 5 - }, -/obj/item/dest_tagger{ - pixel_x = -7; - pixel_y = 3 - }, -/obj/item/dest_tagger{ - pixel_x = -2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/item/storage/box{ - pixel_x = 5; - pixel_y = 8 - }, -/obj/item/storage/box{ - pixel_x = 7; - pixel_y = 6 - }, -/obj/item/storage/box{ - pixel_x = 10; - pixel_y = 4 - }, -/obj/item/storage/box{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/quartermaster/sorting) "rpH" = ( /obj/machinery/light{ dir = 4 }, /turf/open/openspace, /area/hydroponics) -"rpX" = ( -/turf/closed/wall/r_wall/rust, -/area/quartermaster/storage) +"rpV" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating/asteroid/planetary, +/area/asteroid/paradise/surface) "rqj" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/flora/ausbushes/sparsegrass, @@ -34751,9 +35056,16 @@ }, /turf/open/floor/plating/grass, /area/asteroid/paradise/surface/grass) -"rqy" = ( -/turf/open/floor/mineral/titanium, -/area/asteroid/paradise/surface) +"rqE" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/evac{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/maintenance/department/engine) "rqF" = ( /turf/closed/wall/r_wall, /area/tcommsat/server) @@ -34770,27 +35082,24 @@ /obj/effect/spawner/room/fivexthree, /turf/open/floor/plating, /area/maintenance/department/science/central) -"rru" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ +"rrt" = ( +/obj/structure/railing{ dir = 1 }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, /obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 }, -/turf/open/floor/iron/sepia, -/area/quartermaster/storage) +/turf/open/floor/iron, +/area/engine/engineering) "rrC" = ( /obj/structure/sign/departments/minsky/security/security, /turf/closed/wall/r_wall, @@ -34805,13 +35114,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/teleporter) -"rse" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/openspace, -/area/hallway/primary/fore) "rsH" = ( /obj/effect/turf_decal/numbers{ dir = 1 @@ -34857,28 +35159,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/dark, /area/security/prison) -"rtQ" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/openspace, -/area/hallway/primary/fore) -"rtT" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12; - pixel_y = 3 - }, -/obj/structure/mirror{ - pixel_x = 32; - pixel_y = -1 - }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/freezer, -/area/hallway/primary/fore) "rtX" = ( /obj/machinery/door/airlock/public/glass{ name = "Primary Tool Storage"; @@ -34903,24 +35183,17 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/iron/dark, /area/storage/primary) -"rub" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/railing{ +"ruw" = ( +/obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/turf/open/floor/iron/dark, -/area/hallway/primary/aft) -"ruE" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 10 +/obj/structure/disposalpipe/junction/flip{ + dir = 4 }, -/obj/effect/turf_decal/trimline/yellow/corner, -/obj/effect/turf_decal/trimline/dark/warning{ +/turf/open/floor/iron/dark/corner{ dir = 8 }, -/turf/open/floor/iron/dark, -/area/engineering/hallway) +/area/hallway/primary/fore) "ruO" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 6 @@ -34946,22 +35219,6 @@ slowdown = 0 }, /area/asteroid/paradise/surface) -"rvk" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/south{ - pixel_y = -24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/iron, -/area/maintenance/department/chapel) "rvl" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/reagent_dispensers/watertank, @@ -35017,18 +35274,20 @@ "rxi" = ( /turf/open/floor/plating/dirt/planetary, /area/asteroid/paradise/surface) -"rxt" = ( -/obj/effect/spawner/lootdrop/glowstick/lit, -/obj/structure/disposalpipe/segment{ - dir = 5 +"rxA" = ( +/obj/structure/table, +/obj/item/shovel/spade, +/obj/item/reagent_containers/glass/bottle/nutrient/rh{ + pixel_x = 5 }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"rxI" = ( -/obj/structure/railing, -/obj/structure/lattice, -/turf/open/openspace, -/area/engineering/hallway) +/obj/item/reagent_containers/glass/bottle/nutrient/ez{ + pixel_x = -5 + }, +/obj/item/reagent_containers/syringe, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/maintenance/department/medical/morgue) "rxQ" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch"; @@ -35047,6 +35306,34 @@ }, /turf/open/floor/plating/asteroid/planetary, /area/quartermaster/storage) +"ryA" = ( +/obj/machinery/power/apc/auto_name/directional/south{ + pixel_y = -24 + }, +/obj/machinery/vending/wardrobe/jani_wardrobe, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted, +/obj/structure/cable/yellow, +/turf/open/floor/iron, +/area/janitor) +"ryR" = ( +/obj/effect/turf_decal/siding/white{ + alpha = 100; + dir = 4 + }, +/obj/structure/sink{ + dir = 1; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/white, +/area/crew_quarters/fitness/recreation) "rzg" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -35061,16 +35348,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/engine/engineering) -"rzw" = ( -/obj/structure/lattice/catwalk/over, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/openspace, -/area/hallway/primary/central) "rzI" = ( /obj/structure/lattice/catwalk/over, /obj/structure/railing/corner{ @@ -35083,22 +35360,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise/surface/sand) -"rzL" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron, -/area/hallway/primary/fore) -"rzP" = ( -/obj/item/kirbyplants/random, -/obj/item/radio/intercom{ - dir = 1; - pixel_x = -30; - pixel_y = -2 - }, -/turf/open/floor/iron/dark/side{ - dir = 10 - }, -/area/hallway/primary/aft) "rzV" = ( /obj/structure/flora/rock/pile, /obj/effect/decal/cleanable/dirt, @@ -35138,13 +35399,22 @@ }, /turf/open/floor/iron, /area/medical/surgery) -"rAA" = ( -/obj/structure/lattice, -/obj/structure/railing{ +"rAu" = ( +/obj/structure/fence{ + dir = 8 + }, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) +"rAJ" = ( +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ dir = 1 }, -/turf/open/openspace, -/area/engineering/hallway) +/turf/open/floor/iron, +/area/hallway/primary/aft) "rAS" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/purple/fourcorners/contrasted, @@ -35176,52 +35446,52 @@ luminosity = 2 }, /area/ai_monitored/turret_protected/ai) +"rBl" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/hallway/primary/central) +"rBA" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/item/radio/intercom{ + dir = 1; + pixel_x = 29; + pixel_y = -2 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) "rBM" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/dorms) -"rBT" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/plasma, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","rd") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/science/mixing) "rBY" = ( /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/spawner/lootdrop/glowstick/lit, /turf/open/floor/iron, /area/maintenance/department/crew_quarters/dorms) -"rCo" = ( -/obj/effect/turf_decal/siding/wood, -/obj/effect/spawner/randomvend/cola, -/obj/machinery/airalarm/directional/west, -/obj/structure/sign/map/echo{ - pixel_y = 32 - }, -/turf/open/floor/carpet/green, -/area/crew_quarters/cafeteria) -"rCA" = ( -/obj/structure/window/reinforced/survival_pod{ - dir = 1 +"rDl" = ( +/obj/structure/chair/office/light{ + dir = 4 }, -/obj/structure/frame, -/turf/open/floor/mineral/plastitanium, -/area/asteroid/paradise/surface) -"rDh" = ( -/obj/machinery/computer/card, -/obj/item/radio/intercom{ - dir = 1; - pixel_x = 1; - pixel_y = 23 +/obj/effect/landmark/start/chemist, +/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/heads/hop) +/turf/open/floor/iron/white, +/area/medical/apothecary) "rDD" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 4 @@ -35258,11 +35528,6 @@ }, /turf/open/floor/iron/white, /area/science/lab) -"rEg" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/numbers, -/turf/open/floor/iron, -/area/hallway/primary/fore) "rEh" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 @@ -35284,13 +35549,6 @@ }, /turf/open/floor/iron/dark, /area/security/brig) -"rEs" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) "rEz" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/light/small{ @@ -35306,6 +35564,21 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plating, /area/maintenance/disposal) +"rEG" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Gas to Filter" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/iron/dark, +/area/engine/engineering) "rER" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -35331,31 +35604,37 @@ }, /turf/open/floor/plating, /area/maintenance/department/science/central) -"rFm" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/siding/dark{ - dir = 4 - }, +"rFB" = ( /obj/structure/cable/yellow{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark/side{ +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Mix to Turbine" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/area/hallway/primary/central) -"rFo" = ( -/obj/structure/flora/rock/pile/largejungle{ - pixel_x = -2; - pixel_y = -27 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/turf/open/floor/grass/no_border, -/area/hallway/primary/aft) +/turf/open/floor/iron/tech, +/area/engine/atmos) "rFF" = ( /turf/closed/wall, /area/ai_monitored/turret_protected/aisat/maint) +"rFV" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/turf/open/floor/iron, +/area/hallway/primary/aft) "rGh" = ( /turf/closed/indestructible/rock/bedrock, /area/space) @@ -35379,10 +35658,20 @@ }, /turf/open/floor/iron, /area/hydroponics) -"rGM" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron, +"rGG" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/spawner/randomvend/cola, +/obj/machinery/light, +/obj/machinery/status_display/evac{ + pixel_y = -32 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron/dark, /area/hallway/primary/fore) "rHi" = ( /obj/structure/extinguisher_cabinet{ @@ -35396,13 +35685,33 @@ }, /turf/open/floor/prison/dark, /area/security/prison) +"rHO" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/numbers/two_nine{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/iron, +/area/maintenance/department/chapel) "rHQ" = ( /obj/effect/spawner/room/fivexthree, /turf/open/floor/plating, /area/maintenance/department/bridge) -"rId" = ( -/turf/open/openspace, -/area/hallway/primary/central) +"rHY" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/evac, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/hallway/primary/fore) "rIj" = ( /obj/effect/spawner/room/threexthree, /turf/open/floor/plating, @@ -35428,29 +35737,6 @@ }, /turf/open/floor/iron, /area/engine/engineering) -"rIy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "brigentrance"; - name = "Brig Blast Door" - }, -/turf/open/floor/plating, -/area/security/brig) -"rIP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/structure/window/plasma/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/components/trinary/mixer/airmix/layer2/flipped{ - dir = 8 - }, -/turf/open/floor/iron, -/area/engine/atmos) "rIZ" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/table/reinforced, @@ -35516,24 +35802,6 @@ }, /turf/open/floor/plating/grass, /area/asteroid/paradise/surface) -"rLa" = ( -/obj/structure/stairs, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/pod/dark, -/area/hallway/primary/fore) -"rLn" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/catwalk_floor/iron_dark, -/area/asteroid/paradise/surface) "rLt" = ( /obj/machinery/computer/crew{ dir = 8 @@ -35568,29 +35836,6 @@ }, /turf/open/floor/iron, /area/storage/primary) -"rLQ" = ( -/obj/structure/table/wood, -/obj/item/food/grown/flower/poppy{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/candle/infinite{ - pixel_x = -9; - pixel_y = 12 - }, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/pen{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/carpet/green, -/area/chapel/main) -"rLR" = ( -/turf/open/floor/iron, -/area/hallway/primary/aft) "rMf" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -35598,21 +35843,6 @@ /obj/machinery/vending/tool, /turf/open/floor/iron, /area/engine/engineering) -"rMs" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/spawner/randomvend/snack, -/obj/machinery/light, -/obj/machinery/status_display/evac{ - pixel_y = -32 - }, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) "rMK" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -35625,6 +35855,9 @@ /obj/machinery/light, /turf/open/floor/plating/asteroid/planetary, /area/crew_quarters/dorms) +"rNb" = ( +/turf/open/floor/iron, +/area/hallway/primary/aft) "rNg" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ @@ -35648,24 +35881,16 @@ /obj/structure/flora/rock/pile, /turf/open/floor/plating/asteroid/planetary, /area/quartermaster/storage) -"rNY" = ( -/obj/structure/window/reinforced{ +"rNJ" = ( +/obj/structure/lattice/catwalk/over, +/obj/structure/railing/corner{ dir = 1 }, -/obj/machinery/door/window/northleft{ - dir = 8; - name = "Kitchen Delivery"; - req_one_access_txt = "28;25;35" - }, /obj/structure/disposalpipe/segment{ - dir = 8 + dir = 9 }, -/turf/open/floor/iron/freezer, -/area/crew_quarters/kitchen/coldroom) -"rOv" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium/survival, -/area/hallway/primary/fore) +/turf/open/openspace, +/area/engineering/hallway) "rOI" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/fence/post{ @@ -35679,30 +35904,68 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/iron, /area/engine/engineering) +"rPr" = ( +/obj/effect/turf_decal/tile/black/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/kirbyplants/random, +/obj/machinery/firealarm/directional/south, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","rd") + }, +/turf/open/floor/iron/white, +/area/crew_quarters/heads/hor) +"rPu" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/sorting/mail/destination/detective_office{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/brig) "rPI" = ( /obj/effect/spawner/room/threexfive, /turf/open/floor/plating, /area/maintenance/department/medical/morgue) +"rPJ" = ( +/obj/structure/stairs, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_x = -15; + pixel_y = -31 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/pod/dark, +/area/hallway/primary/fore) "rPT" = ( /turf/open/floor/plating, /area/maintenance/department/crew_quarters/dorms) -"rQf" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 +"rQe" = ( +/obj/structure/railing{ + dir = 9 }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "1-2" +/turf/open/openspace, +/area/hallway/primary/fore) +"rQg" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) +/turf/open/floor/iron, +/area/hallway/primary/central) "rQE" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -35740,6 +36003,11 @@ }, /turf/open/floor/iron, /area/engine/atmos) +"rRm" = ( +/obj/effect/turf_decal/box/white, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) "rRx" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -35750,32 +36018,32 @@ /obj/structure/cable/yellow, /turf/open/floor/plating, /area/maintenance/department/bridge) -"rRE" = ( -/obj/structure/table/reinforced, -/obj/item/circuitboard/machine/public_nanite_chamber, -/obj/item/circuitboard/machine/public_nanite_chamber{ - pixel_x = 2; - pixel_y = 1 - }, -/obj/item/circuitboard/machine/public_nanite_chamber{ - pixel_y = 4 - }, -/obj/item/circuitboard/machine/public_nanite_chamber{ - pixel_x = -2; - pixel_y = 7 - }, -/obj/machinery/newscaster{ - pixel_x = 31; - pixel_y = 1 +"rRL" = ( +/obj/structure/railing{ + dir = 1 }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/iron/dark/side{ + dir = 9 }, -/obj/structure/disposalpipe/multiz{ - dir = 8 +/area/hallway/primary/central) +"rRN" = ( +/obj/effect/turf_decal/tile/dark_green/fourcorners/contrasted, +/obj/structure/sink{ + dir = 1; + pixel_y = 20 }, +/obj/machinery/camera/autoname/directional/north, /turf/open/floor/iron, -/area/science/research) +/area/hydroponics) +"rRY" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/effect/turf_decal/trimline/yellow/warning, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/iron/dark, +/area/engineering/hallway) "rSc" = ( /obj/structure/railing{ dir = 4 @@ -35785,19 +36053,6 @@ "rSr" = ( /turf/open/floor/iron, /area/ai_monitored/turret_protected/aisat/maint) -"rSs" = ( -/obj/structure/window/plasma/reinforced{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/rad_collector/anchored, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/supermatter) "rSE" = ( /obj/structure/closet/secure_closet/hydroponics{ req_access = null; @@ -35811,15 +36066,6 @@ /obj/item/reagent_containers/glass/bucket, /turf/open/floor/iron/grid/steel, /area/hydroponics) -"rSI" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/computer/shuttle_flight/custom_shuttle/exploration, -/turf/open/floor/iron/techmaint/planetary, -/area/asteroid/paradise/surface) "rSK" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -35831,44 +36077,40 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/security/prison) -"rTM" = ( -/obj/effect/turf_decal/siding/yellow{ - dir = 4 +"rTp" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 }, -/obj/effect/turf_decal/siding/dark/corner{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 1 }, -/obj/effect/turf_decal/trimline/yellow/corner{ +/obj/structure/disposalpipe/sorting/mail/destination/cargo_bay/flip{ + dir = 2 + }, +/turf/open/floor/iron/sepia, +/area/quartermaster/storage) +"rTr" = ( +/obj/structure/chair/fancy/comfy{ + color = "#596479" + }, +/obj/effect/turf_decal/siding/wideplating/dark{ dir = 1 }, -/obj/effect/turf_decal/siding/dark/corner{ - dir = 8 +/obj/effect/landmark/start/captain, +/obj/machinery/light{ + dir = 1 }, -/turf/open/floor/iron/dark, -/area/engineering/hallway) +/obj/item/radio/intercom/directional/north, +/turf/open/floor/carpet/blue, +/area/bridge/meeting_room) "rUl" = ( /obj/machinery/space_heater, /turf/open/floor/plating, /area/maintenance/department/engine/atmos) -"rUD" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/iron/dark, -/area/engine/engineering) "rUJ" = ( /obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ alpha = 180; @@ -35883,21 +36125,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/rust, /area/science/test_area) -"rUW" = ( -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/obj/item/kirbyplants/random, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/machinery/digital_clock/directional/east, -/turf/open/floor/iron, -/area/bridge) "rVx" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -35912,35 +36139,18 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/tcommsat/computer) -"rWj" = ( +"rWo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/sand/plating, /obj/item/radio/intercom{ dir = 1; - pixel_x = -33; - pixel_y = -36 - }, -/obj/structure/disposalpipe/multiz/down{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/item/book/manual/wiki/cooking_to_serve_man, -/obj/item/book/manual/wiki/barman_recipes{ - pixel_x = 4; - pixel_y = -4 - }, -/turf/open/floor/iron/cafeteria, -/area/crew_quarters/kitchen) -"rWk" = ( -/obj/machinery/power/apc/auto_name/directional/south{ - pixel_y = -24 + pixel_x = -31; + pixel_y = -3 }, -/obj/machinery/vending/wardrobe/jani_wardrobe, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted, -/obj/structure/cable/yellow, /turf/open/floor/iron, -/area/janitor) +/area/hallway/primary/fore) "rWp" = ( /obj/effect/spawner/room/fivexfour, /turf/open/floor/plating, @@ -35953,17 +36163,6 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/pod/dark, /area/quartermaster/qm) -"rXh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Engidesk"; - name = "engineering Security Door" - }, -/turf/open/floor/plating, -/area/engine/engineering) "rXp" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -35977,6 +36176,19 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, /area/ai_monitored/turret_protected/aisat/maint) +"rXB" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/dark, +/turf/open/floor/iron/dark/side, +/area/hallway/primary/central) +"rXC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) "rXP" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 32; @@ -36029,16 +36241,6 @@ }, /turf/open/floor/wood, /area/crew_quarters/cafeteria) -"rYf" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/evac, -/turf/open/floor/iron/dark/side{ - dir = 10 - }, -/area/hallway/primary/fore) "rYh" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 @@ -36094,36 +36296,32 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/engine/engineering) -"rZv" = ( +"rZs" = ( /obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 + icon_state = "1-2" }, -/turf/open/floor/iron/dark, -/area/hallway/primary/aft) -"rZy" = ( -/obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ - icon_state = "4-8" + icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 2 }, -/turf/open/floor/plating, -/area/maintenance/department/engine) +/obj/machinery/door/airlock/command{ + name = "Chief Medical Officer's Office"; + req_access_txt = "40" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/iron/white, +/area/crew_quarters/heads/cmo) "rZM" = ( /turf/open/floor/plating, /area/maintenance/department/science/central) -"rZW" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/department/chapel) "sap" = ( /obj/docking_port/stationary{ dir = 8; @@ -36144,6 +36342,10 @@ }, /turf/open/floor/plating/airless, /area/maintenance/disposal) +"say" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating/asteroid/basalt/planetary, +/area/asteroid/paradise) "saC" = ( /obj/machinery/light_switch{ pixel_x = -5; @@ -36182,6 +36384,15 @@ }, /turf/open/floor/iron/dark, /area/gateway) +"saH" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/poddoor/preopen{ + id = "meetingshutter"; + name = "Council Blast Doors" + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark, +/area/bridge/meeting_room) "saM" = ( /turf/closed/wall, /area/maintenance/department/science/xenobiology) @@ -36191,15 +36402,6 @@ }, /turf/open/floor/engine, /area/science/xenobiology) -"saT" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/openspace, -/area/hallway/primary/fore) "sbg" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -36217,11 +36419,6 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"sbz" = ( -/obj/structure/barricade/wooden/crude, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/library/abandoned) "sbS" = ( /obj/effect/turf_decal/tile/neutral/anticorner/contrasted, /obj/structure/cable/yellow{ @@ -36232,16 +36429,24 @@ }, /turf/open/floor/iron, /area/security/brig) -"scq" = ( -/obj/machinery/holopad{ - pixel_x = 16; - pixel_y = 16 +"sbY" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 9 }, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/iron/white, -/area/medical/medbay/central) +/obj/machinery/disposal/bin, +/turf/open/floor/carpet/royalblue, +/area/crew_quarters/heads/chief) +"scl" = ( +/obj/machinery/atmospherics/components/binary/volume_pump/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/hallway/primary/aft) "scw" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -36251,25 +36456,6 @@ }, /turf/open/floor/iron, /area/maintenance/department/crew_quarters/dorms) -"scy" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/numbers/two_nine{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/science/mixing) "scX" = ( /obj/structure/railing{ dir = 6 @@ -36290,32 +36476,45 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plating, /area/maintenance/department/engine/atmos) -"sds" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ +"sdw" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 5; + pixel_y = 11 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 9; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka{ + pixel_x = -7; + pixel_y = 17 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 1 }, -/obj/machinery/telecomms/hub/preset, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) +/turf/open/floor/iron/dark, +/area/security/nuke_storage) "sdD" = ( /turf/closed/wall/r_wall/rust, /area/science/test_area) -"sdK" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_one_access_txt = "12;7;29" +"sdP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "qm_warehouse"; + name = "warehouse Shutters" }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"see" = ( -/obj/structure/railing/corner, -/obj/structure/railing/corner{ - dir = 1 +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/turf/open/openspace, -/area/engineering/hallway) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/iron/sepia, +/area/quartermaster/warehouse) "sel" = ( /obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ alpha = 180; @@ -36349,30 +36548,35 @@ }, /turf/open/floor/plating, /area/maintenance/department/bridge) -"sew" = ( -/obj/effect/turf_decal/trimline/dark/warning{ - dir = 4 +"seY" = ( +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/stripes/line{ + dir = 9 }, -/obj/effect/turf_decal/siding/dark{ - dir = 4 +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/table, +/obj/item/stack/sheet/rglass{ + amount = 30; + pixel_x = 2; + pixel_y = -2 }, -/obj/effect/turf_decal/siding/dark{ - dir = 8 +/obj/item/stack/sheet/plasteel/fifty, +/obj/item/circuitboard/machine/shuttle/engine/plasma{ + pixel_y = 3 }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark, -/area/engineering/hallway) -"seE" = ( -/obj/machinery/light/small{ - dir = 1 +/obj/item/circuitboard/machine/shuttle/engine/plasma{ + pixel_x = -6 }, -/turf/open/openspace, -/area/maintenance/department/chapel) -"sfc" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/pod/dark, -/area/maintenance/department/science/central) +/obj/item/shuttle_creator{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/circuitboard/machine/exploration_equipment_vendor{ + pixel_y = 5 + }, +/obj/item/circuitboard/machine/shuttle/heater, +/turf/open/floor/iron/techmaint/planetary, +/area/asteroid/paradise/surface) "sff" = ( /obj/structure/rack, /obj/item/crowbar/red, @@ -36395,12 +36599,6 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/iron/dark, /area/security/execution/education) -"sfs" = ( -/obj/machinery/power/tracker, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/techmaint/planetary, -/area/asteroid/paradise/surface) "sfC" = ( /obj/machinery/door/airlock/highsecurity{ name = "AI Chamber"; @@ -36418,21 +36616,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/iron/tech/grid, /area/ai_monitored/turret_protected/ai) -"sfL" = ( -/obj/structure/railing/corner, -/obj/effect/turf_decal/siding/dark/corner, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/central) -"sfW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/hallway/primary/aft) +"sfR" = ( +/turf/closed/wall/r_wall/rust, +/area/maintenance/department/cargo) "sgv" = ( /obj/effect/turf_decal/siding/white{ alpha = 100; @@ -36440,6 +36626,25 @@ }, /turf/open/indestructible/sound/pool, /area/crew_quarters/fitness/recreation) +"shc" = ( +/obj/effect/landmark/start/warden, +/obj/effect/turf_decal/tile/red/half/contrasted{ + alpha = 180; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/warden) +"sho" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) "shD" = ( /obj/structure/lattice/catwalk/over, /turf/open/floor/plating, @@ -36459,12 +36664,6 @@ }, /turf/open/floor/carpet/red, /area/security/detectives_office) -"sip" = ( -/obj/machinery/camera/autoname/directional/west{ - network = list("ss13","public") - }, -/turf/open/openspace, -/area/hallway/primary/fore) "siH" = ( /obj/machinery/conveyor{ dir = 4; @@ -36492,14 +36691,6 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/sorting) -"siI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopshutter"; - name = "Privacy Shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hop) "siO" = ( /obj/machinery/door/airlock/public/glass{ name = "Chapel" @@ -36522,40 +36713,23 @@ }, /turf/open/floor/iron/dark, /area/chapel/main) -"siR" = ( -/obj/effect/decal/cleanable/generic, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/iron/cafeteria, -/area/crew_quarters/kitchen) -"sjC" = ( -/obj/item/book/granter/spell/smoke/lesser{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/bottle/holywater{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/item/soulstone/anybody/chaplain{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/table/wood, -/obj/structure/sign/painting/library{ - pixel_x = 33; - pixel_y = -1 +"siZ" = ( +/obj/item/plate, +/turf/open/floor/plating/beach/sand, +/area/asteroid/paradise/surface) +"sjD" = ( +/obj/structure/table/reinforced, +/obj/item/pipe_dispenser, +/obj/item/lightreplacer{ + pixel_x = 2; + pixel_y = 13 }, -/obj/item/organ/heart{ - pixel_x = -5; - pixel_y = -1 +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 }, -/turf/open/floor/wood, -/area/chapel/office) +/obj/structure/window/plasma/reinforced, +/turf/open/floor/iron, +/area/engine/engineering) "sjV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/bot, @@ -36578,9 +36752,6 @@ }, /turf/open/floor/plating/asteroid/planetary, /area/crew_quarters/dorms) -"skf" = ( -/turf/closed/wall, -/area/engineering/hallway) "skF" = ( /obj/machinery/newscaster{ pixel_y = -31 @@ -36588,19 +36759,6 @@ /obj/structure/dresser, /turf/open/floor/carpet/purple, /area/crew_quarters/dorms) -"skT" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/pipe/manifold/green/visible/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/engine/engineering) "sld" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, @@ -36635,12 +36793,10 @@ }, /turf/open/floor/iron, /area/maintenance/department/cargo) -"slF" = ( -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, +"slT" = ( +/obj/machinery/vending/cigarette, /turf/open/floor/iron, -/area/hallway/primary/aft) +/area/medical/surgery) "slY" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -36664,32 +36820,6 @@ /obj/item/instrument/violin, /turf/open/floor/wood, /area/crew_quarters/cafeteria) -"smm" = ( -/obj/machinery/requests_console{ - department = "AI"; - departmentType = 5; - name = "AI RC"; - pixel_x = 30; - pixel_y = -30 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/effect/turf_decal/box, -/obj/machinery/flasher{ - id = "AI"; - name = "Meatbag Pacifier"; - pixel_x = 24; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) "smw" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -36697,17 +36827,6 @@ }, /turf/open/floor/iron, /area/maintenance/department/cargo) -"smS" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/iron, -/area/hallway/primary/aft) "smU" = ( /obj/machinery/door/morgue{ name = "Confession Booth (Chaplain)"; @@ -36718,42 +36837,33 @@ }, /turf/open/floor/iron/dark, /area/chapel/office) +"sna" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/asteroid/paradise/surface) "snu" = ( /turf/closed/wall, /area/crew_quarters/cryopods) -"snB" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/clothing/neck/stethoscope{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/reagent_containers/medspray/sterilizine{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron/grid/steel, -/area/medical/patients_rooms) "snW" = ( /obj/structure/girder, /turf/open/floor/plating, /area/maintenance/department/cargo) -"som" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 +"sol" = ( +/obj/machinery/power/solar{ + id = "portsolar"; + name = "Port Solar Array" }, -/turf/open/floor/iron, -/area/hallway/primary/aft) +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/iron/solarpanel, +/area/asteroid/paradise/surface) "soL" = ( /obj/machinery/porta_turret/ai{ dir = 4 @@ -36772,18 +36882,6 @@ /obj/structure/flora/ausbushes/sparsegrass, /turf/open/floor/plating/asteroid/planetary, /area/quartermaster/storage) -"soZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/engine/engineering) "spj" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -36818,12 +36916,19 @@ dir = 1 }, /area/science/lab) -"sqb" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/door/airlock/public/glass, +"sqh" = ( +/obj/machinery/light/small/broken/directional/west, +/obj/structure/frame, +/turf/open/floor/plating/dirt/planetary, +/area/asteroid/paradise/surface) +"sqm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/sand/plating, -/turf/open/floor/iron/techmaint/planetary, -/area/hallway/primary/fore) +/obj/structure/grille, +/turf/open/floor/plating/asteroid/basalt/planetary, +/area/asteroid/paradise) "sru" = ( /obj/structure/chair/wood/normal{ dir = 8 @@ -36833,6 +36938,23 @@ "srJ" = ( /turf/closed/wall/r_wall, /area/crew_quarters/heads/hop) +"srV" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ + alpha = 180 + }, +/obj/item/aicard{ + pixel_x = 6 + }, +/obj/item/storage/secure/briefcase{ + pixel_x = -2 + }, +/obj/item/storage/lockbox/loyalty, +/turf/open/floor/iron/dark, +/area/bridge) "ssf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/shower{ @@ -36857,32 +36979,42 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/maintenance/department/bridge) -"ssj" = ( -/turf/closed/indestructible/rock/snow, -/area/space) "ssr" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/item/paicard, /turf/open/floor/iron, /area/maintenance/department/medical/central) +"ssu" = ( +/obj/effect/turf_decal/box/white, +/obj/machinery/rnd/server, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) "ssw" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/tech, /area/engine/atmos) -"ssG" = ( -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_y = 29 +"ssy" = ( +/obj/structure/safe, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c500, +/obj/item/stack/spacecash/c500, +/obj/item/ammo_box/a357, +/obj/item/gun/ballistic/automatic/pistol/deagle, +/obj/item/gun/ballistic/revolver/russian, +/obj/structure/sign/warning/securearea{ + pixel_y = -32 }, -/obj/machinery/computer/cargo, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment{ - dir = 10 +/turf/open/floor/circuit/green{ + luminosity = 2 }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/quartermaster/storage) +/area/security/nuke_storage) "ssT" = ( /obj/structure/closet/emcloset/anchored, /turf/open/floor/plating, @@ -36891,6 +37023,39 @@ /obj/effect/turf_decal/sand/plating, /turf/open/floor/plating, /area/quartermaster/storage) +"stB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/processor, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","security","prison","public") + }, +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_y = 24; + prison_radio = 1 + }, +/turf/open/floor/prison/dark, +/area/security/prison) +"stQ" = ( +/obj/structure/railing, +/obj/structure/lattice, +/obj/machinery/firealarm/directional/west, +/turf/open/openspace, +/area/hallway/primary/fore) +"stR" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/chair/fancy/plastic, +/turf/open/floor/iron, +/area/maintenance/department/chapel) "sua" = ( /obj/structure/chair/office{ dir = 8 @@ -36918,10 +37083,6 @@ }, /turf/open/floor/iron, /area/engine/engineering) -"suz" = ( -/obj/effect/landmark/loneops, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface/grass) "suO" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, @@ -36934,17 +37095,6 @@ }, /turf/open/lava/smooth, /area/asteroid/paradise) -"svD" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/digital_clock/directional/east, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/hallway/primary/central) -"swh" = ( -/obj/machinery/smartfridge/food, -/turf/open/floor/iron/cafeteria_red, -/area/crew_quarters/kitchen) "swj" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -36966,29 +37116,48 @@ }, /turf/open/floor/iron/dark, /area/maintenance/disposal) -"swD" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/maintenance/department/science/xenobiology) +"swK" = ( +/obj/structure/railing, +/turf/open/floor/glass/reinforced, +/area/crew_quarters/heads/cmo) "swS" = ( /turf/open/floor/iron/dark, /area/quartermaster/qm) -"swU" = ( -/obj/structure/railing{ - dir = 5 +"swW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/turf/open/openspace, -/area/hallway/primary/fore) +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 4 + }, +/obj/structure/railing, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible/layer5{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/engine/atmos) "sxu" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate, /obj/effect/spawner/lootdrop/maintenance/two, /turf/open/floor/iron/sepia, /area/quartermaster/warehouse) +"sxA" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/crew_quarters/heads/cmo) "sxD" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -37009,6 +37178,17 @@ }, /turf/open/floor/iron, /area/maintenance/department/crew_quarters/bar) +"syp" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) "syu" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -37033,31 +37213,48 @@ }, /turf/open/floor/iron, /area/storage/primary) -"szj" = ( -/obj/structure/railing, -/obj/structure/closet/bombcloset, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 6 +"szu" = ( +/mob/living/simple_animal/pet/dog/corgi/Ian{ + density = 0; + dir = 1; + pixel_y = 4 }, -/turf/open/floor/iron/dark, -/area/science/mixing) -"szl" = ( -/obj/structure/fence{ +/obj/item/toy/plush/ian, +/obj/structure/bed/dogbed/ian, +/obj/item/storage/secure/safe{ + pixel_x = 38 + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/heads/hop) +"szZ" = ( +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","public") + }, +/turf/open/openspace, +/area/hallway/primary/fore) +"sAa" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 }, -/obj/structure/sign/warning/securearea, -/turf/open/floor/plating/dirt/planetary, -/area/asteroid/paradise/surface) -"szJ" = ( -/obj/machinery/ai_slipper{ - uses = 10 +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" }, -/obj/structure/cable/yellow{ - icon_state = "1-4" +/obj/machinery/door/poddoor/preopen{ + id = "brigfrontdoor"; + name = "Front Security Blast Door" }, -/turf/open/floor/engine, -/area/engine/supermatter) +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/brig) "sAm" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -37068,17 +37265,6 @@ }, /turf/open/floor/engine/o2, /area/engine/atmos) -"sAY" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/iron, -/area/hallway/primary/central) "sAZ" = ( /obj/effect/turf_decal/box/corners{ dir = 1 @@ -37112,6 +37298,16 @@ /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/iron, /area/maintenance/department/eva) +"sBO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/iron/dark, +/area/engine/engineering) "sBX" = ( /obj/structure/flora/ausbushes/lavendergrass, /turf/open/floor/plating/asteroid/planetary, @@ -37128,18 +37324,15 @@ /obj/structure/sign/departments/minsky/engineering/engineering, /turf/closed/wall/r_wall, /area/engine/engineering) -"sCH" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/flora/rock/pile, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating/asteroid/planetary, -/area/asteroid/paradise/surface) "sDa" = ( /turf/closed/wall, /area/maintenance/disposal) +"sDG" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/hallway/primary/central) "sDH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -37155,6 +37348,15 @@ /obj/structure/flora/ausbushes/ppflowers, /turf/open/floor/plating/asteroid/planetary, /area/crew_quarters/dorms) +"sEp" = ( +/obj/structure/stairs, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_x = -15; + pixel_y = -31 + }, +/turf/open/floor/pod/dark, +/area/hallway/primary/fore) "sEF" = ( /obj/effect/spawner/lootdrop/grille_or_trash, /obj/effect/decal/cleanable/dirt/dust, @@ -37205,6 +37407,23 @@ /mob/living/simple_animal/slime/random, /turf/open/floor/engine, /area/science/xenobiology) +"sFr" = ( +/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ + alpha = 180 + }, +/obj/structure/table/reinforced, +/obj/item/paicard{ + pixel_x = -10; + pixel_y = 2 + }, +/obj/item/storage/fancy/donut_box{ + pixel_x = 9; + pixel_y = -1 + }, +/obj/item/book/manual/wiki/sopcommand, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark, +/area/bridge) "sFy" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 5 @@ -37274,26 +37493,10 @@ }, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise) -"sGT" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/hallway/primary/central) "sGX" = ( /obj/item/kirbyplants/random, /turf/open/floor/iron/sepia, /area/quartermaster/storage) -"sHq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/wood/broken, -/area/library/abandoned) "sHr" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch"; @@ -37307,6 +37510,15 @@ /obj/machinery/space_heater, /turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat/maint) +"sHD" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/spawner/lootdrop/glowstick/lit, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"sHG" = ( +/obj/machinery/light/small/broken/directional/east, +/turf/open/floor/plating/dirt/planetary, +/area/asteroid/paradise/surface) "sHI" = ( /obj/effect/turf_decal/delivery, /obj/effect/decal/cleanable/dirt/dust, @@ -37321,17 +37533,6 @@ }, /turf/open/floor/iron, /area/maintenance/department/science/xenobiology) -"sHV" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/hydroponics, -/turf/open/floor/iron, -/area/maintenance/department/medical/morgue) -"sHY" = ( -/obj/structure/fence{ - dir = 8 - }, -/turf/open/floor/plating/dirt/planetary, -/area/asteroid/paradise/surface) "sIv" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -37354,25 +37555,10 @@ }, /turf/open/floor/iron, /area/engine/atmos) -"sIH" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - alpha = 180; - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/security/warden) "sJC" = ( /obj/effect/spawner/room/fivexfour, /turf/open/floor/plating, /area/maintenance/department/bridge) -"sJH" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/openspace, -/area/hallway/primary/fore) "sKk" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -37380,6 +37566,23 @@ /obj/machinery/light/small, /turf/open/floor/iron/dark, /area/security/brig) +"sKl" = ( +/obj/machinery/light_switch{ + pixel_x = 25; + pixel_y = -25 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood, +/area/chapel/office) "sKr" = ( /obj/effect/mapping_helpers/dead_body_placer, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -37407,95 +37610,25 @@ slowdown = 0 }, /area/asteroid/paradise/surface) -"sLz" = ( -/turf/open/floor/plating/asteroid/basalt/planetary, -/area/asteroid/paradise) -"sLI" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, +"sLd" = ( +/obj/structure/lattice/catwalk/over, +/obj/structure/chair/foldable, +/obj/effect/landmark/start/chief_engineer, +/turf/open/openspace, +/area/engineering/hallway) +"sLe" = ( +/obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/effect/landmark/start/security_officer, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/iron, -/area/security/brig) -"sMd" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) -"sMl" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor{ - base_state = "rightsecure"; - dir = 4; - icon_state = "rightsecure"; - name = "Head of Personnel's Paperwork Door"; - req_access_txt = "57" - }, -/obj/machinery/door/window/northleft{ - dir = 8; - name = "Paperwork Window" - }, -/obj/item/pen{ - pixel_x = 6; - pixel_y = 1 - }, -/obj/item/pen{ - pixel_x = 10; - pixel_y = 1 - }, -/obj/item/pen{ - pixel_x = 8; - pixel_y = -3 - }, -/obj/item/paper{ - pixel_x = -6 - }, -/obj/machinery/door/firedoor, -/obj/structure/desk_bell/speed_demon, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopshutter"; - name = "Privacy Shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/iron, -/area/crew_quarters/heads/hop) -"sMC" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ - alpha = 180 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/iron, -/area/hallway/primary/fore) +/turf/open/floor/plating/asteroid/planetary, +/area/asteroid/paradise/surface) +"sLu" = ( +/turf/open/openspace, +/area/hallway/primary/central) +"sLz" = ( +/turf/open/floor/plating/asteroid/basalt/planetary, +/area/asteroid/paradise) "sMF" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/stripes/line{ @@ -37573,15 +37706,12 @@ }, /turf/open/floor/iron/dark, /area/security/brig) -"sNq" = ( -/obj/machinery/airalarm/directional/west, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/iron/dark/side{ - dir = 8 +"sNy" = ( +/obj/structure/railing/corner{ + dir = 1 }, -/area/hallway/primary/aft) +/turf/open/floor/plating, +/area/maintenance/department/chapel) "sNC" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -37589,43 +37719,46 @@ }, /turf/open/floor/plating, /area/maintenance/department/engine) +"sNI" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron, +/area/maintenance/department/science/xenobiology) "sNT" = ( /obj/structure/stairs{ dir = 1 }, /turf/open/floor/pod/dark, /area/maintenance/department/engine/atmos) -"sPu" = ( +"sOB" = ( /obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/aft) -"sPC" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/loading_area{ - dir = 8 + dir = 10 }, -/turf/open/floor/mineral/titanium, -/area/asteroid/paradise/surface) +/turf/open/floor/glass/reinforced, +/area/crew_quarters/heads/cmo) "sPE" = ( /obj/machinery/light, /obj/item/kirbyplants/random, /turf/open/floor/iron, /area/engine/atmos) -"sPJ" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plating/asteroid/planetary, -/area/asteroid/paradise/surface) -"sQT" = ( -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/obj/structure/reagent_dispensers/water_cooler, +"sPS" = ( +/obj/machinery/air_sensor/atmos/air_tank, +/obj/machinery/atmospherics/pipe/layer_manifold/visible, +/turf/open/floor/engine/air, +/area/engine/atmos) +"sQp" = ( /obj/effect/turf_decal/bot, -/obj/machinery/camera/autoname/directional/east, -/turf/open/floor/iron, -/area/bridge) +/obj/machinery/computer/warrant{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) "sQU" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/computer/atmos_control/tank/nitrogen_tank{ @@ -37634,12 +37767,17 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/tech, /area/engine/atmos) -"sRu" = ( -/obj/effect/turf_decal/siding/dark/end{ - dir = 4 +"sRi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" }, -/turf/open/floor/glass/reinforced, -/area/hallway/primary/fore) +/obj/machinery/door/poddoor/preopen{ + id = "Engidesk"; + name = "engineering Security Door" + }, +/turf/open/floor/plating, +/area/engine/engineering) "sRD" = ( /turf/closed/wall/r_wall, /area/security/prison) @@ -37648,6 +37786,17 @@ /obj/structure/flora/ausbushes/sparsegrass, /turf/open/floor/plating/asteroid/planetary, /area/quartermaster/storage) +"sRW" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/hallway/primary/central) "sSk" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch"; @@ -37681,21 +37830,6 @@ "sSJ" = ( /turf/closed/wall, /area/chapel/main) -"sSV" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Medbay Maintenance"; - req_one_access_txt = "5" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "quarantineshutters"; - name = "Isolation Shutters" - }, -/obj/effect/turf_decal/stripes/closeup, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/iron, -/area/maintenance/department/crew_quarters/bar) "sTa" = ( /obj/effect/turf_decal/siding/wood, /obj/item/hatchet, @@ -37723,29 +37857,11 @@ }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) -"sTM" = ( -/obj/structure/urinal{ - dir = 1; - pixel_x = 1; - pixel_y = 33 - }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, +"sTC" = ( /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/freezer, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron, /area/hallway/primary/fore) -"sTV" = ( -/obj/effect/turf_decal/box/white, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - external_pressure_bound = 120; - name = "server vent" - }, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) "sUf" = ( /obj/effect/turf_decal/sand/plating, /obj/effect/turf_decal/stripes/line{ @@ -37802,39 +37918,9 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/storage) -"sVZ" = ( -/turf/open/floor/wood/broken, -/area/library/abandoned) -"sWd" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/box, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/hallway/primary/aft) "sWe" = ( /turf/open/floor/iron, /area/maintenance/department/science/xenobiology) -"sWl" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 9 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/carpet/royalblue, -/area/crew_quarters/heads/chief) "sWu" = ( /obj/machinery/door/window/eastright{ base_state = "left"; @@ -37890,6 +37976,13 @@ /obj/structure/flora/ausbushes/lavendergrass, /turf/open/floor/plating/asteroid/basalt/planetary, /area/asteroid/paradise) +"sXm" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron/techmaint/planetary, +/area/asteroid/paradise/surface) "sXB" = ( /turf/closed/wall/r_wall, /area/engine/engineering) @@ -37913,22 +38006,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/bar) -"sXY" = ( -/obj/structure/noticeboard{ - name = "bounty list"; - pixel_x = 1; - pixel_y = 33 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/camera/autoname/directional/west{ - network = list("ss13","cargo") - }, -/obj/effect/turf_decal/numbers/two_nine, -/turf/open/floor/iron/sepia, -/area/hallway/primary/aft) "sYf" = ( /obj/machinery/computer/cryopod{ pixel_y = -27 @@ -37942,6 +38019,60 @@ /obj/machinery/light, /turf/open/floor/prison, /area/security/prison) +"sYh" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","engine") + }, +/obj/structure/closet/secure_closet/atmospherics{ + anchored = 1; + req_access = null; + req_one_access_txt = "11" + }, +/obj/item/radio/intercom{ + pixel_x = -1; + pixel_y = 29 + }, +/turf/open/floor/iron, +/area/engine/atmos) +"sYi" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) +"sYs" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/status_display/ai{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/restraints/handcuffs{ + pixel_y = 3 + }, +/turf/open/floor/iron, +/area/bridge) "sYE" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch"; @@ -38016,21 +38147,18 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/quartermaster/warehouse) +"sZD" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/hallway/primary/aft) "tae" = ( /obj/effect/turf_decal/sand/plating, /obj/effect/turf_decal/sand/plating, /turf/open/floor/iron/techmaint/planetary, /area/asteroid/paradise/surface) -"tak" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/power/apc/auto_name/directional/east{ - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/iron, -/area/maintenance/department/engine) "tay" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/bot, @@ -38069,6 +38197,18 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, /area/maintenance/department/engine/atmos) +"taT" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/iron/white, +/area/medical/surgery) +"tbf" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/turf/open/floor/iron, +/area/hallway/primary/aft) "tbm" = ( /obj/machinery/light{ dir = 8 @@ -38089,26 +38229,55 @@ }, /turf/closed/wall/r_wall, /area/crew_quarters/cafeteria) -"tbS" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel Office"; - req_access_txt = "27" +"tcb" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/openspace, +/area/hallway/primary/fore) +"tcx" = ( +/obj/machinery/computer/bounty{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/central) +"tcM" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "1-8" }, /obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/obj/effect/turf_decal/evac/evac_big, +/turf/open/floor/iron, +/area/maintenance/department/science/central) +"tcS" = ( +/obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 2 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 1 +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/turf/open/floor/wood, -/area/chapel/office) -"tcB" = ( +/turf/open/floor/iron/dark, +/area/engine/engineering) +"tdh" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/turf/closed/wall/r_wall, +/area/maintenance/department/engine) +"tdL" = ( /obj/machinery/door/airlock/command/glass{ name = "Bridge"; req_access_txt = "19" @@ -38131,34 +38300,6 @@ }, /turf/open/floor/iron/dark, /area/bridge/meeting_room) -"tcM" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/obj/effect/turf_decal/evac/evac_big, -/turf/open/floor/iron, -/area/maintenance/department/science/central) -"tdh" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/turf/closed/wall/r_wall, -/area/maintenance/department/engine) -"tdv" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark, -/area/hallway/primary/aft) "tdN" = ( /obj/structure/chair/office/light{ dir = 8 @@ -38166,19 +38307,25 @@ /obj/effect/landmark/start/chief_medical_officer, /turf/open/floor/carpet/blue, /area/crew_quarters/heads/cmo) -"tee" = ( -/obj/structure/lattice, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/openspace, -/area/hallway/primary/fore) "tef" = ( /obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 8 }, /turf/open/floor/iron, /area/bridge) +"tel" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) +"teo" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 5 + }, +/turf/open/floor/glass/reinforced, +/area/medical/medbay/central) "teA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -38223,11 +38370,6 @@ }, /turf/open/floor/prison/dark, /area/security/prison) -"teT" = ( -/obj/machinery/light/small/broken/directional/west, -/obj/structure/frame, -/turf/open/floor/plating/dirt/planetary, -/area/asteroid/paradise/surface) "teU" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/item/beacon{ @@ -38235,17 +38377,24 @@ }, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise/surface) -"teV" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/mineral/plastitanium, -/area/asteroid/paradise/surface) "tfd" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/rack, /obj/effect/spawner/lootdrop/maintenance/two, /turf/open/floor/plating, /area/maintenance/department/medical/central) +"tfg" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/prison, +/area/security/prison) "tfh" = ( /obj/effect/turf_decal/sand/plating, /obj/effect/turf_decal/stripes/line{ @@ -38270,6 +38419,15 @@ /obj/structure/fence, /turf/open/floor/plating/dirt/jungle/wasteland, /area/asteroid/paradise/surface) +"tfm" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/iron/white/side{ + dir = 9 + }, +/area/asteroid/paradise) "tft" = ( /obj/effect/turf_decal/siding/red{ alpha = 100; @@ -38277,17 +38435,6 @@ }, /turf/open/floor/plating/beach/water, /area/asteroid/paradise/surface/water) -"tfy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 1; - initialize_directions = 1 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat/foyer) "tfH" = ( /obj/machinery/atmospherics/components/trinary/filter/critical{ dir = 4 @@ -38317,6 +38464,29 @@ /obj/effect/turf_decal/trimline/dark_blue/filled/corner, /turf/open/floor/iron/dark, /area/bridge/meeting_room) +"tgo" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/tech, +/area/science/mixing/chamber) +"tgt" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/sand/plating, +/obj/structure/chair/fancy/plastic, +/turf/open/floor/iron/techmaint/planetary, +/area/asteroid/paradise/surface) "tgH" = ( /obj/machinery/holopad, /obj/effect/turf_decal/box, @@ -38346,17 +38516,42 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/carpet/royalblue, /area/crew_quarters/heads/captain) -"thm" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, +"the" = ( +/obj/machinery/power/smes{ + charge = 5e+006; + name = "ai power storage unit" + }, +/obj/machinery/flasher{ + id = "AI"; + name = "Meatbag Pacifier"; + pixel_x = 23; + pixel_y = 22 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/item/toy/plush/lizard_plushie{ + pixel_x = 1; + pixel_y = 14 + }, +/turf/open/floor/circuit/red, +/area/ai_monitored/turret_protected/ai) +"thf" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 10 +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/thermomachine/heater/on/layer_4{ + dir = 1 }, -/turf/open/floor/iron/sepia, -/area/quartermaster/storage) +/turf/open/floor/iron/dark, +/area/engine/atmos) "thu" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -38379,6 +38574,11 @@ }, /turf/open/floor/iron/grid/steel, /area/hydroponics) +"thR" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box, +/turf/open/floor/iron, +/area/hallway/primary/central) "tih" = ( /mob/living/simple_animal/kalo{ desc = "The Perma brig's cute grass snake."; @@ -38392,53 +38592,6 @@ }, /turf/open/floor/prison, /area/security/prison) -"tio" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/grid/steel, -/area/science/mixing) -"tiy" = ( -/obj/structure/table/wood, -/obj/item/soap{ - pixel_y = 9 - }, -/obj/item/camera{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/taperecorder{ - pixel_x = -7; - pixel_y = 4 - }, -/turf/open/floor/carpet/royalblack, -/area/library/abandoned) -"tiF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/openspace, -/area/hallway/primary/central) "tiS" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -38457,33 +38610,6 @@ /obj/effect/decal/cleanable/dirt, /turf/closed/mineral/random/air, /area/asteroid/paradise) -"tju" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/dark/corner{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/hallway/primary/central) -"tjz" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - alpha = 180; - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/security/brig) "tko" = ( /turf/closed/wall, /area/security/detectives_office) @@ -38574,16 +38700,16 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) -"tle" = ( -/obj/structure/lattice/catwalk/over, -/obj/structure/railing{ - dir = 1 +"tlq" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 }, -/turf/open/openspace, -/area/engineering/hallway) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/iron, +/area/hallway/primary/central) "tlw" = ( /obj/structure/stairs, /turf/open/floor/pod/dark, @@ -38614,28 +38740,6 @@ }, /turf/open/floor/iron, /area/engine/engineering) -"tlK" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - alpha = 180; - dir = 8 - }, -/turf/open/floor/iron, -/area/hallway/primary/aft) -"tmd" = ( -/obj/effect/turf_decal/box/white, -/obj/machinery/rnd/server, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) "tmh" = ( /obj/structure/girder, /turf/open/floor/plating, @@ -38701,22 +38805,6 @@ }, /turf/open/floor/iron/dark, /area/engine/atmos) -"tna" = ( -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 8 - }, -/obj/effect/turf_decal/siding/dark/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/dark/corner, -/turf/open/floor/iron/dark, -/area/engineering/hallway) "tnA" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/structure/window/reinforced{ @@ -38767,43 +38855,23 @@ }, /turf/open/floor/pod/dark, /area/engine/engineering) -"toq" = ( -/obj/machinery/door/window/northleft{ - dir = 2 - }, -/turf/open/floor/iron/dark/side, -/area/hallway/primary/fore) "tov" = ( /turf/open/floor/wood, /area/crew_quarters/cafeteria) "tox" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/visible{ - dir = 4 - }, -/obj/structure/table, -/obj/item/clothing/mask/gas{ - pixel_x = -4; - pixel_y = 10 - }, -/obj/item/analyzer{ - pixel_x = 1 - }, -/obj/item/crowbar/red{ - pixel_x = -2; - pixel_y = 11 - }, -/obj/item/tank/internals/plasma{ - pixel_x = 7; - pixel_y = 7 +/obj/structure/cable/yellow{ + icon_state = "0-8" }, /obj/structure/cable/yellow{ - icon_state = "1-2" + icon_state = "4-8" }, -/turf/open/floor/iron/dark, -/area/engine/engineering) +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cmoshutter"; + name = "CMO Office Shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) "toz" = ( /turf/closed/wall/rust, /area/science/test_area) @@ -38854,12 +38922,38 @@ /obj/machinery/space_heater, /turf/open/floor/iron, /area/maintenance/department/science/central) +"tqj" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/flora/rock/pile, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron/techmaint/planetary, +/area/asteroid/paradise/surface) "tqq" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/atmos/mix_input{ dir = 1 }, /turf/open/floor/engine/airless, /area/engine/atmos) +"tqr" = ( +/obj/effect/turf_decal/evac{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron, +/area/maintenance/department/engine) +"tqs" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/plating/asteroid/planetary, +/area/asteroid/paradise/surface) "tqL" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch"; @@ -38874,9 +38968,14 @@ }, /turf/open/floor/iron/white, /area/medical/medbay/central) -"trd" = ( -/turf/closed/wall/mineral/titanium/survival, -/area/hallway/primary/fore) +"trc" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/catwalk_floor/iron_dark, +/area/asteroid/paradise/surface) "trB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 8 @@ -38886,6 +38985,60 @@ }, /turf/open/floor/plating/asteroid/basalt/planetary, /area/asteroid/paradise) +"trC" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/folder/red, +/obj/item/restraints/handcuffs, +/obj/item/stack/cable_coil, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/item/storage/backpack/duffelbag/sec/surgery{ + pixel_y = 5 + }, +/obj/item/melee/baseball_bat{ + desc = "A staple of security force interrogations."; + icon_state = "baseball_bat_metal"; + name = "kneecapper" + }, +/obj/machinery/power/apc/auto_name/directional/south{ + pixel_y = -24 + }, +/obj/structure/cable/yellow, +/turf/open/floor/iron/dark, +/area/security/execution/education) +"trI" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/evac/evac_big{ + dir = 1 + }, +/turf/open/floor/iron, +/area/maintenance/department/science/xenobiology) +"tsk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/crew_quarters/heads/hop) "tss" = ( /obj/effect/turf_decal/trimline/yellow, /obj/structure/cable/yellow{ @@ -38955,12 +39108,18 @@ }, /turf/open/floor/catwalk_floor/iron_dark, /area/engine/engineering) -"ttC" = ( -/obj/structure/railing, -/obj/structure/lattice, -/obj/machinery/firealarm/directional/west, -/turf/open/openspace, -/area/hallway/primary/fore) +"ttt" = ( +/obj/structure/sign/poster/official/suit_sensors{ + pixel_x = -32 + }, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/hallway/primary/central) +"ttw" = ( +/turf/closed/wall/r_wall, +/area/quartermaster/storage) "ttD" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -38979,6 +39138,16 @@ "ttY" = ( /turf/closed/wall, /area/medical/medbay/central) +"tuo" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/iron, +/area/maintenance/department/eva) "tuw" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/chair/fancy/sofa/old/left{ @@ -39001,26 +39170,24 @@ }, /turf/open/floor/iron/grid/steel, /area/hydroponics) -"tuT" = ( -/obj/machinery/air_sensor/atmos/air_tank, -/obj/machinery/atmospherics/pipe/layer_manifold/visible, -/turf/open/floor/engine/air, -/area/engine/atmos) +"tuU" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/engineering/hallway) "tuV" = ( /obj/machinery/atmospherics/miner/station/plasma, /obj/machinery/atmospherics/pipe/simple/green/hidden, /turf/open/floor/engine/plasma, /area/engine/atmos) -"tvi" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/closet/emcloset, -/obj/structure/sign/map/echo{ - pixel_y = 32 +"tvj" = ( +/obj/structure/fence/cut/medium{ + dir = 8 }, -/turf/open/floor/glass/reinforced, -/area/hallway/primary/fore) +/turf/open/floor/plating/dirt/planetary, +/area/asteroid/paradise/surface) "tvm" = ( /obj/item/beacon{ pixel_y = 3 @@ -39037,6 +39204,30 @@ }, /turf/open/floor/iron/techmaint/planetary, /area/asteroid/paradise/surface) +"twg" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/maintenance/department/medical/morgue) +"two" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/engine/engineering) "tww" = ( /obj/machinery/light{ dir = 8 @@ -39082,17 +39273,24 @@ }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) -"txM" = ( -/obj/structure/disposalpipe/segment{ +"txA" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/multiz{ dir = 2 }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/hallway/primary/fore) -"txR" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/iron, -/area/hallway/primary/fore) +/turf/open/floor/iron/white/side, +/area/science/lab) "tyc" = ( /obj/structure/fence/corner{ dir = 9 @@ -39103,9 +39301,53 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/quartermaster/storage) +"tyl" = ( +/obj/structure/table, +/obj/item/geiger_counter{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/toy/plush/plushvar{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/engineering/hallway) "tyz" = ( /turf/open/floor/engine, /area/science/explab) +"tyF" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/folder/blue, +/obj/item/flashlight/pen, +/obj/item/clothing/neck/stethoscope, +/obj/item/computer_hardware/hard_drive/role/medical{ + pixel_x = 3 + }, +/obj/item/computer_hardware/hard_drive/role/medical{ + pixel_x = -3 + }, +/obj/item/computer_hardware/hard_drive/role/chemistry{ + pixel_y = 6 + }, +/obj/machinery/power/apc/auto_name/directional/south{ + pixel_y = -24 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/white, +/area/crew_quarters/heads/cmo) "tyI" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -39132,63 +39374,31 @@ /obj/item/trash/syndi_cakes, /turf/open/floor/plating/beach/sand, /area/asteroid/paradise/surface) +"tzY" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12; + pixel_y = 3 + }, +/obj/structure/mirror{ + pixel_x = 32; + pixel_y = -1 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/freezer, +/area/hallway/primary/fore) "tAg" = ( /turf/open/floor/plating, /area/maintenance/department/security/brig) -"tAo" = ( -/obj/effect/turf_decal/siding/yellow, -/obj/effect/turf_decal/trimline/yellow/warning, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/iron/dark, -/area/engineering/hallway) "tAt" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 }, /turf/open/floor/iron/dark, /area/medical/morgue) -"tAx" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Gas to Filter" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/iron/dark, -/area/engine/engineering) -"tAy" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/hallway/primary/central) -"tAE" = ( -/obj/structure/light_construct, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/warning/pods{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/library/abandoned) "tAG" = ( /obj/machinery/door/airlock/hatch{ name = "MiniSat Teleporter"; @@ -39205,26 +39415,43 @@ }, /turf/open/floor/iron/tech/grid, /area/ai_monitored/turret_protected/aisat/foyer) -"tAS" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 +"tAJ" = ( +/obj/structure/sign/departments/minsky/engineering/telecommmunications{ + pixel_x = -32 }, -/obj/item/pen{ - pixel_x = -4; - pixel_y = 5 +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light{ - dir = 1 +/obj/effect/turf_decal/siding/dark{ + dir = 4 }, -/obj/structure/noticeboard{ - pixel_x = 1; - pixel_y = 28 +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","engine","public") }, /turf/open/floor/iron/dark, -/area/hallway/primary/fore) +/area/engineering/hallway) +"tAL" = ( +/obj/effect/turf_decal/tile/purple/fourcorners/contrasted, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white, +/area/science/lab) "tAT" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{ @@ -39247,30 +39474,24 @@ }, /turf/open/floor/iron/sepia, /area/quartermaster/storage) +"tBs" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/library/abandoned) "tBy" = ( /obj/machinery/iv_drip, /obj/effect/spawner/lootdrop/glowstick/lit, /turf/open/floor/iron, /area/maintenance/department/medical/central) -"tBT" = ( -/obj/structure/table/reinforced, -/obj/structure/desk_bell{ - pixel_x = -8; - pixel_y = 9 - }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/obj/item/paicard{ - pixel_x = 5; - pixel_y = 1 +"tBS" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 9 }, /turf/open/floor/iron/dark, -/area/hallway/primary/fore) +/area/engineering/hallway) "tCf" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 @@ -39281,9 +39502,6 @@ }, /turf/open/floor/iron/tech, /area/science/mixing) -"tCi" = ( -/turf/open/openspace, -/area/asteroid/paradise/surface) "tCj" = ( /obj/structure/chair/office/light{ dir = 1 @@ -39301,6 +39519,17 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/department/bridge) +"tCQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/medical/apothecary) "tDp" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -39312,19 +39541,6 @@ }, /turf/open/floor/wood/broken, /area/crew_quarters/cafeteria) -"tDr" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/door/airlock/public/glass, -/turf/open/floor/iron/techmaint/planetary, -/area/hallway/primary/fore) -"tDA" = ( -/obj/item/radio/intercom{ - pixel_y = 28 - }, -/obj/structure/table/wood, -/obj/item/kirbyplants/random, -/turf/open/floor/plating, -/area/library/abandoned) "tDF" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, @@ -39340,84 +39556,24 @@ }, /turf/open/floor/iron/grid/steel, /area/hydroponics) -"tEa" = ( -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 - }, -/obj/machinery/chem_dispenser/drinks, -/obj/structure/table, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" +"tEn" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 }, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron/dark, -/area/crew_quarters/kitchen) -"tEc" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/structure/table, -/obj/item/assembly/igniter{ - pixel_x = 12; - pixel_y = -6 - }, -/obj/item/assembly/igniter{ - pixel_x = 15; - pixel_y = 6 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/machinery/power/apc/auto_name/directional/south{ - pixel_y = -24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/iron, -/area/storage/primary) -"tEe" = ( -/obj/machinery/door/poddoor/incinerator_toxmix{ - id = "EmergancyescapeShutter"; - name = "Emergancy Escape Shutters" - }, -/turf/open/floor/plating, -/area/maintenance/department/science/central) -"tEl" = ( -/obj/machinery/door/airlock/science{ - name = "Toxins Lab"; - req_one_access_txt = "49;27" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/floor/iron, -/area/science/mixing) +/obj/machinery/disposal/bin, +/turf/open/floor/carpet/orange, +/area/quartermaster/qm) "tEI" = ( /obj/effect/turf_decal/sand/plating, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, /area/crew_quarters/dorms) -"tER" = ( -/obj/structure/table/wood, -/obj/item/flashlight, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood/broken, -/area/library/abandoned) "tFb" = ( /obj/machinery/defibrillator_mount{ pixel_y = -24 @@ -39433,34 +39589,10 @@ }, /turf/open/floor/wood, /area/crew_quarters/theatre/backstage) -"tFt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/wood, -/area/crew_quarters/cafeteria) "tFF" = ( /obj/structure/sign/departments/minsky/research/dorms, /turf/closed/wall, /area/crew_quarters/dorms) -"tFL" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron/grid/steel, -/area/bridge) "tFV" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -39493,18 +39625,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/maintenance/department/medical/morgue) -"tHd" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/siding/dark{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/hallway/primary/central) "tHj" = ( /obj/machinery/airalarm/directional/west, /obj/machinery/hydroponics/constructable, @@ -39566,6 +39686,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/tech, /area/engine/atmos) +"tIn" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/hallway/primary/central) "tIq" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -39617,6 +39743,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/tech, /area/engine/atmos) +"tJf" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron, +/area/hallway/primary/fore) "tJk" = ( /obj/structure/closet{ name = "Evidence Closet" @@ -39643,22 +39773,29 @@ /obj/effect/turf_decal/trimline/yellow, /turf/open/floor/iron/white, /area/science/lab) -"tJv" = ( -/obj/machinery/light{ - dir = 8 +"tJr" = ( +/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ + alpha = 180 }, -/obj/structure/cable/yellow{ - icon_state = "1-2" +/obj/effect/turf_decal/loading_area{ + dir = 8; + pixel_y = -1 }, -/obj/item/radio/intercom{ - dir = 1; - pixel_x = -30; - pixel_y = -2 +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" }, -/turf/open/floor/iron/dark/side{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 }, -/area/hallway/primary/aft) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/fore) "tJw" = ( /obj/structure/table/reinforced, /obj/item/reagent_containers/food/condiment/saltshaker{ @@ -39674,20 +39811,21 @@ }, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/dorms) -"tJy" = ( -/obj/machinery/shuttle/engine/plasma{ - dir = 1 +"tJH" = ( +/obj/structure/railing{ + dir = 8 }, -/turf/open/floor/plating/dirt/planetary, -/area/asteroid/paradise/surface) -"tJE" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 4; - initialize_directions = 4 +/obj/effect/turf_decal/siding/dark{ + dir = 8 }, -/turf/open/floor/iron/tech, -/area/engine/engineering) +/turf/open/floor/iron/dark, +/area/hallway/primary/central) +"tJQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output/layer4{ + dir = 4 + }, +/turf/open/floor/engine/co2, +/area/engine/atmos) "tJV" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -39710,6 +39848,19 @@ }, /turf/open/floor/iron/showroomfloor, /area/crew_quarters/cryopods) +"tKv" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/iron/dark, +/area/engine/engineering) +"tKH" = ( +/obj/structure/stairs, +/turf/open/floor/pod/dark, +/area/hallway/primary/central) "tKR" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/turf_decal/stripes/line{ @@ -39718,17 +39869,28 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/iron/dark, /area/teleporter) -"tKX" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/disposalpipe/segment{ +"tLg" = ( +/obj/effect/turf_decal/tile/dark_red{ + alpha = 180; + color = "#DE3A3A"; dir = 8 }, -/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" +/obj/effect/turf_decal/tile/neutral{ + dir = 1 }, -/turf/open/floor/iron/grid/steel, -/area/medical/patients_rooms) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/hallway/primary/fore) "tLR" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/tile/neutral{ @@ -39738,6 +39900,14 @@ slowdown = 0 }, /area/asteroid/paradise/surface) +"tLZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/aft) "tMd" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -39755,19 +39925,20 @@ /obj/machinery/telecomms/server/presets/engineering, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) +"tMA" = ( +/obj/structure/sign/directions/engineering{ + pixel_y = 10 + }, +/turf/closed/wall, +/area/hallway/primary/aft) +"tMK" = ( +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/mineral/plastitanium, +/area/asteroid/paradise/surface) "tNh" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/department/engine/atmos) -"tNi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/holohoop{ - dir = 8 - }, -/turf/open/floor/prison/dark, -/area/security/prison) "tNm" = ( /obj/structure/closet/secure_closet/medical2, /obj/effect/turf_decal/bot, @@ -39803,16 +39974,6 @@ }, /turf/open/floor/iron/white, /area/medical/medbay/central) -"tNK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/cable_coil/cut/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/library/abandoned) "tNX" = ( /obj/machinery/holopad, /obj/effect/turf_decal/box, @@ -39828,60 +39989,10 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/maintenance/department/medical/central) -"tOv" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 1 - }, -/obj/effect/turf_decal/siding/dark, -/obj/effect/turf_decal/trimline/dark/warning{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/engineering/hallway) -"tOw" = ( -/obj/structure/lattice/catwalk, -/obj/structure/marker_beacon, -/turf/open/openspace, -/area/engineering/hallway) -"tOz" = ( -/obj/item/paper_bin{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/structure/table/wood, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/wood, -/area/library/abandoned) -"tOC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - alpha = 180 - }, -/obj/effect/turf_decal/stripes/closeup, -/obj/machinery/door/poddoor/preopen{ - id = "brigentrance"; - name = "Brig Blast Door" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/security/brig) -"tOI" = ( -/obj/structure/railing{ - dir = 10 - }, -/obj/effect/turf_decal/siding/dark{ - dir = 10 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/hallway/primary/central) +"tOu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/r_wall/rust, +/area/asteroid/paradise) "tOO" = ( /obj/effect/turf_decal/tile/purple/anticorner/contrasted{ dir = 1 @@ -39914,28 +40025,11 @@ /obj/structure/closet/crate/bin, /turf/open/floor/prison, /area/security/prison) -"tPk" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/spawner/structure/window/hollow/survival_pod/directional, -/obj/structure/curtain/directional{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/primary/fore) "tPn" = ( /obj/effect/turf_decal/tile/purple/half/contrasted, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/white, /area/science/xenobiology) -"tPs" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/fore) "tPw" = ( /obj/machinery/status_display/evac{ pixel_y = 32 @@ -39957,6 +40051,13 @@ }, /turf/open/floor/iron/dark, /area/security/brig) +"tPx" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input/layer4, +/turf/open/floor/engine/o2, +/area/engine/atmos) "tPA" = ( /obj/structure/table, /obj/item/analyzer{ @@ -39992,24 +40093,23 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/carpet/orange, /area/crew_quarters/dorms) -"tPV" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Foyer"; - req_one_access_txt = "32" +"tQO" = ( +/obj/machinery/door/airlock/grunge{ + name = "Morgue"; + req_one_access_txt = "6;5;4;28" }, /obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/turf_decal/stripes/closeup, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "quarantineshutters"; + name = "Isolation Shutters" }, -/turf/open/floor/iron/dark, -/area/engineering/hallway) +/turf/open/floor/plating, +/area/medical/morgue) "tQX" = ( /obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ alpha = 180; @@ -40038,12 +40138,6 @@ /obj/effect/turf_decal/stripes/closeup, /turf/open/floor/iron/dark, /area/security/brig) -"tRy" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/visible{ - dir = 8 - }, -/turf/open/floor/iron/tech, -/area/engine/atmos) "tRC" = ( /obj/effect/turf_decal/tile/blue/anticorner/contrasted{ dir = 8 @@ -40134,6 +40228,10 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/iron/dark, /area/chapel/office) +"tSC" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) "tSN" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 @@ -40146,6 +40244,17 @@ }, /turf/open/floor/iron/dark, /area/security/brig) +"tSO" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating/asteroid/planetary, +/area/hallway/primary/fore) "tST" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -40156,29 +40265,6 @@ }, /turf/open/floor/iron/dark, /area/crew_quarters/kitchen) -"tSZ" = ( -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_y = 25 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_y = 21 - }, -/obj/structure/table/wood, -/obj/effect/turf_decal/siding/wood, -/obj/item/trash/plate{ - pixel_y = 3 - }, -/obj/item/food/donkpocket/pizza{ - pixel_x = -1; - pixel_y = 4 - }, -/turf/open/floor/carpet/green, -/area/crew_quarters/cafeteria) -"tTb" = ( -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/hallway/primary/central) "tTh" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ alpha = 180 @@ -40206,37 +40292,12 @@ }, /turf/open/floor/iron/dark, /area/security/warden) -"tTl" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 12; - pixel_y = 3 - }, -/turf/open/floor/iron/grid/steel, -/area/medical/patients_rooms) -"tTt" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/table, -/obj/item/glove_box{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/storage/box/bodybags{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/clothing/mask/surgical{ - pixel_x = 3; - pixel_y = -8 +"tTE" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" }, -/turf/open/floor/iron/dark, -/area/security/detectives_office) +/turf/open/floor/plating, +/area/maintenance/department/chapel) "tUh" = ( /obj/structure/cable{ icon_state = "2-8" @@ -40246,23 +40307,6 @@ }, /turf/open/floor/engine/vacuum, /area/maintenance/disposal/incinerator) -"tUj" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/openspace, -/area/engineering/hallway) -"tUq" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 6 - }, -/obj/structure/railing{ - dir = 6 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/iron/dark, -/area/hallway/primary/central) "tUs" = ( /obj/structure/railing/corner{ dir = 8 @@ -40287,6 +40331,15 @@ }, /turf/open/floor/plating, /area/maintenance/department/science/central) +"tUx" = ( +/obj/item/radio/intercom{ + pixel_x = 1; + pixel_y = -30 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/tech, +/area/engine/engineering) "tUA" = ( /obj/item/radio/intercom{ pixel_y = -35 @@ -40317,9 +40370,6 @@ }, /turf/open/floor/plating/dirt/planetary, /area/asteroid/paradise/surface/grass) -"tUR" = ( -/turf/open/floor/plating, -/area/library/abandoned) "tUV" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch"; @@ -40346,21 +40396,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/tech, /area/engine/engineering) -"tVy" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Vacant Office APC"; - pixel_y = 24 - }, -/obj/effect/mapping_helpers/apc/discharged, -/obj/structure/light_construct{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/wood, -/area/library/abandoned) "tVK" = ( /obj/effect/turf_decal/siding/white{ dir = 1 @@ -40419,12 +40454,28 @@ }, /turf/open/floor/iron, /area/medical/apothecary) -"tXj" = ( -/obj/structure/railing{ +"tWP" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/turf/open/openspace, -/area/engineering/hallway) +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/over, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/mixing) "tXn" = ( /obj/effect/turf_decal/sand/plating, /obj/item/beacon{ @@ -40435,11 +40486,6 @@ }, /turf/open/floor/iron, /area/crew_quarters/dorms) -"tYb" = ( -/obj/machinery/biogenerator, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/maintenance/department/medical/morgue) "tYc" = ( /obj/structure/sign/departments/restroom{ pixel_y = 32 @@ -40464,6 +40510,56 @@ }, /turf/open/floor/wood, /area/crew_quarters/cafeteria) +"tYw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","cargo") + }, +/obj/structure/table/reinforced, +/obj/item/stack/package_wrap{ + pixel_x = -15 + }, +/obj/item/stack/package_wrap{ + pixel_x = -16; + pixel_y = 10 + }, +/obj/item/stack/wrapping_paper{ + pixel_x = -15; + pixel_y = 5 + }, +/obj/item/dest_tagger{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/dest_tagger{ + pixel_x = -2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/item/storage/box{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/storage/box{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/storage/box{ + pixel_x = 10; + pixel_y = 4 + }, +/obj/item/storage/box{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/quartermaster/sorting) "tYX" = ( /obj/machinery/light{ dir = 1 @@ -40500,14 +40596,19 @@ /obj/machinery/light, /turf/open/floor/noslip/standard, /area/quartermaster/storage) -"uag" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable{ - icon_state = "4-8" +"uaE" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/catwalk_floor/iron_dark, -/area/asteroid/paradise/surface) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/sorting/mail/destination/qm_office/flip, +/turf/open/floor/iron/sepia, +/area/quartermaster/storage) "uaU" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -40518,10 +40619,21 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/grid/steel, /area/medical/patients_rooms) -"ubr" = ( -/obj/item/sbeacondrop/exploration, -/turf/open/floor/iron/techmaint/planetary, -/area/asteroid/paradise/surface) +"ubn" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) "ubG" = ( /obj/machinery/conveyor{ dir = 1; @@ -40530,19 +40642,12 @@ /obj/structure/plasticflaps, /turf/open/floor/plating, /area/science/mixing) -"ucC" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 +"ucq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/crew_quarters/heads/hop) +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/fore) "ucF" = ( /obj/machinery/holopad, /obj/effect/turf_decal/box, @@ -40551,23 +40656,6 @@ }, /turf/open/floor/carpet/red, /area/crew_quarters/theatre/backstage) -"ucM" = ( -/obj/machinery/firealarm/directional/north, -/obj/structure/lattice/catwalk/over, -/turf/open/openspace, -/area/maintenance/department/security/brig) -"ucV" = ( -/mob/living/simple_animal/chicken/turkey{ - atmos_requirements = list("min_oxy" = 0, "max_oxy" = 0, "min_tox" = 0, "max_tox" = 0, "min_co2" = 0, "max_co2" = 0, "min_n2" = 0, "max_n2" = 0); - desc = "A veteran of Nanotrasen's Animal Experimentation Program that attempted to replicate the organic space suit that some hostile entities are known to have exhibited, Tom now serves Nanotrasen as the mascot of the Exploration Crew."; - health = 200; - maxHealth = 200; - melee_damage = 5; - minbodytemp = 2.7; - name = "Tom" - }, -/turf/open/floor/mineral/plastitanium, -/area/asteroid/paradise/surface) "udq" = ( /obj/structure/flora/junglebush/b, /obj/structure/window/reinforced{ @@ -40578,6 +40666,25 @@ }, /turf/open/floor/grass/no_border, /area/medical/storage) +"udr" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/power/apc/auto_name/directional/south{ + pixel_y = -24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/science/mixing) "udt" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -40585,31 +40692,26 @@ }, /turf/open/floor/iron, /area/engine/engineering) -"udE" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/iron, -/area/hallway/primary/aft) -"uex" = ( -/obj/structure/table, -/obj/item/glove_box{ - pixel_x = 8 +"udM" = ( +/obj/structure/railing{ + dir = 4 }, -/obj/item/reagent_containers/dropper{ - pixel_x = -2; - pixel_y = -4 +/obj/effect/turf_decal/siding/dark{ + dir = 4 }, -/obj/item/storage/firstaid/advanced{ - pixel_x = -3; - pixel_y = 9 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/iron/dark, +/area/hallway/primary/aft) +"uef" = ( +/turf/open/floor/plating, +/area/library/abandoned) +"ueT" = ( +/obj/machinery/door/poddoor/shutters{ + id = "exploration" }, -/turf/open/floor/iron/grid/steel, -/area/medical/patients_rooms) -"ueO" = ( -/obj/machinery/smartfridge/chemistry/preloaded, -/turf/open/floor/iron/white, -/area/medical/apothecary) +/turf/open/floor/mineral/titanium, +/area/asteroid/paradise/surface) "ueV" = ( /turf/closed/wall, /area/quartermaster/qm) @@ -40633,10 +40735,6 @@ }, /turf/open/floor/carpet/green, /area/chapel/main) -"ufI" = ( -/obj/structure/railing, -/turf/open/floor/glass/reinforced, -/area/crew_quarters/heads/cmo) "ufL" = ( /obj/machinery/atmospherics/pipe/simple/general/visible, /turf/closed/wall, @@ -40684,6 +40782,11 @@ /obj/machinery/power/port_gen/pacman, /turf/open/floor/iron, /area/engine/engineering) +"uhm" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/iron, +/area/hallway/primary/fore) "uhy" = ( /obj/effect/spawner/lootdrop/glowstick/lit, /turf/open/floor/plating, @@ -40723,30 +40826,6 @@ }, /turf/open/floor/iron, /area/maintenance/department/bridge) -"uik" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/yellow/visible/layer2{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/structure/window/plasma/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/o2/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/engine/atmos) -"uim" = ( -/obj/machinery/power/smes, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating/asteroid/planetary, -/area/asteroid/paradise/surface) "uio" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -40794,36 +40873,8 @@ }, /turf/open/floor/carpet/royalblue, /area/crew_quarters/heads/chief) -"ujM" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/conveyor_switch/oneway{ - dir = 1; - id = "packageSort2" - }, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/effect/landmark/start/cargo_technician, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 - }, -/obj/structure/disposalpipe/sorting/mail/destination/dormitories{ - dir = 8 - }, -/turf/open/floor/iron, -/area/quartermaster/sorting) -"ujX" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, +"ukH" = ( +/obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -40831,111 +40882,48 @@ dir = 4 }, /turf/open/floor/iron, -/area/maintenance/department/engine) -"uke" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/curtain/directional{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/chief) -"ukS" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/dark/warning{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/engineering/hallway) +/area/maintenance/department/engine/atmos) "ukZ" = ( /mob/living/simple_animal/kalo, /obj/effect/landmark/start/janitor, /turf/open/floor/iron, /area/janitor) -"ulg" = ( -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/item/folder/blue, -/obj/item/flashlight/pen, -/obj/item/clothing/neck/stethoscope, -/obj/item/computer_hardware/hard_drive/role/medical{ - pixel_x = 3 - }, -/obj/item/computer_hardware/hard_drive/role/medical{ - pixel_x = -3 - }, -/obj/item/computer_hardware/hard_drive/role/chemistry{ - pixel_y = 6 - }, -/obj/machinery/power/apc/auto_name/directional/south{ - pixel_y = -24 +"uld" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/white, -/area/crew_quarters/heads/cmo) +/turf/open/floor/iron/grid/steel, +/area/medical/patients_rooms) "uli" = ( /turf/closed/wall/r_wall/rust, /area/engine/atmos) -"ulu" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/northleft{ - dir = 2; - name = "Engi Desk"; - req_one_access_txt = "32;19" - }, -/obj/item/paper_bin{ - pixel_x = 7; - pixel_y = 2 +"ulo" = ( +/obj/machinery/light{ + dir = 4 }, -/obj/item/pen{ - pixel_x = 7; - pixel_y = 4 +/obj/machinery/power/apc/auto_name/directional/east{ + pixel_x = 24 }, -/obj/structure/desk_bell{ - pixel_x = -6; +/obj/structure/chair/office/light{ + dir = 1; pixel_y = 3 }, -/obj/machinery/door/poddoor/preopen{ - id = "Engidesk"; - name = "engineering Security Door" - }, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/iron/dark, -/area/engine/engineering) -"ulX" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/turf_decal/tile/red{ - alpha = 180; - dir = 1 - }, -/turf/open/floor/iron/dark/side, -/area/hallway/primary/central) -"uma" = ( -/obj/structure/railing{ - dir = 8 +/obj/structure/cable/yellow{ + icon_state = "0-8" }, -/obj/effect/turf_decal/siding/dark{ - dir = 8 +/obj/effect/landmark/start/scientist, +/turf/open/floor/iron/grid/steel, +/area/science/xenobiology) +"umB" = ( +/obj/effect/decal/cleanable/generic, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/turf/open/floor/iron/dark/side{ - dir = 9 +/obj/machinery/ai_slipper{ + uses = 10 }, -/area/hallway/primary/central) +/turf/open/floor/iron/cafeteria, +/area/crew_quarters/kitchen) "unj" = ( /obj/structure/closet/secure_closet/medical3, /obj/item/stack/sheet/iron/fifty{ @@ -40962,28 +40950,6 @@ }, /turf/open/floor/iron, /area/medical/storage) -"unk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow, -/obj/machinery/door/poddoor/preopen{ - id = "Engidesk"; - name = "engineering Security Door" - }, -/turf/open/floor/plating, -/area/storage/tech) -"unp" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine/atmos) "unt" = ( /obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ dir = 1 @@ -40997,13 +40963,6 @@ }, /turf/open/floor/iron, /area/bridge) -"unI" = ( -/obj/structure/sign/directions/science{ - dir = 4; - pixel_y = 10 - }, -/turf/closed/wall, -/area/hallway/primary/aft) "unO" = ( /obj/structure/railing{ dir = 1 @@ -41045,28 +41004,6 @@ }, /turf/open/floor/iron/dark, /area/security/brig) -"uox" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - alpha = 180; - dir = 8 - }, -/turf/open/floor/iron, -/area/hallway/primary/central) -"upo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/autoname/directional/west{ - c_tag = "Teleporter Room" - }, -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole/bookmanagement, -/turf/open/floor/carpet/royalblack, -/area/library/abandoned) "upy" = ( /obj/machinery/door/airlock/engineering{ name = "Telecomms Storage"; @@ -41079,23 +41016,19 @@ }, /turf/open/floor/iron, /area/engine/atmos) +"upA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/techmaint/planetary, +/area/asteroid/paradise/surface) "upK" = ( /obj/structure/window/reinforced{ dir = 8 }, /turf/open/floor/engine, /area/science/xenobiology) -"upN" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "brigfrontdoor"; - name = "Front Security Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/brig) "upP" = ( /obj/effect/spawner/structure/window, /obj/structure/curtain/directional{ @@ -41168,6 +41101,18 @@ }, /turf/open/floor/iron, /area/security/brig) +"urx" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/hallway/primary/aft) +"urH" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) "urP" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/pool{ @@ -41196,6 +41141,15 @@ /obj/machinery/atmospherics/components/binary/pump/on, /turf/open/floor/engine, /area/maintenance/disposal/incinerator) +"usb" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/landmark/start/quartermaster, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/iron, +/area/hallway/primary/central) "usq" = ( /obj/structure/lattice, /turf/open/openspace, @@ -41209,37 +41163,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/iron/dark, /area/medical/morgue) -"utb" = ( -/obj/effect/turf_decal/siding/dark{ - dir = 8 - }, -/obj/effect/turf_decal/siding/dark{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/dark/warning{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/engineering/hallway) -"utc" = ( -/obj/effect/turf_decal/tile/purple/fourcorners/contrasted, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/science/lab) "utp" = ( /obj/structure/cable{ icon_state = "4-8" @@ -41268,16 +41191,6 @@ /obj/effect/landmark/start/head_of_personnel, /turf/open/floor/wood, /area/crew_quarters/heads/hop) -"uuq" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/aft) -"uux" = ( -/obj/structure/frame/machine, -/turf/open/floor/plating/asteroid/basalt/planetary, -/area/asteroid/paradise) "uuD" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -41304,28 +41217,20 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/engine, /area/science/explab) -"uvj" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/security/glass{ - id_tag = "brigentrance"; - name = "Brig"; - req_access_txt = "63" +"uvR" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/structure/cable/yellow{ + icon_state = "4-16" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +/obj/structure/cable/yellow{ + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "brigentrance"; - name = "Brig Blast Door" + dir = 6 }, -/turf/open/floor/iron/dark, -/area/security/brig) +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/hallway/primary/central) "uvZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 1 @@ -41395,38 +41300,56 @@ }, /turf/open/floor/wood, /area/crew_quarters/theatre/backstage) -"uxe" = ( -/obj/machinery/camera/autoname/directional/east, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/hallway/primary/central) "uxt" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/grid/steel, /area/medical/medbay/central) +"uxv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark, +/area/bridge) "uxB" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, /area/medical/morgue) -"uxJ" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/dark/corner{ +"uxI" = ( +/obj/machinery/computer/cargo{ dir = 4 }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 1 +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, +/turf/open/floor/iron/dark, /area/hallway/primary/central) +"uxK" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) "uxQ" = ( /obj/effect/spawner/room/threexfive, /turf/open/floor/plating, /area/maintenance/department/medical/central) +"uxS" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central) "uyb" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrous_input{ dir = 1 @@ -41438,15 +41361,28 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron/white/corner, /area/science/lab) -"uyA" = ( +"uyo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/carpet/green, +/area/library/abandoned) +"uyu" = ( /obj/structure/railing{ - dir = 8 + dir = 4 }, -/obj/effect/turf_decal/siding/dark{ - dir = 8 +/obj/structure/closet/emcloset, +/obj/structure/sign/map/echo{ + pixel_y = 32 }, -/turf/open/floor/iron/dark, -/area/hallway/primary/central) +/turf/open/floor/glass/reinforced, +/area/hallway/primary/fore) "uyF" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -41456,25 +41392,48 @@ }, /turf/open/floor/iron, /area/maintenance/department/eva) -"uzH" = ( -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" +"uyP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/directional{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable{ - icon_state = "0-2" +/turf/open/floor/plating, +/area/crew_quarters/theatre/backstage) +"uzi" = ( +/obj/structure/railing{ + dir = 8 }, -/turf/open/floor/iron/solarpanel, -/area/asteroid/paradise/surface) -"uzP" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Chemistry Lab"; - req_access_txt = "33" +/turf/open/floor/iron/dark, +/area/hallway/primary/aft) +"uzF" = ( +/obj/structure/table, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/subspace/treatment, +/obj/machinery/light/small{ + dir = 1 }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/white, -/area/medical/apothecary) +/obj/item/book/manual/wiki/tcomms{ + pixel_x = 17; + pixel_y = 4 + }, +/obj/item/radio/intercom{ + pixel_y = 28 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","engine") + }, +/turf/open/floor/iron/dark, +/area/engine/atmos) +"uzO" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/hallway/primary/aft) "uAb" = ( /obj/machinery/atmospherics/components/trinary/filter/critical{ dir = 4; @@ -41489,6 +41448,9 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/tech, /area/engine/engineering) +"uAn" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/fore) "uAr" = ( /obj/structure/lattice/catwalk/over, /obj/structure/railing{ @@ -41505,12 +41467,6 @@ }, /turf/open/floor/iron, /area/engine/engineering) -"uAG" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/openspace, -/area/hallway/primary/fore) "uBk" = ( /obj/machinery/holopad, /obj/structure/railing/corner{ @@ -41530,16 +41486,6 @@ /obj/effect/turf_decal/sand/plating, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise) -"uBH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/engine/engineering) "uCw" = ( /obj/effect/spawner/structure/window/depleteduranium, /obj/machinery/atmospherics/pipe/manifold/general/visible{ @@ -41547,37 +41493,14 @@ }, /turf/open/floor/plating, /area/maintenance/disposal/incinerator) -"uCY" = ( -/obj/structure/chair/fancy/bench/pew/left{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet/green, -/area/chapel/main) +"uCJ" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/pickaxe, +/turf/open/floor/plating/asteroid/basalt/planetary, +/area/asteroid/paradise) "uDA" = ( /turf/open/floor/plating/beach/sand, /area/asteroid/paradise/surface/sand) -"uDE" = ( -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) "uDM" = ( /obj/structure/sign/departments/minsky/research/xenobiology, /turf/closed/wall/r_wall, @@ -41637,16 +41560,6 @@ }, /turf/open/floor/pod/dark, /area/maintenance/department/crew_quarters/dorms) -"uEN" = ( -/obj/structure/lattice/catwalk/over, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera/autoname/directional/west{ - network = list("ss13","security") - }, -/turf/open/openspace, -/area/hallway/primary/fore) "uEY" = ( /obj/machinery/holopad, /obj/effect/turf_decal/box, @@ -41664,10 +41577,6 @@ }, /turf/open/floor/iron/dark, /area/crew_quarters/heads/hop) -"uFe" = ( -/obj/machinery/atmospherics/components/binary/valve, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat/foyer) "uFv" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -41708,10 +41617,39 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise/surface) +"uGp" = ( +/obj/machinery/smartfridge/food, +/turf/open/floor/iron/cafeteria_red, +/area/crew_quarters/kitchen) +"uGq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/security/warden) "uGr" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/department/bridge) +"uHF" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/maintenance/department/engine) +"uHL" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/aft) "uHM" = ( /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 4 @@ -41728,6 +41666,23 @@ dir = 1 }, /area/science/research) +"uHO" = ( +/obj/structure/lattice/catwalk/over, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/openspace, +/area/hallway/primary/fore) +"uHQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/sorting/mail/destination/threatre{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/cafeteria) "uIx" = ( /obj/effect/turf_decal/tile/dark_green{ dir = 1 @@ -41741,6 +41696,68 @@ /obj/item/reagent_containers/food/drinks/shaker, /turf/open/floor/iron, /area/hallway/secondary/service) +"uIG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/iron, +/area/hallway/primary/central) +"uII" = ( +/obj/structure/closet/secure_closet/chemical, +/obj/item/storage/box/pillbottles, +/obj/item/stack/cable_coil/random, +/obj/item/hand_labeler, +/obj/item/gun/syringe{ + pixel_y = 7 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/disposalpipe/sorting/mail/destination/chemistry/flip, +/turf/open/floor/iron, +/area/medical/apothecary) +"uIU" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/northright{ + dir = 2; + name = "Chemistry Desk"; + req_one_access_txt = "5;33" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "chemistry Shutters" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted, +/obj/structure/desk_bell{ + pixel_x = -8 + }, +/obj/item/paper_bin{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/folder/white{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/folder/white{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/item/pen{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/iron/white, +/area/medical/apothecary) "uIW" = ( /obj/effect/turf_decal/bot, /obj/machinery/computer/camera_advanced/xenobio, @@ -41751,16 +41768,13 @@ }, /turf/open/floor/iron/grid/steel, /area/science/xenobiology) -"uJs" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/camera/autoname/directional/west, -/obj/machinery/digital_clock/directional/west, -/turf/open/floor/iron/dark/side{ - dir = 8 +"uJN" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/area/hallway/primary/aft) +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/catwalk_floor/iron_dark, +/area/asteroid/paradise/surface) "uJX" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -41789,6 +41803,15 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating/asteroid/basalt/planetary, /area/asteroid/paradise) +"uKn" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + alpha = 180; + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/hallway/primary/aft) "uKw" = ( /obj/structure/table, /obj/item/stock_parts/subspace/ansible, @@ -41799,16 +41822,6 @@ /obj/item/stock_parts/subspace/crystal, /turf/open/floor/iron/dark, /area/engine/atmos) -"uKN" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/iron, -/area/maintenance/department/security/brig) "uLf" = ( /obj/effect/turf_decal/sand/plating, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -41859,59 +41872,70 @@ }, /turf/open/floor/carpet/orange, /area/crew_quarters/dorms) -"uLU" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/iron, -/area/maintenance/department/cargo) -"uMn" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 10 +"uLi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 5 }, -/obj/machinery/light{ - light_color = "#7AC3FF" +/area/hallway/primary/aft) +"uLD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "quarantineshutters"; + name = "Isolation Shutters" }, -/obj/machinery/digital_clock/directional/south, -/turf/open/floor/glass/reinforced, -/area/medical/medbay/central) -"uNe" = ( /obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "32" + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/effect/turf_decal/stripes/closeup, -/turf/open/floor/plating, -/area/engineering/hallway) -"uNk" = ( -/obj/machinery/computer/security/qm{ - dir = 4 +/turf/open/floor/iron/dark, +/area/maintenance/department/medical/central) +"uLS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 }, -/turf/open/floor/iron/dark, -/area/hallway/primary/central) -"uNl" = ( -/obj/structure/barricade/wooden/crude, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" +/obj/machinery/firealarm/directional/north, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","medbay") }, -/obj/effect/turf_decal/sand/plating, +/obj/machinery/vending/cigarette, +/turf/open/floor/iron, +/area/medical/surgery) +"uLU" = ( +/obj/structure/closet/firecloset/full, /turf/open/floor/iron, +/area/maintenance/department/cargo) +"uNa" = ( +/turf/closed/wall/mineral/titanium/survival, /area/hallway/primary/fore) -"uNx" = ( +"uNj" = ( /obj/structure/table/reinforced, -/obj/item/pipe_dispenser, -/obj/item/lightreplacer{ - pixel_x = 2; - pixel_y = 13 +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = 4; + pixel_y = 9 }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Chefwindow"; + name = "Chef Window" }, -/obj/structure/window/plasma/reinforced, -/turf/open/floor/iron, -/area/engine/engineering) +/obj/item/toy/figure/chef{ + pixel_x = -4; + pixel_y = -1 + }, +/turf/open/floor/iron/white, +/area/crew_quarters/kitchen) "uNJ" = ( /obj/machinery/hydroponics/constructable, /obj/effect/turf_decal/bot, @@ -41940,16 +41964,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/crew_quarters/cryopods) -"uNZ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron/dark, -/area/engine/engineering) "uOs" = ( /obj/machinery/atmospherics/pipe/simple/green/visible/layer4{ dir = 4 @@ -41967,10 +41981,31 @@ }, /turf/open/floor/iron, /area/engine/atmos) -"uOJ" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron, -/area/asteroid/paradise) +"uOt" = ( +/obj/machinery/door/poddoor/incinerator_toxmix{ + id = "EmergancyescapeShutter"; + name = "Emergancy Escape Shutters" + }, +/turf/open/floor/plating, +/area/science/mixing/chamber) +"uOO" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple{ + name = "Holy bedsheet" + }, +/obj/machinery/newscaster{ + pixel_y = 34 + }, +/obj/machinery/camera/autoname/directional/north, +/obj/item/storage/secure/safe{ + pixel_x = -27; + pixel_y = 1 + }, +/obj/item/storage/book/bible{ + pixel_x = 1 + }, +/turf/open/floor/wood, +/area/chapel/office) "uOZ" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/turf_decal/stripes/line{ @@ -42026,6 +42061,20 @@ }, /turf/open/floor/prison, /area/security/prison) +"uQq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/hydroponics/constructable, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/item/paper/guides/jobs/hydroponics{ + default_raw_text = "

Hey there,

Sorry about the cramped space! � I know it's a bit tight in here.

But just so you know, I found a few more hydroponic trays stashed behind botany in maintenance. Feel free to grab them if you need!

Take care!

"; + pixel_x = 6 + }, +/turf/open/floor/iron/grid/steel, +/area/hydroponics) "uQu" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -42033,30 +42082,6 @@ }, /turf/open/floor/iron, /area/maintenance/department/crew_quarters/dorms) -"uQE" = ( -/obj/machinery/light{ - dir = 1; - light_color = "#7AC3FF" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/grid/steel, -/area/medical/patients_rooms) -"uQF" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/kirbyplants/random, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white/side{ - dir = 4 - }, -/area/science/lab) "uQG" = ( /obj/machinery/pdapainter, /obj/effect/turf_decal/bot, @@ -42072,15 +42097,6 @@ slowdown = 0 }, /area/asteroid/paradise/surface) -"uQO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/grass/no_border, -/area/hallway/primary/aft) "uRn" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/fence/cut{ @@ -42089,22 +42105,13 @@ /obj/structure/sign/warning/explosives/alt, /turf/open/floor/plating/dirt/jungle/wasteland, /area/asteroid/paradise/surface) -"uRu" = ( -/obj/structure/chair/fancy/sofa/old/left{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/obj/effect/turf_decal/siding/white, -/obj/structure/railing, -/obj/item/radio/intercom{ - dir = 1; - pixel_x = 29; - pixel_y = -3 +"uRt" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" }, -/turf/open/floor/carpet/green, -/area/crew_quarters/cafeteria) +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) "uRz" = ( /obj/effect/decal/cleanable/blood/old, /obj/structure/cable/yellow{ @@ -42187,24 +42194,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/teleporter) -"uTf" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/bot, -/obj/machinery/camera/autoname/directional/west, -/obj/structure/sign/warning/nosmoking/circle{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/grid/steel, -/area/hydroponics) "uTt" = ( /obj/machinery/camera/autoname/directional/south{ network = list("ss13","medbay","public") @@ -42239,6 +42228,10 @@ }, /turf/open/floor/iron/tech, /area/engine/engineering) +"uTR" = ( +/obj/machinery/smartfridge/chemistry, +/turf/open/floor/iron/white, +/area/medical/apothecary) "uTU" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -42247,6 +42240,21 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/engine/engineering) +"uTY" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/obj/item/kirbyplants/random, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/machinery/digital_clock/directional/east, +/turf/open/floor/iron, +/area/bridge) "uUf" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch"; @@ -42264,6 +42272,34 @@ }, /turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat/maint) +"uUq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible/layer5{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/engine/engineering) +"uUt" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/evac, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/hallway/primary/fore) "uUz" = ( /obj/item/pool/rubber_ring, /obj/effect/turf_decal/siding/red{ @@ -42272,6 +42308,25 @@ }, /turf/open/indestructible/sound/pool, /area/crew_quarters/fitness/recreation) +"uUH" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) "uUK" = ( /obj/effect/turf_decal/stripes/end{ dir = 1 @@ -42287,21 +42342,61 @@ /obj/effect/turf_decal/tile/brown/half/contrasted, /turf/open/floor/iron/dark, /area/quartermaster/qm) +"uVq" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/catwalk_floor/iron_dark, +/area/asteroid/paradise/surface) "uVr" = ( /obj/machinery/space_heater, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) +"uVu" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/security/brig) "uVy" = ( /turf/closed/wall, /area/hallway/secondary/service) -"uVJ" = ( -/obj/structure/table/wood, -/obj/machinery/door/poddoor/shutters{ - id = "commissaryshutters3"; - name = "Vacant Commissary Shutters #3" +"uVE" = ( +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 }, -/turf/open/floor/plating, -/area/hallway/primary/fore) +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/rnd/production/protolathe/department/science, +/turf/open/floor/iron, +/area/science/lab) "uWg" = ( /obj/machinery/light, /obj/structure/stairs{ @@ -42312,22 +42407,24 @@ }, /turf/open/floor/pod/dark, /area/science/lab) -"uWm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" +"uWn" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/tile/dark_green/half/contrasted, +/turf/open/floor/iron, +/area/maintenance/department/medical/morgue) +"uWt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/engine/engineering) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/turf_decal/evac, +/turf/open/floor/iron, +/area/hallway/primary/central) "uWx" = ( /obj/structure/chair/office{ dir = 4 @@ -42338,30 +42435,6 @@ /obj/effect/turf_decal/tile/purple, /turf/open/floor/iron/white/corner, /area/science/research) -"uWK" = ( -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced/prison, -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" - }, -/turf/open/floor/plating, -/area/security/prison) -"uWW" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/maintenance/department/engine) "uWZ" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -42383,6 +42456,16 @@ }, /turf/open/floor/iron, /area/maintenance/department/crew_quarters/bar) +"uXk" = ( +/obj/machinery/computer/security/mining, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/iron, +/area/bridge) "uXm" = ( /obj/structure/cable/yellow{ icon_state = "2-8" @@ -42395,26 +42478,6 @@ "uXr" = ( /turf/open/floor/iron/techmaint/planetary, /area/asteroid/paradise/surface) -"uXy" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel Office"; - req_access_txt = "27" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/chapel/office) "uXI" = ( /obj/effect/turf_decal/sand/plating, /obj/structure/closet/wardrobe/grey, @@ -42423,23 +42486,6 @@ /obj/item/paicard, /turf/open/floor/iron, /area/crew_quarters/dorms) -"uXS" = ( -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/crew_quarters/fitness/recreation) -"uYb" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/grass/no_border, -/area/hallway/primary/fore) "uYr" = ( /turf/open/floor/plating/beach/coastline_t{ dir = 6 @@ -42452,15 +42498,6 @@ }, /turf/open/floor/plating, /area/crew_quarters/heads/hos) -"uYF" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/tile/dark_green/fourcorners/contrasted, -/obj/item/plant_analyzer{ - pixel_x = 2; - pixel_y = -8 - }, -/turf/open/floor/iron, -/area/maintenance/department/medical/morgue) "uYV" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/techstorage/medical, @@ -42522,6 +42559,34 @@ }, /turf/open/floor/iron/white, /area/science/xenobiology) +"vat" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/bridge) +"vaG" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/engineering/hallway) +"vaT" = ( +/obj/structure/table, +/obj/item/clothing/suit/apron/overalls, +/obj/item/cultivator, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/maintenance/department/medical/morgue) "vba" = ( /obj/effect/turf_decal/sand/plating, /obj/structure/cable/yellow{ @@ -42531,6 +42596,30 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plating, /area/quartermaster/storage) +"vbm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/iron, +/area/hallway/primary/aft) +"vbv" = ( +/obj/effect/turf_decal/evac, +/turf/open/floor/iron, +/area/hallway/primary/aft) "vbQ" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/rack, @@ -42538,19 +42627,6 @@ /obj/effect/spawner/lootdrop/maintenance/two, /turf/open/floor/iron, /area/maintenance/department/bridge) -"vbX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/medical/medbay/central) "vci" = ( /obj/structure/table/reinforced, /obj/item/book/manual/wiki/engineering_hacking, @@ -42587,6 +42663,11 @@ /obj/structure/sign/warning/explosives/alt, /turf/open/floor/plating/dirt/planetary, /area/asteroid/paradise/surface) +"vcB" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/effect/turf_decal/trimline/yellow/warning, +/turf/open/floor/iron/dark, +/area/engineering/hallway) "vcD" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 10 @@ -42600,22 +42681,6 @@ /obj/structure/ladder, /turf/open/floor/pod/dark, /area/maintenance/department/medical/morgue) -"vdd" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/dark/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"vdf" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/floor/grass/no_border, -/area/hallway/primary/aft) "vdv" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -42632,17 +42697,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/bar) -"vdC" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/iron, -/area/hallway/primary/central) "vet" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -42653,13 +42707,6 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/department/eva) -"vfs" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/closet/firecloset/full, -/turf/open/floor/glass/reinforced, -/area/hallway/primary/fore) "vft" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 1 @@ -42684,16 +42731,6 @@ /obj/effect/spawner/lootdrop/glowstick/lit, /turf/open/floor/iron, /area/ai_monitored/turret_protected/aisat/maint) -"vga" = ( -/obj/structure/railing{ - dir = 9 - }, -/obj/effect/turf_decal/siding/dark{ - dir = 9 - }, -/obj/machinery/space_heater, -/turf/open/floor/iron/dark, -/area/hallway/primary/central) "vgc" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -42713,24 +42750,20 @@ /obj/machinery/digital_clock/directional/north, /turf/open/floor/pod/dark, /area/engine/engineering) -"vgl" = ( -/obj/structure/table/wood/fancy/blue, -/obj/item/radio/intercom{ - pixel_x = -28 - }, -/obj/item/storage/secure/briefcase{ - pixel_x = -1; - pixel_y = 6 - }, -/obj/item/book/manual/wiki/sopservice, -/turf/open/floor/carpet/blue, -/area/crew_quarters/heads/hop) "vgv" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/closet/crate, /obj/effect/spawner/lootdrop/maintenance/two, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) +"vgE" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "32" + }, +/obj/effect/turf_decal/stripes/closeup, +/turf/open/floor/plating, +/area/engineering/hallway) "vgF" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -42747,23 +42780,28 @@ "vgG" = ( /turf/closed/wall, /area/engine/atmos) -"vgL" = ( -/obj/machinery/computer/card/minor/hos, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","security") - }, -/turf/open/floor/iron/dark, -/area/crew_quarters/heads/hos) "vgR" = ( /obj/structure/flora/ash/stem_shroom, /turf/open/floor/plating/asteroid/basalt/planetary, /area/asteroid/paradise) -"vhn" = ( -/turf/open/floor/glass/reinforced, -/area/asteroid/paradise/surface) +"vhd" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/hallway/primary/central) "vht" = ( /obj/structure/stairs{ dir = 4 @@ -42816,10 +42854,24 @@ dir = 8 }, /turf/open/floor/iron, -/area/hallway/secondary/service) -"vhU" = ( -/turf/closed/wall/rust, -/area/crew_quarters/fitness/recreation) +/area/hallway/secondary/service) +"vhU" = ( +/turf/closed/wall/rust, +/area/crew_quarters/fitness/recreation) +"vhX" = ( +/obj/structure/table, +/obj/item/seeds/flower/lily{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/seeds/flower/geranium, +/obj/effect/decal/cleanable/dirt, +/obj/item/food/grown/wheat, +/obj/item/food/grown/corn, +/obj/item/food/grown/apple, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/maintenance/department/medical/morgue) "vih" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -42827,6 +42879,14 @@ }, /turf/open/floor/iron, /area/maintenance/department/cargo) +"viB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Mix to SM" + }, +/turf/open/floor/iron/tech, +/area/engine/atmos) "viT" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 1 @@ -42917,16 +42977,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/dorms) -"vmg" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/hallway/primary/central) -"vmt" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/openspace, -/area/medical/medbay/central) "vmu" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 @@ -43011,15 +43061,27 @@ initial_gas_mix = "o2=22;n2=82;TEMP=293.15" }, /area/tcommsat/computer) -"vnD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrous_output{ +"vnz" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/heads/hop) +"vnH" = ( +/obj/structure/chair/fancy/bench/corporate/left{ dir = 1 }, -/obj/machinery/camera/autoname/directional/south{ - network = list("ss13","engine") +/obj/effect/turf_decal/siding/yellow{ + dir = 1 }, -/turf/open/floor/engine/n2o, -/area/engine/atmos) +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/engineering/hallway) "vnV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/ladder, @@ -43029,16 +43091,29 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, /area/maintenance/department/cargo) -"voA" = ( -/obj/structure/lattice, -/turf/open/openspace, -/area/engineering/hallway) +"vou" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/engine) "voC" = ( /obj/structure/railing{ dir = 4 }, /turf/open/openspace, /area/maintenance/department/security/brig) +"voK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/multiz/down{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/hallway/primary/fore) "voM" = ( /obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, @@ -43069,15 +43144,6 @@ /obj/structure/sign/warning/radiation/rad_area, /turf/closed/wall/r_wall, /area/engine/engineering) -"vpE" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sorting/unsorted/flip{ - dir = 8 - }, -/turf/open/floor/iron, -/area/quartermaster/sorting) "vpI" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -43099,6 +43165,17 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/closed/wall/r_wall, /area/tcommsat/computer) +"vpM" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/iron, +/area/hallway/primary/aft) "vpU" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/closet/emcloset/anchored, @@ -43118,37 +43195,6 @@ }, /turf/open/floor/plating/beach/sand, /area/asteroid/paradise/surface) -"vqa" = ( -/obj/machinery/door/airlock/medical{ - name = "Surgery Theatre"; - req_access_txt = "45" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/unres, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/iron, -/area/medical/surgery) -"vqg" = ( -/obj/machinery/computer/security/wooden_tv{ - desc = "Welcome to KOZU 5... your number one source for weather, news, and entertainment. And now, the weather forecast for tomorrow..."; - name = "Budget TV"; - network = list("public"); - pixel_x = 2; - pixel_y = 8 - }, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/asteroid/paradise/surface) -"vql" = ( -/obj/machinery/door/poddoor/shutters{ - id = "exploration" - }, -/turf/open/floor/mineral/titanium, -/area/asteroid/paradise/surface) "vqp" = ( /obj/effect/turf_decal/tile/black/opposingcorners{ dir = 1 @@ -43197,6 +43243,25 @@ name = "mainframe floor" }, /area/tcommsat/server) +"vsj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/grid/steel, +/area/science/mixing) "vst" = ( /obj/effect/turf_decal/trimline/white/corner{ dir = 4 @@ -43205,6 +43270,24 @@ /obj/effect/turf_decal/stripes/corner, /turf/open/floor/prison/dark, /area/security/prison) +"vsL" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input/layer2, +/turf/open/floor/engine/air, +/area/engine/atmos) +"vsS" = ( +/obj/machinery/computer/xenoartifact_console, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","rd") + }, +/turf/open/floor/iron, +/area/science/explab) "vsU" = ( /obj/structure/railing, /turf/open/openspace, @@ -43277,11 +43360,12 @@ /obj/effect/mapping_helpers/airlock/abandoned, /turf/open/floor/plating, /area/maintenance/department/medical/morgue) -"vuo" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/closet/crate/solarpanel_small, -/turf/open/floor/iron, -/area/hallway/primary/fore) +"vuq" = ( +/obj/machinery/atmospherics/components/unary/plasma_refiner{ + dir = 8 + }, +/turf/open/floor/mineral/titanium, +/area/asteroid/paradise/surface) "vuE" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 5 @@ -43300,56 +43384,23 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron, /area/engine/atmos) -"vuK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/flasher{ - id = "AI"; - name = "Meatbag Pacifier"; - pixel_x = -33; - pixel_y = 1 - }, -/obj/item/kirbyplants/random, -/obj/machinery/camera/autoname/directional/south{ - network = list("aiupload") - }, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"vvr" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/turf/open/floor/iron/dark/side{ - dir = 10 - }, -/area/hallway/primary/aft) -"vvz" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"vvg" = ( +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/asteroid/planetary, +/area/asteroid/paradise/surface/sand) +"vvp" = ( +/obj/structure/cable/yellow, +/obj/effect/spawner/structure/window/reinforced/prison, +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" }, -/turf/open/floor/iron/tech, -/area/science/mixing) +/turf/open/floor/plating, +/area/security/prison) "vvC" = ( /obj/structure/reagent_dispensers/watertank/high, /turf/open/floor/plating, /area/maintenance/department/medical/morgue) -"vvO" = ( -/obj/effect/turf_decal/box/white, -/obj/machinery/atmospherics/pipe/heat_exchanging/junction, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) "vwd" = ( /turf/closed/wall/r_wall, /area/crew_quarters/heads/hos) @@ -43365,12 +43416,25 @@ }, /turf/open/floor/carpet/blue, /area/crew_quarters/heads/hop) -"vxs" = ( +"vxn" = ( +/obj/machinery/vending/wardrobe/cargo_wardrobe, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, /obj/structure/disposalpipe/segment{ - dir = 10 + dir = 5 }, /turf/open/floor/iron/dark, -/area/hallway/primary/aft) +/area/quartermaster/storage) +"vyh" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/asteroid/paradise/surface) "vyl" = ( /obj/effect/landmark/start/medical_doctor, /turf/open/floor/iron/grid/steel, @@ -43393,18 +43457,6 @@ /obj/effect/turf_decal/trimline/dark_red/filled/warning, /turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat_interior) -"vyt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/machinery/blackbox_recorder, -/turf/open/floor/circuit/telecomms/mainframe{ - initial_gas_mix = "o2=22;n2=82;TEMP=293.15" - }, -/area/tcommsat/computer) "vyx" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/light{ @@ -43419,16 +43471,20 @@ luminosity = 2 }, /area/ai_monitored/turret_protected/ai) -"vyN" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/wrench{ - pixel_x = -4; - pixel_y = 7 +"vyZ" = ( +/obj/effect/landmark/start/quartermaster, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/iron/techmaint/planetary, -/area/asteroid/paradise/surface) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/carpet/orange, +/area/quartermaster/qm) "vzo" = ( /obj/structure/railing{ dir = 1 @@ -43455,33 +43511,42 @@ }, /turf/open/floor/iron/dark, /area/engine/engineering) -"vAe" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible/layer4, -/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible/layer2, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/general/visible{ +"vAD" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark, +/area/hallway/primary/central) +"vAX" = ( +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 }, -/turf/open/floor/iron/dark, -/area/engine/atmos) -"vAW" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" +/obj/effect/landmark/start/scientist, +/obj/structure/disposalpipe/segment{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 +/turf/open/floor/iron/grid/steel, +/area/science/mixing) +"vBh" = ( +/obj/machinery/power/tracker, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/techmaint/planetary, +/area/asteroid/paradise/surface) +"vBm" = ( +/obj/machinery/door/airlock{ + name = "Service Hall"; + req_one_access_txt = "22;25;26;28;35;37;38;46" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/machinery/ai_slipper{ - uses = 10 +/obj/effect/turf_decal/stripes/closeup{ + dir = 1 }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) +/turf/open/floor/plating, +/area/hallway/secondary/service) "vBt" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -43500,12 +43565,36 @@ /obj/effect/turf_decal/delivery/red, /turf/open/floor/iron/dark, /area/security/prison) -"vBQ" = ( +"vBH" = ( +/obj/machinery/atmospherics/components/binary/pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/hallway/primary/aft) +"vCZ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" }, -/turf/open/floor/iron/techmaint/planetary, -/area/asteroid/paradise/surface) +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) +"vDk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow, +/obj/machinery/door/poddoor/preopen{ + id = "brigentrance"; + name = "Brig Blast Door" + }, +/turf/open/floor/plating, +/area/security/warden) "vDt" = ( /obj/structure/flora/rock/pile, /obj/effect/decal/cleanable/dirt, @@ -43520,19 +43609,6 @@ }, /turf/open/floor/carpet/red, /area/crew_quarters/heads/hos) -"vDx" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "Engidesk"; - name = "engineering Security Door" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/grass/no_border, -/area/crew_quarters/heads/chief) "vDJ" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/dark, @@ -43550,35 +43626,12 @@ }, /turf/open/floor/iron, /area/bridge/meeting_room) -"vEg" = ( -/obj/structure/railing{ - dir = 6 - }, -/turf/open/openspace, -/area/engineering/hallway) "vEn" = ( /obj/effect/turf_decal/loading_area{ dir = 8 }, /turf/open/floor/iron, /area/science/mixing) -"vEB" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron, -/area/maintenance/department/crew_quarters/bar) -"vEI" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/camera/autoname/directional/south{ - network = list("ss13","public") - }, -/turf/open/floor/plating, -/area/library/abandoned) "vES" = ( /obj/effect/turf_decal/tile/black/opposingcorners{ dir = 1 @@ -43593,32 +43646,16 @@ }, /turf/open/floor/iron/white, /area/crew_quarters/heads/hor) -"vFg" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/numbers/two_nine, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/maintenance/department/engine) -"vFx" = ( -/obj/structure/closet/secure_closet/chemical, -/obj/item/storage/box/pillbottles, -/obj/item/stack/cable_coil/random, -/obj/item/hand_labeler, -/obj/item/gun/syringe{ - pixel_y = 7 - }, -/obj/item/clothing/glasses/science{ - pixel_x = 2; - pixel_y = 4 +"vFz" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/structure/disposalpipe/sorting/mail/destination/chemistry/flip, -/turf/open/floor/iron, -/area/medical/apothecary) +/turf/open/floor/catwalk_floor/iron_dark, +/area/asteroid/paradise/surface) "vFR" = ( /obj/structure/sign/warning/nosmoking/circle, /turf/closed/wall/r_wall, @@ -43627,41 +43664,51 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/rust, /area/science/mixing) -"vFW" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted, +"vGc" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 8 - }, /obj/structure/disposalpipe/segment{ - dir = 9 + dir = 2 }, -/turf/open/floor/iron/sepia, -/area/quartermaster/storage) -"vGb" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ dir = 4 }, -/turf/open/floor/iron/grid/steel, -/area/medical/patients_rooms) -"vGW" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/iron/white, +/area/crew_quarters/heads/cmo) +"vGd" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, /obj/structure/cable/yellow{ icon_state = "4-8" }, -/turf/open/floor/iron/dark/side{ - dir = 8 +/turf/open/floor/iron/dark, +/area/engine/engineering) +"vGz" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible/layer2{ + dir = 10 }, -/area/hallway/primary/central) +/turf/closed/wall, +/area/engine/supermatter) +"vHd" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/obj/item/stock_parts/micro_laser/ultra, +/obj/item/stock_parts/micro_laser/ultra, +/obj/item/stock_parts/matter_bin/super, +/obj/item/stock_parts/matter_bin/super, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 4; + initialize_directions = 4 + }, +/turf/open/floor/iron/tech, +/area/engine/engineering) "vHe" = ( /obj/effect/turf_decal/loading_area{ dir = 1; @@ -43672,26 +43719,6 @@ }, /turf/open/floor/iron/sepia, /area/quartermaster/storage) -"vHg" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/binary/pump/on/layer4{ - dir = 8; - name = "Waste to Filter" - }, -/obj/machinery/atmospherics/components/binary/pump/on/layer2{ - dir = 4; - name = "Air to Distro"; - target_pressure = 500 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold4w/general/visible, -/turf/open/floor/iron/tech, -/area/engine/atmos) "vHu" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/curtain/directional{ @@ -43706,18 +43733,27 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/dorms) +"vHK" = ( +/obj/structure/noticeboard{ + name = "bounty list"; + pixel_x = 1; + pixel_y = 33 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","cargo") + }, +/obj/effect/turf_decal/numbers/two_nine, +/turf/open/floor/iron/sepia, +/area/hallway/primary/aft) "vHR" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, /area/maintenance/department/cargo) -"vIb" = ( -/obj/effect/spawner/structure/window, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/chapel/main) "vIE" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ @@ -43731,18 +43767,6 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/iron/grid/steel, /area/medical/patients_rooms) -"vIJ" = ( -/obj/structure/chair/fancy/bench/corporate{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/warning{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/engineering/hallway) "vJn" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -43772,33 +43796,23 @@ luminosity = 2 }, /area/ai_monitored/turret_protected/ai) -"vJG" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 +"vKl" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/sopengineering, +/obj/item/clothing/glasses/meson{ + pixel_y = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/effect/turf_decal/siding/dark{ dir = 8 }, -/obj/structure/disposalpipe/multiz{ +/obj/effect/turf_decal/trimline/yellow/corner{ dir = 4 }, -/turf/open/floor/carpet/royalblue, -/area/crew_quarters/heads/chief) -"vKd" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) +/turf/open/floor/iron/dark, +/area/engineering/hallway) "vKD" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -43807,12 +43821,26 @@ }, /turf/open/floor/iron/dark, /area/engine/engineering) -"vLx" = ( -/obj/structure/sign/painting/library{ - pixel_y = 1 +"vKW" = ( +/obj/structure/cable{ + icon_state = "1-4" }, -/turf/closed/wall, -/area/library/abandoned) +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/asteroid/paradise/surface) +"vLu" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/security/brig) "vLy" = ( /obj/effect/decal/cleanable/dirt, /turf/open/openspace, @@ -43858,38 +43886,12 @@ /obj/structure/railing/corner, /turf/open/floor/iron/sepia, /area/quartermaster/storage) -"vME" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/computer/operating{ - dir = 1 - }, -/obj/item/radio/intercom{ - pixel_y = -27 - }, -/turf/open/floor/iron, -/area/medical/surgery) "vMK" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 }, /turf/open/floor/carpet/blue, /area/crew_quarters/heads/captain/private) -"vNm" = ( -/obj/effect/turf_decal/pool{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8; - pixel_x = 4 - }, -/obj/item/storage/firstaid/brute{ - pixel_y = 5 - }, -/obj/structure/closet/boxinggloves, -/turf/open/floor/iron/white, -/area/crew_quarters/fitness/recreation) "vNE" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -43905,34 +43907,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/bridge) -"vNW" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/tech, -/area/engine/engineering) -"vOc" = ( -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 9 - }, -/turf/open/floor/carpet/blue, -/area/bridge/meeting_room) -"vOX" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/tile/dark_blue{ - alpha = 180; - dir = 4 - }, -/turf/open/floor/iron/dark/side, -/area/hallway/primary/central) "vPr" = ( /obj/structure/table/reinforced, /obj/item/storage/fancy/donut_box{ @@ -43962,24 +43936,22 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) -"vPx" = ( -/obj/structure/railing, -/obj/structure/lattice, -/turf/open/openspace, -/area/hallway/primary/fore) -"vPG" = ( -/obj/effect/spawner/structure/window, -/turf/open/openspace, -/area/quartermaster/qm) -"vPM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 +"vPC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/turf/open/floor/iron, -/area/hallway/primary/aft) +/turf/open/floor/iron/dark, +/area/hallway/primary/central) +"vPG" = ( +/obj/effect/spawner/structure/window, +/turf/open/openspace, +/area/quartermaster/qm) "vPP" = ( /obj/effect/turf_decal/tile/neutral/anticorner/contrasted, /obj/structure/disposalpipe/segment{ @@ -43995,38 +43967,15 @@ /obj/structure/flora/rock/pile, /turf/open/floor/plating/asteroid/planetary, /area/crew_quarters/dorms) -"vQt" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/general/hidden/layer4, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/mapping_helpers/simple_pipes/general/visible, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2, -/turf/open/floor/iron/grid/steel, -/area/medical/medbay/central) -"vQL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/iron, -/area/hallway/primary/aft) "vQN" = ( /turf/open/openspace, /area/medical/medbay/central) -"vQZ" = ( -/obj/structure/railing{ - dir = 9 - }, -/obj/structure/closet/firecloset/full, -/turf/open/floor/iron/dark/side{ - dir = 9 +"vRk" = ( +/obj/machinery/atmospherics/pipe/manifold/purple/visible{ + dir = 1 }, -/area/hallway/primary/aft) +/turf/open/floor/plating/dirt/planetary, +/area/asteroid/paradise/surface) "vRv" = ( /obj/structure/table/reinforced, /obj/item/paper/guides/recycler, @@ -44068,10 +44017,6 @@ }, /turf/open/floor/carpet/blue, /area/crew_quarters/heads/captain/private) -"vRY" = ( -/obj/structure/railing/corner, -/turf/open/openspace, -/area/hallway/primary/fore) "vSg" = ( /obj/structure/closet/secure_closet/genpop{ anchored = 0 @@ -44079,6 +44024,19 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plating, /area/maintenance/department/engine/atmos) +"vSj" = ( +/obj/structure/chair/stool/bar/directional/west, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","engine") + }, +/turf/open/floor/iron/dark, +/area/engineering/hallway) "vSp" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -44089,6 +44047,28 @@ }, /turf/open/floor/iron, /area/maintenance/department/cargo) +"vSu" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/white{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/wood, +/area/crew_quarters/cafeteria) +"vSD" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/wood, +/area/crew_quarters/cafeteria) "vSJ" = ( /obj/structure/chair/fancy/comfy{ color = "#596479"; @@ -44125,6 +44105,14 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/dark, /area/medical/morgue) +"vTs" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) "vTw" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -44134,15 +44122,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/bar) -"vTN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/aft) "vUl" = ( /obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ alpha = 180; @@ -44187,23 +44166,11 @@ }, /turf/open/floor/iron, /area/engine/engineering) -"vVw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/turf/open/floor/grass/no_border, -/area/hallway/primary/aft) "vVE" = ( /obj/effect/turf_decal/delivery, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, /area/maintenance/department/crew_quarters/bar) -"vVQ" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/aft) "vVS" = ( /obj/structure/table/reinforced, /obj/item/storage/box{ @@ -44286,41 +44253,21 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"vWQ" = ( -/obj/item/storage/secure/safe{ - pixel_x = 37; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/camera/autoname/directional/north, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = 29 - }, -/turf/open/floor/iron, -/area/hallway/primary/fore) "vXe" = ( -/obj/machinery/light/small, -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/item/storage/box/lights/mixed{ - pixel_x = 4; +/obj/structure/toilet{ + pixel_x = -1; pixel_y = 6 }, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 +/obj/machinery/button/door{ + id = "Toilet 1"; + name = "Toilet Bolt Control"; + normaldoorcontrol = 1; + pixel_y = -31; + specialfunctions = 4 }, -/turf/open/floor/iron/tech, -/area/engine/engineering) +/obj/machinery/light/small, +/turf/open/floor/iron/techmaint/planetary, +/area/hallway/primary/fore) "vXg" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -44328,6 +44275,18 @@ "vXr" = ( /turf/closed/wall/r_wall/rust, /area/quartermaster/warehouse) +"vXt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/central) "vXw" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -44335,29 +44294,6 @@ /obj/machinery/power/emitter, /turf/open/floor/iron, /area/engine/engineering) -"vXz" = ( -/obj/machinery/computer/cargo{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/central) -"vXM" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface/grass) -"vYe" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/iron, -/area/hallway/primary/central) "vYl" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 1 @@ -44372,14 +44308,17 @@ }, /turf/open/floor/carpet/blue, /area/crew_quarters/heads/cmo) -"vYo" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "4-8" +"vYB" = ( +/obj/structure/railing/corner{ + dir = 8 }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/hallway/primary/central) "vZe" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/fence/post{ @@ -44418,6 +44357,16 @@ }, /turf/open/floor/iron, /area/maintenance/department/medical/morgue) +"way" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/iron, +/area/maintenance/department/science/central) "waB" = ( /obj/item/trash/can/food, /turf/open/floor/plating/beach/water, @@ -44430,13 +44379,6 @@ "waZ" = ( /turf/closed/indestructible/riveted, /area/asteroid/paradise) -"wbl" = ( -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/freezer, -/area/hallway/primary/fore) "wbp" = ( /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/sparsegrass, @@ -44478,21 +44420,12 @@ name = "mainframe floor" }, /area/tcommsat/server) -"wco" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 34 - }, -/obj/machinery/camera/autoname/directional/north{ - c_tag = "Corporate Meeting Room" - }, -/obj/structure/chair/fancy/comfy{ - color = "#596479" - }, -/turf/open/floor/carpet/blue, -/area/bridge/meeting_room) +"wcl" = ( +/obj/structure/rack, +/obj/item/circuitboard/machine/telecomms/bus, +/obj/item/circuitboard/machine/telecomms/broadcaster, +/turf/open/floor/iron/dark, +/area/engine/atmos) "wcq" = ( /obj/structure/table/wood, /obj/machinery/computer/med_data/laptop{ @@ -44508,16 +44441,67 @@ }, /turf/open/floor/carpet/red, /area/security/detectives_office) -"wcC" = ( -/obj/item/radio/intercom{ - pixel_y = -34 +"wcs" = ( +/obj/structure/musician/piano{ + icon_state = "piano" }, -/obj/structure/disposalpipe/trunk{ +/obj/effect/turf_decal/siding/white{ dir = 8 }, -/obj/machinery/disposal/bin, -/turf/open/floor/iron/white, -/area/medical/apothecary) +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood, +/area/crew_quarters/cafeteria) +"wcv" = ( +/obj/item/radio/intercom{ + dir = 1; + pixel_x = -33; + pixel_y = -36 + }, +/obj/structure/disposalpipe/multiz/down{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/item/book/manual/wiki/cooking_to_serve_man, +/obj/item/book/manual/wiki/barman_recipes{ + pixel_x = 4; + pixel_y = -4 + }, +/turf/open/floor/iron/cafeteria, +/area/crew_quarters/kitchen) +"wcK" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light, +/turf/open/floor/iron/freezer, +/area/hallway/primary/fore) +"wdb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/bot, +/obj/structure/railing/corner, +/obj/machinery/firealarm/directional/south, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -7 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = 7 + }, +/turf/open/floor/iron/dark, +/area/science/robotics) "wdj" = ( /obj/structure/lattice/catwalk/over, /obj/machinery/computer/card/minor/ce{ @@ -44550,6 +44534,17 @@ }, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/bar) +"wdJ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/north, +/obj/item/toy/spinningtoy, +/obj/structure/disposalpipe/multiz{ + dir = 2 + }, +/turf/open/floor/iron, +/area/engine/atmos) "wdQ" = ( /obj/structure/fireplace, /obj/structure/bed/dogbed, @@ -44574,6 +44569,30 @@ }, /turf/open/floor/iron, /area/engine/engineering) +"wef" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/engine/engineering) "wey" = ( /obj/structure/closet/cardboard, /obj/effect/spawner/lootdrop/maintenance/two, @@ -44589,18 +44608,6 @@ }, /turf/open/floor/iron/freezer, /area/crew_quarters/kitchen/coldroom) -"weG" = ( -/obj/machinery/door/airlock/security{ - name = "Autopsy"; - req_access_txt = "4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/closeup, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/security/detectives_office) "weN" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch"; @@ -44611,37 +44618,6 @@ /obj/effect/turf_decal/stripes/closeup, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/dorms) -"wfm" = ( -/obj/structure/table/wood, -/obj/item/toy/cards/deck, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/carpet/purple, -/area/library/abandoned) -"wfz" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/command, -/obj/effect/turf_decal/delivery, -/obj/item/radio/intercom{ - pixel_y = 29 - }, -/obj/machinery/power/apc/auto_name/directional/east{ - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/camera/motion/directional/east{ - c_tag = "Technical Storage"; - name = "motion-sensitive Technical Storage"; - network = list("ss13","engine") - }, -/turf/open/floor/iron/techmaint/planetary, -/area/storage/tech) "wfB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -44651,6 +44627,21 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/tech, /area/engine/atmos) +"wfD" = ( +/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ + alpha = 180 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer/communications{ + dir = 4 + }, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/turf/open/floor/iron/dark, +/area/bridge) "wfF" = ( /obj/machinery/conveyor_switch/oneway{ dir = 8; @@ -44667,16 +44658,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/dark, /area/maintenance/disposal) -"wfO" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/evac{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/maintenance/department/engine) "wgg" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -44702,6 +44683,13 @@ /obj/structure/lattice/catwalk/over, /turf/open/openspace, /area/maintenance/department/bridge) +"wgG" = ( +/obj/item/kirbyplants/random, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/hallway/primary/central) "wgL" = ( /obj/item/radio/intercom{ dir = 1; @@ -44737,14 +44725,17 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/plating/asteroid/planetary, /area/crew_quarters/dorms) -"whD" = ( -/obj/structure/destructible/cult/tome, -/obj/item/book/codex_gigas, -/obj/structure/light_construct{ - dir = 4 +"whz" = ( +/obj/item/storage/pod{ + pixel_x = 5; + pixel_y = 32 }, -/turf/open/floor/carpet/royalblack, -/area/library/abandoned) +/obj/structure/extinguisher_cabinet{ + pixel_x = -30 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/iron, +/area/medical/surgery) "whG" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ @@ -44772,12 +44763,6 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, /turf/open/floor/plating, /area/quartermaster/warehouse) -"wih" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/maintenance/department/science/xenobiology) "wiC" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/tile/blue/half{ @@ -44794,53 +44779,24 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron/white, -/area/medical/medbay/central) -"wiE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/fence/cut{ - dir = 4 - }, -/turf/open/floor/plating/dirt/jungle/wasteland, -/area/asteroid/paradise/surface) -"wiI" = ( -/obj/structure/lattice/catwalk/over, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/openspace, -/area/maintenance/department/engine/atmos) -"wiJ" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Bay"; - req_one_access_txt = "31;48" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" +/turf/open/floor/iron/white, +/area/medical/medbay/central) +"wiE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +/obj/structure/fence/cut{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/asteroid/paradise/surface) +"wiI" = ( +/obj/structure/lattice/catwalk/over, +/obj/structure/railing{ dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/quartermaster/storage) +/turf/open/openspace, +/area/maintenance/department/engine/atmos) "wiQ" = ( /obj/effect/turf_decal/siding/white{ dir = 8 @@ -44862,46 +44818,50 @@ }, /turf/open/openspace, /area/engine/atmos) -"wjq" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" +"wjo" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/catwalk_floor/iron_dark, -/area/medical/medbay/central) -"wjs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/structure/chair/fancy/plastic{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","rd") + }, +/obj/machinery/firealarm/directional/north, +/obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/iron, -/area/maintenance/department/chapel) +/turf/open/floor/iron/white/side, +/area/science/research) +"wjA" = ( +/obj/structure/girder, +/turf/open/floor/plating/dirt/planetary, +/area/asteroid/paradise/surface) +"wjR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/iron/grid/steel, +/area/medical/patients_rooms) +"wjT" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) "wjY" = ( /obj/machinery/holopad, /obj/effect/turf_decal/box, /turf/open/floor/iron/white, /area/science/explab) -"wki" = ( -/obj/machinery/firealarm/directional/west{ - pixel_x = 27 - }, -/obj/machinery/bookbinder, -/turf/open/floor/carpet/royalblack, -/area/library/abandoned) "wkI" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/department/cargo) -"wkT" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/plating/asteroid/planetary, -/area/asteroid/paradise/surface) "wlj" = ( /obj/effect/turf_decal/tile/black/opposingcorners{ dir = 1 @@ -44919,26 +44879,26 @@ /obj/structure/ladder, /turf/open/floor/pod/dark, /area/maintenance/department/science/central) -"wlT" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 +"wlK" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" }, -/turf/open/floor/iron/white, -/area/medical/medbay/central) -"wlW" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/lootdrop/donkpockets{ - pixel_x = -1; - pixel_y = 11 +/obj/machinery/atmospherics/components/binary/pump/on/layer4{ + dir = 8; + name = "Waste to Filter" }, -/obj/structure/railing, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light{ +/obj/machinery/atmospherics/components/binary/pump/on/layer2{ + dir = 4; + name = "Air to Distro"; + target_pressure = 500 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron, -/area/engineering/hallway) +/obj/machinery/atmospherics/pipe/manifold4w/general/visible, +/turf/open/floor/iron/tech, +/area/engine/atmos) "wlY" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -44955,40 +44915,65 @@ /obj/item/storage/backpack/satchel/flat/treasure, /turf/open/floor/plating/beach/sand, /area/asteroid/paradise/surface/sand) -"wnT" = ( -/turf/open/floor/dock/drydock, -/area/quartermaster/storage) -"wnX" = ( -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 +"wmC" = ( +/obj/item/trash/popcorn, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 }, -/obj/structure/cable/yellow{ - icon_state = "0-4" +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 }, -/obj/structure/toilet{ - dir = 4; - pixel_y = 2 +/turf/open/floor/iron, +/area/medical/surgery) +"wmS" = ( +/obj/structure/railing{ + dir = 6 }, -/turf/open/floor/prison/dark, -/area/security/prison/shielded) -"woI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil/slippery, -/obj/structure/table_frame/wood, -/obj/item/folder, -/obj/item/folder{ - pixel_x = 4; - pixel_y = -1 +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/hallway/primary/central) +"wnw" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 + dir = 10 }, -/turf/open/floor/carpet/purple, -/area/library/abandoned) +/turf/open/floor/iron/dark, +/area/hallway/primary/central) +"wnz" = ( +/obj/structure/sign/departments/restroom, +/turf/closed/wall/mineral/titanium/survival/nodiagonal, +/area/hallway/primary/fore) +"wnT" = ( +/turf/open/floor/dock/drydock, +/area/quartermaster/storage) +"wov" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/iron/showroomfloor, +/area/crew_quarters/fitness/recreation) "woV" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, /area/maintenance/department/engine) +"wpX" = ( +/obj/structure/fence/corner{ + dir = 1 + }, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) "wqd" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -45009,15 +44994,13 @@ }, /turf/open/floor/iron/sepia, /area/quartermaster/storage) -"wqz" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - alpha = 180; +"wqB" = ( +/obj/structure/fence/corner{ dir = 8 }, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/hallway/primary/central) +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) "wqF" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -45030,60 +45013,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/engine) -"wqX" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/evac, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, -/turf/open/floor/iron, -/area/hallway/primary/central) -"wrb" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - alpha = 180; - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/hallway/primary/aft) -"wrf" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/sorting/mail/destination/detective_office{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/brig) -"wrs" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/maintenance/department/chapel) "wru" = ( /obj/effect/spawner/room/fivexfour, /turf/open/floor/plating, @@ -45099,10 +45028,6 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/sorting) -"wsk" = ( -/obj/effect/turf_decal/evac, -/turf/open/floor/iron, -/area/hallway/primary/aft) "wsA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -45115,24 +45040,32 @@ }, /turf/closed/wall, /area/science/test_area) -"wsS" = ( -/obj/item/clothing/suit/costume/ianshirt, -/obj/item/bedsheet/ian, -/obj/structure/closet/secure_closet{ - req_access_txt = "57" - }, -/obj/item/wrench{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/clothing/suit/hooded/ian_costume, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/carpet/blue, -/area/crew_quarters/heads/hop) "wtc" = ( /obj/machinery/space_heater, /turf/open/floor/iron, /area/maintenance/department/engine/atmos) +"wte" = ( +/obj/structure/fence{ + dir = 8 + }, +/obj/structure/sign/warning/securearea, +/turf/open/floor/plating/dirt/planetary, +/area/asteroid/paradise/surface) +"wti" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/engineering/hallway) "wtw" = ( /obj/effect/turf_decal/caution/stand_clear{ dir = 1; @@ -45145,28 +45078,35 @@ slowdown = 0 }, /area/asteroid/paradise/surface) -"wtR" = ( -/obj/structure/table/reinforced, -/obj/item/toy/figure/qm{ - pixel_x = 7; - pixel_y = 2 +"wtQ" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Bay"; + req_one_access_txt = "31;48" }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/obj/item/melee/classic_baton/police/deputy{ - pixel_x = -4; - pixel_y = 3 +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ +/obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/machinery/light{ - dir = 1 +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","cargo") +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/iron/dark, -/area/quartermaster/qm) +/area/quartermaster/storage) "wur" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/caution/stand_clear{ @@ -45183,21 +45123,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/asteroid/planetary, /area/quartermaster/storage) -"wuS" = ( -/obj/machinery/atmospherics/components/binary/pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 6 - }, -/area/hallway/primary/aft) -"wvr" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/flora/rock/pile, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) "wvu" = ( /obj/structure/bed{ dir = 8 @@ -45212,25 +45137,34 @@ }, /turf/open/floor/carpet/purple, /area/crew_quarters/dorms) -"wwk" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, -/turf/open/floor/iron, -/area/maintenance/department/engine) -"wwE" = ( -/turf/closed/wall/r_wall, -/area/hallway/primary/fore) -"wwW" = ( -/obj/structure/chair{ +"wvA" = ( +/obj/structure/railing{ dir = 1 }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, -/obj/machinery/light/small, -/obj/effect/turf_decal/siding/white{ - alpha = 100; - dir = 6 +/obj/structure/lattice, +/turf/open/openspace, +/area/engineering/hallway) +"wvE" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white/side{ + dir = 1 }, +/area/science/research) +"wwk" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/iron, -/area/medical/medbay/central) +/area/maintenance/department/engine) "wxa" = ( /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ dir = 1 @@ -45267,13 +45201,15 @@ }, /turf/open/floor/wood, /area/crew_quarters/cafeteria) -"wxm" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue/half/contrasted{ +"wxi" = ( +/obj/effect/turf_decal/siding/dark{ dir = 1 }, -/turf/open/floor/iron, -/area/hallway/primary/central) +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/engineering/hallway) "wxq" = ( /obj/machinery/requests_console{ department = "Cargo Bay"; @@ -45296,30 +45232,33 @@ /turf/open/floor/iron, /area/ai_monitored/turret_protected/aisat/maint) "wxQ" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/iron, -/area/medical/surgery) -"wxT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/machinery/door/poddoor/preopen{ - id = "brigentrance"; - name = "Brig Blast Door" - }, -/turf/open/floor/plating, -/area/security/brig) -"wyg" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted, -/obj/structure/disposalpipe/sorting/mail/destination/library{ - dir = 1 +/obj/effect/turf_decal/siding/wood, +/obj/effect/spawner/randomvend/cola, +/obj/machinery/airalarm/directional/west, +/obj/structure/sign/map/echo{ + pixel_y = 32 }, -/turf/open/floor/iron/white/side{ +/turf/open/floor/carpet/green, +/area/crew_quarters/cafeteria) +"wxU" = ( +/obj/effect/turf_decal/siding/wood{ dir = 8 }, -/area/science/research) +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/red, +/area/security/detectives_office) "wyo" = ( -/turf/closed/wall/r_wall/rust, -/area/maintenance/department/cargo) +/turf/open/floor/glass/reinforced, +/area/asteroid/paradise/surface) "wys" = ( /turf/closed/wall, /area/crew_quarters/kitchen/coldroom) @@ -45328,17 +45267,6 @@ /obj/structure/flora/grass/jungle, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise) -"wyJ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 9 - }, -/area/hallway/primary/aft) "wyV" = ( /obj/effect/turf_decal/tile/purple/fourcorners/contrasted, /obj/structure/cable/yellow{ @@ -45359,22 +45287,6 @@ "wzb" = ( /turf/closed/wall/rust, /area/maintenance/department/cargo) -"wzg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/disposalpipe/sorting/mail/destination/toxins{ - dir = 1 - }, -/turf/open/floor/iron/white/side{ - dir = 6 - }, -/area/science/lab) "wzi" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -45428,6 +45340,10 @@ }, /turf/open/floor/iron/dark, /area/security/execution/education) +"wAx" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/planetary, +/area/asteroid/paradise) "wAN" = ( /obj/effect/turf_decal/tile/dark_green/fourcorners/contrasted, /obj/effect/turf_decal/siding/white/corner{ @@ -45442,6 +45358,15 @@ }, /turf/open/floor/iron, /area/hydroponics) +"wBg" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/map/echo{ + pixel_x = -32 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/aft) "wBy" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/mineral/random/air, @@ -45451,6 +45376,10 @@ /obj/effect/spawner/lootdrop/maintenance/two, /turf/open/floor/iron, /area/maintenance/department/engine) +"wCh" = ( +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) "wCp" = ( /obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ alpha = 180; @@ -45461,14 +45390,26 @@ }, /turf/open/floor/iron, /area/security/prison) -"wCR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 +"wCB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/iron/tech, -/area/engine/engineering) +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/hallway/primary/fore) +"wCG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/east{ + pixel_x = 24 + }, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/science/central) "wDb" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -45499,10 +45440,15 @@ /obj/effect/landmark/start/station_engineer, /turf/open/floor/iron/tech, /area/engine/atmos) -"wDy" = ( -/obj/structure/railing/corner, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/central) +"wDD" = ( +/obj/effect/turf_decal/sand/plating, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron/techmaint/planetary, +/area/asteroid/paradise/surface) "wDK" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -45598,19 +45544,6 @@ /obj/machinery/vending/wardrobe/engi_wardrobe, /turf/open/floor/iron, /area/engine/engineering) -"wEY" = ( -/obj/effect/turf_decal/siding/wood/corner, -/obj/structure/closet/secure_closet/captains, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/reagent_containers/food/drinks/flask/gold{ - pixel_x = 3; - pixel_y = 8 - }, -/obj/item/pinpointer/nuke{ - pixel_y = 5 - }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/heads/captain/private) "wFm" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -45626,18 +45559,6 @@ }, /turf/open/floor/iron/grid/steel, /area/bridge) -"wFz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/binary/pump/layer2{ - dir = 8; - name = "External Gas to Loop" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron/dark, -/area/engine/engineering) "wFL" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/multiz/layer4{ @@ -45655,14 +45576,6 @@ }, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise) -"wFP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/hallway/primary/central) "wGp" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/dirt/dust, @@ -45697,16 +45610,6 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/iron, /area/maintenance/department/science/xenobiology) -"wGY" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) "wHe" = ( /obj/structure/window/reinforced{ dir = 1 @@ -45730,6 +45633,21 @@ }, /turf/open/floor/pod/dark, /area/crew_quarters/heads/hor) +"wHx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/multiz{ + dir = 2 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/engine/engineering) "wHD" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -45742,6 +45660,46 @@ /obj/machinery/digital_clock/directional/east, /turf/open/floor/iron/dark, /area/quartermaster/storage) +"wHN" = ( +/obj/machinery/button/flasher{ + id = "brigentryaux"; + pixel_x = 5; + pixel_y = -37 + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "outerbrig"; + name = "Brig Exterior Doors Control"; + normaldoorcontrol = 1; + pixel_x = -6; + pixel_y = -25; + req_access_txt = "63" + }, +/obj/machinery/button/door{ + id = "brigentrance"; + name = "Brig Lockdown Control"; + pixel_x = 6; + pixel_y = -25; + req_access_txt = "63" + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + alpha = 180; + dir = 8 + }, +/obj/item/radio/intercom{ + dir = 1; + pixel_x = -32; + pixel_y = -28 + }, +/obj/machinery/computer/crew{ + dir = 4; + req_one_access = list(5,4,3) + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/security/warden) "wHO" = ( /obj/structure/window/reinforced{ dir = 1 @@ -45753,22 +45711,6 @@ }, /turf/open/floor/engine, /area/science/xenobiology) -"wIf" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/sepia, -/area/quartermaster/storage) "wIp" = ( /obj/machinery/camera/autoname/directional/east{ network = list("ss13","rd") @@ -45780,17 +45722,6 @@ /obj/structure/cable/yellow, /turf/open/floor/plating, /area/storage/tech) -"wIQ" = ( -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/grass/no_border, -/area/hallway/primary/fore) "wIV" = ( /obj/structure/chair{ dir = 1 @@ -45809,6 +45740,22 @@ }, /turf/open/floor/carpet/red, /area/crew_quarters/heads/hos) +"wJi" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/sepia, +/area/quartermaster/storage) "wJw" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -45832,17 +45779,13 @@ "wKO" = ( /turf/closed/wall/r_wall, /area/science/test_area) -"wKQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ +"wLa" = ( +/obj/structure/fence{ dir = 8 }, -/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/medical/apothecary) +/obj/structure/sign/warning/electricshock, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) "wLe" = ( /turf/open/floor/engine/light, /area/holodeck/small) @@ -45852,26 +45795,6 @@ }, /turf/open/openspace, /area/quartermaster/qm) -"wLG" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/asteroid/paradise/surface) -"wLQ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/hallway/primary/central) "wLS" = ( /obj/structure/railing/corner{ dir = 4 @@ -45897,6 +45820,10 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/iron, /area/science/explab) +"wMj" = ( +/obj/structure/lattice/catwalk/over, +/turf/open/openspace, +/area/engineering/hallway) "wMn" = ( /obj/structure/cable/yellow{ icon_state = "1-8" @@ -45917,6 +45844,29 @@ }, /turf/open/floor/wood, /area/crew_quarters/cafeteria) +"wMt" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) +"wMw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron, +/area/hallway/primary/aft) "wML" = ( /obj/machinery/door/airlock/highsecurity{ name = "Secure Tech Storage"; @@ -45955,21 +45905,13 @@ }, /turf/open/floor/iron, /area/security/brig) -"wNm" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/library/abandoned) -"wNL" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/structure/disposalpipe/segment{ - dir = 9 +"wNv" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/dark_blue{ + alpha = 180 }, -/turf/open/floor/plating, -/area/maintenance/department/engine) +/turf/open/floor/iron, +/area/hallway/primary/central) "wNN" = ( /obj/machinery/computer/atmos_alert{ dir = 8 @@ -45987,37 +45929,20 @@ /obj/machinery/space_heater, /turf/open/floor/plating, /area/maintenance/department/cargo) -"wNS" = ( -/obj/structure/railing{ - dir = 9 +"wOo" = ( +/obj/structure/railing/corner{ + dir = 8 }, -/obj/structure/lattice, -/turf/open/openspace, -/area/hallway/primary/fore) -"wOh" = ( -/obj/effect/turf_decal/trimline/dark_blue/filled/line{ - dir = 4 +/turf/open/floor/iron/dark/corner{ + dir = 8 }, -/obj/effect/turf_decal/bot, -/obj/machinery/photocopier, -/turf/open/floor/iron/dark, -/area/bridge/meeting_room) +/area/hallway/primary/central) "wOF" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/iron, /area/maintenance/department/science/central) -"wOL" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/disposalpipe/multiz/down{ - dir = 2 - }, -/turf/open/floor/iron/white/side, -/area/science/lab) "wON" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/camera/autoname/directional/west{ @@ -46048,33 +45973,55 @@ /obj/effect/turf_decal/stripes/closeup, /turf/open/floor/plating, /area/crew_quarters/heads/hor) -"wPi" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" +"wQa" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/table, +/obj/item/glove_box{ + pixel_x = -6; + pixel_y = 10 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 +/obj/item/storage/box/bodybags{ + pixel_x = 5; + pixel_y = 3 }, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/structure/cable/yellow{ - icon_state = "2-4" +/obj/item/clothing/mask/surgical{ + pixel_x = 3; + pixel_y = -8 }, -/turf/open/floor/iron, -/area/maintenance/department/engine/atmos) -"wPp" = ( -/obj/structure/railing{ +/turf/open/floor/iron/dark, +/area/security/detectives_office) +"wQk" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/structure/disposalpipe/multiz/down{ dir = 4 }, -/turf/open/openspace, -/area/hallway/primary/central) +/turf/open/floor/iron, +/area/security/brig) "wQy" = ( /obj/structure/flora/ausbushes/ywflowers, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise/surface) +"wQE" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("aiupload") + }, +/obj/machinery/firealarm/directional/north, +/turf/open/openspace, +/area/hallway/primary/fore) "wQG" = ( /turf/closed/wall, /area/security/warden) @@ -46086,20 +46033,35 @@ /obj/effect/spawner/lootdrop/glowstick/lit, /turf/open/floor/plating, /area/maintenance/department/science/central) -"wQW" = ( -/obj/machinery/smartfridge{ - name = "Bulk storage" +"wQK" = ( +/obj/machinery/space_heater, +/obj/machinery/power/apc/auto_name/directional/north{ + pixel_y = 24 }, -/turf/open/floor/iron/grid/steel, -/area/hydroponics) -"wQY" = ( -/obj/structure/sign/departments/minsky/supply/cargo, -/turf/closed/wall, -/area/hallway/primary/aft) -"wRv" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/turf/open/floor/iron/tech, -/area/engine/engineering) +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"wQP" = ( +/obj/machinery/power/apc/auto_name/directional/west{ + pixel_x = -24 + }, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) "wRO" = ( /obj/machinery/announcement_system, /obj/effect/turf_decal/stripes/line{ @@ -46109,17 +46071,41 @@ initial_gas_mix = "o2=22;n2=82;TEMP=293.15" }, /area/tcommsat/computer) -"wRZ" = ( -/obj/structure/railing{ - dir = 9 +"wRX" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 }, -/turf/open/openspace, -/area/hallway/primary/fore) -"wSx" = ( -/obj/structure/lattice, -/obj/structure/railing/corner, -/turf/open/openspace, -/area/hallway/primary/fore) +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/machinery/door/poddoor/preopen{ + id = "brigfrontdoor"; + name = "Front Security Blast Door" + }, +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/brig) +"wSa" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/multiz/down{ + dir = 4 + }, +/turf/open/floor/iron, +/area/maintenance/department/engine/atmos) "wSz" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -46173,67 +46159,18 @@ /obj/effect/turf_decal/evac/evac_big, /turf/open/floor/iron, /area/maintenance/department/science/central) -"wTn" = ( -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, +"wUl" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box, +/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/central) -"wUj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/rnd/production/techfab/department/cargo, -/obj/machinery/power/apc/auto_name/directional/east{ - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/quartermaster/storage) -"wVn" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/item/trash/tray{ - pixel_x = 11 - }, -/obj/item/trash/semki{ - pixel_x = 12; - pixel_y = 4 - }, -/obj/item/trash/can/food/peaches/maint{ - pixel_x = -7; - pixel_y = 7 - }, -/obj/item/trash/candle{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/trash/can{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","security") - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) +/turf/open/floor/iron/white, +/area/medical/apothecary) +"wUU" = ( +/turf/open/floor/plating/asteroid/planetary, +/area/asteroid/paradise/surface/sand) "wVx" = ( /obj/structure/sign/departments/minsky/supply/janitorial{ pixel_y = 32 @@ -46259,6 +46196,17 @@ /obj/item/paicard, /turf/open/floor/carpet/green, /area/crew_quarters/cafeteria) +"wVF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/hallway/primary/aft) +"wVH" = ( +/turf/open/floor/iron, +/area/hallway/primary/central) "wVI" = ( /obj/effect/turf_decal/delivery, /obj/machinery/portable_atmospherics/canister/oxygen, @@ -46325,9 +46273,12 @@ /obj/machinery/power/emitter, /turf/open/floor/iron, /area/engine/engineering) -"wXX" = ( -/obj/machinery/light/small/broken/directional/east, -/turf/open/floor/plating/dirt/planetary, +"wYG" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/catwalk_floor/iron_dark, /area/asteroid/paradise/surface) "wYL" = ( /obj/effect/turf_decal/stripes/line{ @@ -46343,15 +46294,21 @@ }, /turf/open/floor/iron/white, /area/medical/medbay/central) -"wYN" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 +"wYP" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Medbay Maintenance"; + req_one_access_txt = "5" }, -/obj/structure/fireaxecabinet/directional/south, -/turf/open/floor/iron/dark/side{ - dir = 4 +/obj/machinery/door/poddoor/shutters/preopen{ + id = "quarantineshutters"; + name = "Isolation Shutters" }, -/area/bridge) +/obj/effect/turf_decal/stripes/closeup, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/iron, +/area/maintenance/department/crew_quarters/bar) "wYU" = ( /obj/effect/landmark/start/cyborg, /obj/structure/cable{ @@ -46372,37 +46329,17 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plating, /area/maintenance/department/science/central) -"wZm" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/maintenance/department/science/xenobiology) -"wZt" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "4-8" +"wZs" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 }, -/turf/open/floor/plating/asteroid/planetary, -/area/asteroid/paradise/surface) -"wZC" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 }, -/obj/effect/turf_decal/siding/wood{ - dir = 10 +/turf/open/floor/iron/dark/side{ + dir = 8 }, -/turf/open/floor/carpet/green, -/area/library/abandoned) +/area/hallway/primary/central) "wZD" = ( /obj/effect/turf_decal/sand/plating, /obj/structure/sign/poster/official/no_erp{ @@ -46441,14 +46378,6 @@ /obj/item/clothing/under/rank/prisoner, /turf/open/floor/iron, /area/security/prison) -"xap" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/structure/railing/corner, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) "xaA" = ( /obj/effect/turf_decal/box, /obj/machinery/ai_slipper{ @@ -46470,6 +46399,16 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise/surface) +"xbj" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/wrench{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/iron/techmaint/planetary, +/area/asteroid/paradise/surface) "xbu" = ( /obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/delivery, @@ -46478,45 +46417,18 @@ }, /turf/open/floor/iron, /area/science/mixing) -"xbA" = ( -/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ - alpha = 180 - }, -/obj/effect/turf_decal/loading_area{ - dir = 4; - pixel_y = -1 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "HoP Queue Shutters" - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/machinery/button/door{ - id = "hopqueue"; - name = "Queue Shutter Control"; - pixel_y = -36; - req_access_txt = "57" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_x = 1; - pixel_y = -27 - }, -/turf/open/floor/iron, -/area/hallway/primary/fore) "xbL" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /turf/open/floor/plating, /area/security/warden) +"xbV" = ( +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/lattice, +/turf/open/openspace, +/area/hallway/primary/fore) "xcp" = ( /obj/machinery/atmospherics/components/binary/pump/layer2{ dir = 8; @@ -46531,6 +46443,17 @@ }, /turf/open/floor/iron/tech, /area/engine/atmos) +"xct" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/department/chapel) "xcv" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -46550,33 +46473,33 @@ /obj/structure/cable/yellow{ icon_state = "4-8" }, -/turf/open/floor/iron/dark, -/area/crew_quarters/kitchen) -"xdi" = ( -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 +/turf/open/floor/iron/dark, +/area/crew_quarters/kitchen) +"xdg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos/glass{ + req_access_txt = "11" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/effect/turf_decal/stripes/line{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "medbay" +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 }, -/obj/machinery/door/airlock/medical/glass{ - emergency = 1; - id_tag = "MedbayFoyer"; - name = "Medbay"; - req_one_access_txt = "5" +/obj/machinery/atmospherics/pipe/simple/orange/visible/layer5{ + dir = 4 }, -/turf/open/floor/iron/white, -/area/medical/medbay/central) +/turf/open/floor/iron/dark, +/area/engine/atmos) "xdp" = ( /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ dir = 8 @@ -46589,32 +46512,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"xdC" = ( -/obj/structure/closet/secure_closet/detective, -/obj/item/storage/box/evidence{ - pixel_y = 5 - }, -/obj/item/flashlight/seclite, -/obj/item/restraints/handcuffs, -/obj/item/taperecorder, -/obj/machinery/requests_console{ - department = "Detective's office"; - name = "Detective RC"; - pixel_y = 30 - }, -/obj/item/camera/detective, -/obj/machinery/computer/security/telescreen{ - dir = 8; - name = "Station Monitor"; - network = list("ss13"); - pixel_x = 24 - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","security") - }, -/obj/item/holosign_creator/security, -/turf/open/floor/wood, -/area/security/detectives_office) "xdD" = ( /obj/structure/window/reinforced{ dir = 4 @@ -46639,21 +46536,48 @@ }, /turf/open/floor/iron/cafeteria, /area/crew_quarters/kitchen) +"xdJ" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/four, +/turf/open/floor/plating/asteroid/basalt/planetary, +/area/asteroid/paradise) "xdL" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, /area/maintenance/department/medical/central) -"xeW" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/disposalpipe/segment{ +"xdR" = ( +/obj/effect/turf_decal/siding/wideplating/terracotta{ + dir = 8 + }, +/obj/structure/no_effect_signpost{ + name = "Echo station"; + pixel_x = -4; + pixel_y = 3 + }, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) +"xel" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/obj/effect/turf_decal/numbers{ dir = 1 }, -/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/sorting/mail/destination/hos_office/flip{ + dir = 8 }, -/turf/open/floor/iron/grid/steel, -/area/medical/patients_rooms) +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"xeG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/broken, +/area/library/abandoned) "xfd" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -46669,23 +46593,25 @@ }, /turf/open/floor/iron/white, /area/science/xenobiology) -"xfu" = ( -/obj/machinery/light{ - dir = 4 +"xft" = ( +/obj/machinery/computer/teleporter{ + dir = 1 }, -/obj/machinery/power/apc/auto_name/directional/east{ - pixel_x = 24 +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 +/obj/item/hand_tele{ + pixel_x = 1; + pixel_y = 7 }, -/obj/structure/cable/yellow{ - icon_state = "0-8" +/obj/machinery/requests_console{ + department = "EVA"; + pixel_x = 1; + pixel_y = -33 }, -/obj/effect/landmark/start/scientist, -/turf/open/floor/iron/grid/steel, -/area/science/xenobiology) +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark, +/area/teleporter) "xfA" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -46693,13 +46619,6 @@ /obj/machinery/telecomms/server/presets/service, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"xfB" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 4; - initialize_directions = 4 - }, -/turf/open/floor/iron/tech, -/area/engine/engineering) "xfI" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch"; @@ -46711,11 +46630,6 @@ /obj/effect/turf_decal/stripes/closeup, /turf/open/floor/plating, /area/science/xenobiology) -"xfL" = ( -/obj/structure/flora/rock/pile, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/asteroid/basalt/planetary, -/area/asteroid/paradise) "xfN" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/multiz/layer4{ @@ -46726,14 +46640,32 @@ }, /turf/open/floor/plating, /area/maintenance/department/engine/atmos) -"xfO" = ( -/obj/structure/chair/stool/directional/west, -/obj/effect/landmark/start/medical_doctor, -/obj/structure/disposalpipe/multiz/down{ - dir = 8 +"xge" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 }, -/turf/open/floor/iron, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/catwalk_floor/iron_dark, /area/medical/medbay/central) +"xgp" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + alpha = 180 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/firealarm/directional/west, +/obj/structure/disposalpipe/multiz{ + dir = 1 + }, +/turf/open/floor/iron, +/area/security/brig) "xgH" = ( /turf/closed/wall, /area/medical/storage) @@ -46750,12 +46682,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plating/asteroid/planetary, /area/quartermaster/storage) -"xhx" = ( -/obj/structure/railing{ - dir = 10 - }, -/turf/open/floor/glass/reinforced, -/area/crew_quarters/heads/cmo) "xhE" = ( /obj/structure/reflector/box{ anchored = 1; @@ -46766,13 +46692,6 @@ }, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise) -"xhS" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/department/chapel) "xiu" = ( /obj/effect/turf_decal/trimline/white/line{ dir = 1 @@ -46797,6 +46716,11 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/wood, /area/crew_quarters/cafeteria) +"xiE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/wood/broken, +/area/library/abandoned) "xiF" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -46813,21 +46737,6 @@ }, /turf/open/floor/iron, /area/maintenance/department/bridge) -"xiM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/turf_decal/bot, -/obj/structure/railing/corner, -/obj/machinery/firealarm/directional/south, -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = -7 - }, -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = 7 - }, -/turf/open/floor/iron/dark, -/area/science/robotics) "xiY" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -46877,11 +46786,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat/maint) -"xjz" = ( -/turf/open/floor/iron/dark/side{ - dir = 5 - }, -/area/hallway/primary/aft) "xko" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -46920,6 +46824,10 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/maintenance/department/security/brig) +"xkO" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/maintenance/department/engine) "xkV" = ( /obj/machinery/atmospherics/pipe/simple/yellow/visible/layer2{ dir = 4 @@ -46930,15 +46838,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/tech, /area/engine/atmos) -"xlB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" +"xlw" = ( +/obj/machinery/power/apc/auto_name/directional/south{ + pixel_y = -24 }, -/obj/structure/cable/yellow{ - icon_state = "1-2" +/obj/structure/cable/yellow, +/obj/structure/filingcabinet{ + pixel_x = -8 }, -/turf/open/floor/iron/dark, -/area/hallway/primary/aft) +/obj/structure/filingcabinet/security{ + pixel_x = 8 + }, +/turf/open/floor/wood, +/area/security/detectives_office) +"xlN" = ( +/turf/open/floor/glass/reinforced, +/area/hallway/primary/central) "xmm" = ( /obj/structure/railing{ dir = 5 @@ -46954,6 +46869,30 @@ "xmL" = ( /turf/closed/wall/rust, /area/science/mixing) +"xmX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"xmZ" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/item/radio/intercom{ + pixel_x = 32; + pixel_y = -2 + }, +/turf/open/floor/iron/dark, +/area/engineering/hallway) "xnb" = ( /obj/machinery/door/airlock/highsecurity{ name = "AI Upload"; @@ -46983,6 +46922,13 @@ /obj/structure/grille/broken, /turf/open/floor/iron, /area/maintenance/department/science/central) +"xnS" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/openspace, +/area/engineering/hallway) "xnU" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 @@ -47020,7 +46966,7 @@ }, /turf/open/floor/plating/rust, /area/science/test_area) -"xos" = ( +"xoi" = ( /obj/effect/spawner/structure/window/depleteduranium, /turf/open/floor/plating, /area/asteroid/paradise) @@ -47068,11 +47014,6 @@ slowdown = 0 }, /area/asteroid/paradise/surface) -"xpy" = ( -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/hallway/primary/central) "xpJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 6 @@ -47115,19 +47056,6 @@ /obj/structure/closet/cardboard, /turf/open/floor/iron/sepia, /area/quartermaster/warehouse) -"xqj" = ( -/obj/structure/flora/grass/jungle/b, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/grass/no_border, -/area/hallway/primary/fore) "xql" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/tile/purple/anticorner/contrasted{ @@ -47154,6 +47082,12 @@ /obj/structure/flora/rock/pile, /turf/open/floor/plating/asteroid/basalt/planetary, /area/asteroid/paradise) +"xri" = ( +/obj/machinery/smartfridge{ + name = "Bulk storage" + }, +/turf/open/floor/iron/grid/steel, +/area/hydroponics) "xrC" = ( /obj/effect/turf_decal/numbers/two_nine{ dir = 1 @@ -47187,38 +47121,6 @@ /obj/effect/landmark/start/captain, /turf/open/floor/carpet/royalblue, /area/crew_quarters/heads/captain) -"xsu" = ( -/obj/structure/flora/rock/pile, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/catwalk_floor/iron_dark, -/area/asteroid/paradise/surface) -"xsw" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/engine/engineering) "xsH" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -47233,6 +47135,25 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/closed/wall, /area/maintenance/department/medical/morgue) +"xsU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 9 + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/heads/cmo) +"xsZ" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/lattice, +/turf/open/openspace, +/area/engineering/hallway) "xtb" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -47250,24 +47171,13 @@ }, /turf/open/floor/plating, /area/maintenance/department/bridge) -"xtQ" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/trimline/dark_blue/filled/line{ - dir = 4 - }, -/obj/machinery/vending/cigarette, -/turf/open/floor/iron/dark, -/area/bridge/meeting_room) -"xtX" = ( -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" +"xtG" = ( +/obj/item/kirbyplants/random, +/obj/structure/disposalpipe/segment{ + dir = 5 }, -/obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, -/area/security/brig) +/area/hallway/primary/aft) "xuC" = ( /obj/vehicle/ridden/janicart{ dir = 1 @@ -47286,15 +47196,14 @@ }, /turf/open/floor/iron/grid/steel, /area/janitor) -"xuK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/machinery/door/poddoor/preopen{ - id = "brigentrance"; - name = "Brig Blast Door" +"xuT" = ( +/obj/structure/railing/corner{ + dir = 1 }, -/turf/open/floor/plating, -/area/security/warden) +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/hallway/primary/aft) "xuY" = ( /obj/effect/turf_decal/tile/purple/fourcorners/contrasted, /obj/structure/chair/office/light{ @@ -47309,12 +47218,33 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, /area/science/lab) +"xvc" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/engine/engineering) "xvi" = ( /obj/machinery/light/small{ dir = 4 }, /turf/open/floor/iron, /area/maintenance/department/science/xenobiology) +"xvn" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/hallway/primary/aft) "xvx" = ( /obj/item/radio/intercom{ dir = 1; @@ -47350,34 +47280,6 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/qm) -"xvI" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/asteroid/paradise/surface) -"xvQ" = ( -/obj/effect/turf_decal/trimline/dark/warning{ - dir = 4 - }, -/obj/effect/turf_decal/siding/dark{ - dir = 4 - }, -/obj/effect/turf_decal/siding/dark{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_x = -32; - pixel_y = -3 - }, -/turf/open/floor/iron/dark, -/area/engineering/hallway) "xwe" = ( /obj/structure/flora/ausbushes/lavendergrass, /obj/effect/decal/cleanable/dirt, @@ -47401,6 +47303,16 @@ /obj/machinery/light, /turf/open/floor/iron/dark, /area/teleporter) +"xwt" = ( +/obj/structure/fence/corner{ + dir = 8 + }, +/turf/open/floor/plating/grass, +/area/asteroid/paradise/surface) +"xwu" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/iron, +/area/hallway/primary/fore) "xwB" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -47459,22 +47371,43 @@ dir = 1 }, /area/asteroid/paradise/surface) +"xwR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/manifold/green/visible/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/engine/engineering) +"xwY" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/aft) "xxa" = ( /obj/effect/turf_decal/siding/wideplating/terracotta{ dir = 1 }, /turf/open/floor/plating/grass, /area/asteroid/paradise/surface) -"xxn" = ( -/obj/structure/girder, -/turf/open/floor/plating/dirt/planetary, -/area/asteroid/paradise/surface) -"xxo" = ( -/obj/structure/cable{ - icon_state = "1-2" +"xyb" = ( +/obj/structure/fans/tiny{ + density = 1; + icon = 'icons/effects/effects.dmi'; + icon_state = "m_shield"; + max_integrity = 1e+007 }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/asteroid/paradise/surface) +/turf/open/floor/plating/asteroid/basalt/planetary, +/area/quartermaster/storage) "xyh" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 10 @@ -47491,22 +47424,12 @@ }, /turf/open/floor/carpet/orange, /area/quartermaster/qm) -"xyn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/holohoop{ - dir = 4 +"xyk" = ( +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","engine") }, -/turf/open/floor/prison/dark, -/area/security/prison) -"xyG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output, -/turf/open/floor/engine/air, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output/layer2, +/turf/open/floor/engine/n2, /area/engine/atmos) "xyS" = ( /obj/effect/decal/cleanable/dirt, @@ -47527,76 +47450,36 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat/foyer) -"xzz" = ( +"xzo" = ( /obj/structure/railing/corner{ dir = 4 }, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) -"xzL" = ( -/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ - alpha = 180 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/computer/communications{ - dir = 4 - }, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/turf/open/floor/iron/dark, -/area/bridge) -"xzU" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/white/side, -/area/science/research) -"xzV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ +/obj/machinery/light/small{ dir = 4 }, -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/turf/open/openspace, +/area/hallway/primary/fore) +"xzp" = ( +/obj/structure/railing{ + dir = 1 }, -/obj/machinery/door/airlock/public/glass, -/turf/open/floor/iron, -/area/hallway/primary/aft) -"xAe" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/hallway/primary/fore) +"xzJ" = ( /obj/structure/fence{ dir = 8 }, -/obj/structure/sign/warning/securearea, +/obj/structure/sign/warning/electricshock, +/obj/effect/turf_decal/sand/plating, /turf/open/floor/plating/grass, /area/asteroid/paradise/surface) +"xAa" = ( +/obj/structure/fence/cut/large{ + dir = 8 + }, +/turf/open/floor/plating/dirt/planetary, +/area/asteroid/paradise/surface) "xAi" = ( /obj/structure/chair/office/light{ dir = 1 @@ -47608,11 +47491,17 @@ /obj/effect/landmark/start/scientist, /turf/open/floor/iron/white/side, /area/science/lab) -"xAx" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/mineral/titanium, -/area/asteroid/paradise/surface) +"xAm" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood/broken, +/area/library/abandoned) "xAy" = ( /obj/structure/table, /obj/item/airlock_painter{ @@ -47625,13 +47514,18 @@ /obj/item/clothing/gloves/color/yellow, /turf/open/floor/iron/dark, /area/engine/engineering) -"xAQ" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/spawner/structure/window/hollow/survival_pod/directional, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/hallway/primary/fore) +"xAU" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, +/obj/machinery/light/small, +/obj/effect/turf_decal/siding/white{ + alpha = 100; + dir = 6 + }, +/turf/open/floor/iron, +/area/medical/medbay/central) "xBc" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch"; @@ -47652,6 +47546,15 @@ /obj/machinery/door/firedoor, /turf/open/floor/plating, /area/security/brig) +"xBv" = ( +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/computer/shuttle_flight/custom_shuttle/exploration, +/turf/open/floor/iron/techmaint/planetary, +/area/asteroid/paradise/surface) "xBP" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -47669,19 +47572,6 @@ /obj/structure/closet/firecloset/full, /turf/open/floor/iron, /area/ai_monitored/turret_protected/aisat/maint) -"xCt" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/catwalk_floor/iron_dark, -/area/asteroid/paradise/surface) "xCw" = ( /obj/machinery/computer/security/hos, /obj/item/toy/plush/carpplushie{ @@ -47711,6 +47601,16 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/security/brig) +"xCK" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/catwalk_floor/iron_dark, +/area/asteroid/paradise/surface) "xCQ" = ( /obj/structure/railing{ dir = 1 @@ -47752,14 +47652,32 @@ /obj/machinery/atmospherics/pipe/layer_manifold/visible, /turf/open/floor/engine/airless, /area/engine/atmos) -"xDT" = ( -/obj/structure/railing{ - dir = 4 +"xDH" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 }, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/plating/grass, -/area/asteroid/paradise/surface) +/obj/machinery/firealarm/directional/north, +/obj/structure/disposalpipe/multiz/down{ + dir = 8 + }, +/turf/open/floor/iron/white/corner{ + dir = 8 + }, +/area/science/lab) +"xDO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/hallway/primary/aft) "xDX" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -47776,14 +47694,6 @@ }, /turf/open/floor/iron, /area/maintenance/department/medical/morgue) -"xEo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/wood, -/area/library/abandoned) "xEu" = ( /obj/machinery/atmospherics/pipe/layer_manifold/visible, /obj/machinery/computer/atmos_control/tank/oxygen_tank{ @@ -47797,32 +47707,42 @@ /turf/closed/wall/r_wall, /area/crew_quarters/heads/captain) "xFu" = ( -/obj/machinery/space_heater, -/obj/machinery/power/apc/auto_name/directional/north{ - pixel_y = 24 - }, /obj/structure/cable/yellow{ - icon_state = "0-8" + icon_state = "1-8" }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) +/obj/structure/table/reinforced, +/obj/item/folder/white{ + pixel_x = -5 + }, +/obj/item/holosign_creator/medical{ + pixel_x = -4; + pixel_y = 17 + }, +/obj/item/toy/figure/cmo{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/item/stamp/cmo{ + pixel_x = -2 + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for monitoring medbay to ensure patient safety."; + dir = 1; + name = "Medbay Monitor"; + network = list("medbay"); + pixel_x = 1; + pixel_y = -32 + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/heads/cmo) "xFx" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/closet/emcloset/anchored, /turf/open/floor/iron, /area/maintenance/department/bridge) -"xFB" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/dark/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/hallway/primary/central) "xGl" = ( /obj/effect/turf_decal/siding/white{ alpha = 100 @@ -47837,21 +47757,10 @@ }, /turf/open/floor/plating/asteroid/planetary, /area/crew_quarters/dorms) -"xGw" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/crew_quarters/heads/hop) +"xGt" = ( +/obj/structure/railing/corner, +/turf/open/openspace, +/area/engineering/hallway) "xGG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 10 @@ -47870,23 +47779,29 @@ }, /turf/open/floor/iron/tech, /area/engine/engineering) -"xGH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 +"xGI" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = -3; - pixel_y = 3 +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 }, -/obj/item/book/manual/wiki/engineering_guide, -/obj/item/book/manual/wiki/engineering_construction{ - pixel_x = 3; - pixel_y = -3 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/numbers/two_nine{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/window/plasma/reinforced, /turf/open/floor/iron, -/area/engine/engineering) +/area/science/mixing) +"xGU" = ( +/obj/structure/flora/junglebush/large, +/turf/open/floor/plating/asteroid/basalt/planetary, +/area/asteroid/paradise) "xHy" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -47903,6 +47818,27 @@ }, /turf/open/floor/plating, /area/maintenance/department/bridge) +"xHG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/multiz{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/quartermaster/storage) +"xHH" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/structure/chair/fancy/bench, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/iron, +/area/security/prison) "xHQ" = ( /obj/structure/fence/corner, /turf/open/floor/plating/beach/coastline_t{ @@ -47923,13 +47859,35 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/storage) -"xIF" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, +"xIn" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"xIr" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + pixel_x = -5; + pixel_y = 19 + }, +/obj/item/stack/sheet/mineral/plasma{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/west{ + pixel_x = -24 + }, /obj/structure/cable/yellow{ - icon_state = "4-8" + icon_state = "0-2" }, -/turf/open/floor/iron/grid/steel, -/area/medical/medbay/central) +/turf/open/floor/iron, +/area/medical/apothecary) "xIO" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -47964,18 +47922,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/crew_quarters/fitness/recreation) -"xJo" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/firealarm/directional/north, -/obj/structure/disposalpipe/multiz/down{ - dir = 8 - }, -/turf/open/floor/iron/white/corner{ - dir = 8 - }, -/area/science/lab) "xJz" = ( /obj/effect/spawner/room/threexthree, /turf/open/floor/plating, @@ -47991,10 +47937,6 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) -"xJN" = ( -/obj/structure/railing/corner, -/turf/open/openspace, -/area/engineering/hallway) "xJR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -48054,6 +47996,15 @@ dir = 1 }, /area/science/research) +"xKM" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/aft) "xKQ" = ( /obj/machinery/airalarm/directional/east, /obj/structure/disposalpipe/segment{ @@ -48075,10 +48026,35 @@ }, /turf/open/floor/iron/dark, /area/medical/morgue) -"xLl" = ( -/obj/structure/flora/junglebush/large, -/turf/open/floor/plating/asteroid/basalt/planetary, -/area/asteroid/paradise) +"xLx" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_one_access_txt = "1;4" + }, +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "brigentrance"; + name = "Brig Blast Door" + }, +/turf/open/floor/iron/dark, +/area/security/brig) "xLT" = ( /obj/structure/lattice/catwalk/over, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -48120,27 +48096,9 @@ }, /turf/open/floor/iron/white, /area/crew_quarters/heads/cmo) -"xMi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/maintenance/department/chapel) "xMl" = ( /turf/open/floor/iron, /area/maintenance/department/medical/central) -"xMy" = ( -/obj/machinery/modular_fabricator/exosuit_fab{ - dir = 1; - output_direction = 1 - }, -/obj/machinery/ecto_sniffer{ - pixel_x = 2; - pixel_y = 7 - }, -/obj/structure/railing, -/turf/open/floor/iron, -/area/science/robotics) "xMB" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -48149,20 +48107,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/security/brig) -"xMI" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_y = -33 - }, -/obj/machinery/light, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron/dark, -/area/engine/engineering) "xMP" = ( /obj/machinery/airalarm/directional/east, /turf/open/floor/iron, @@ -48184,19 +48128,18 @@ }, /turf/open/floor/iron/grid/steel, /area/science/xenobiology) -"xNf" = ( -/obj/effect/decal/cleanable/dirt/dust, +"xNb" = ( +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 4 + }, /obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/evac{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, /turf/open/floor/iron, -/area/maintenance/department/science/xenobiology) +/area/hallway/primary/central) "xNh" = ( /obj/structure/lattice/catwalk/over, /obj/structure/table, @@ -48218,16 +48161,73 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) +"xNn" = ( +/obj/machinery/light{ + dir = 1; + light_color = "#7AC3FF" + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/structure/sign/poster/official/ian{ + pixel_y = 32 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","medbay") + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/white, +/area/medical/medbay/central) "xNL" = ( /obj/structure/chair/stool/directional/west, /turf/open/floor/plating/beach/sand, /area/asteroid/paradise/surface) +"xOo" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/asteroid/paradise/surface) "xPb" = ( /obj/effect/turf_decal/siding/wideplating/terracotta/corner{ dir = 8 }, /turf/open/floor/plating/grass, /area/asteroid/paradise/surface/grass) +"xPc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/wood, +/area/chapel/office) +"xPe" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/medical/medbay/central) +"xQe" = ( +/obj/machinery/computer/card, +/obj/item/radio/intercom{ + dir = 1; + pixel_x = 1; + pixel_y = 23 + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/heads/hop) "xQu" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -48252,21 +48252,36 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroid/basalt/planetary, /area/asteroid/paradise) -"xRe" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" +"xQY" = ( +/obj/structure/closet/secure_closet/warden{ + anchored = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + alpha = 180; + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/west, +/obj/item/restraints/handcuffs{ + pixel_x = -1; + pixel_y = -5 }, -/obj/structure/disposalpipe/segment{ - dir = 9 +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/security/warden) +"xRg" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/wood, -/area/chapel/office) +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/catwalk_floor/iron_dark, +/area/asteroid/paradise/surface) "xRl" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 25 @@ -48306,6 +48321,26 @@ }, /turf/open/floor/iron/white, /area/science/lab) +"xRv" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = -6; + pixel_y = 14 + }, +/obj/item/bikehorn/rubberducky{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/storage/photo_album{ + pixel_x = 3; + pixel_y = -1 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/carpet/blue, +/area/crew_quarters/heads/captain/private) "xRJ" = ( /obj/machinery/door/poddoor/shutters/radiation/preopen{ id = "engsm"; @@ -48323,17 +48358,6 @@ /obj/effect/turf_decal/caution/stand_clear, /turf/open/floor/plating, /area/engine/supermatter) -"xRU" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/bridge) "xSk" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/effect/decal/cleanable/dirt, @@ -48360,6 +48384,31 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/security/prison) +"xTb" = ( +/obj/item/beacon{ + pixel_y = 3 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/wood, +/area/crew_quarters/cafeteria) +"xTs" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/central) "xTu" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -48418,6 +48467,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise) +"xTH" = ( +/obj/effect/turf_decal/siding/dark/end{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/hallway/primary/fore) "xTI" = ( /obj/structure/chair/fancy/sofa/old/left{ color = "#596479"; @@ -48456,16 +48511,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroid/planetary, /area/asteroid/paradise) -"xUB" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output/layer2, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"xUH" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/tech, -/area/science/mixing) +"xUQ" = ( +/obj/structure/chair/fancy/sofa/old/right{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/railing, +/obj/effect/turf_decal/siding/white, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet/green, +/area/crew_quarters/cafeteria) "xVa" = ( /obj/machinery/gateway{ dir = 9 @@ -48475,17 +48532,22 @@ }, /turf/open/floor/iron/dark, /area/gateway) -"xVc" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 9 +"xVu" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/structure/lattice/catwalk/over, +/obj/structure/cable/yellow{ + icon_state = "2-16" }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"xVj" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/turf/open/floor/iron, -/area/hallway/primary/aft) +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"xVw" = ( +/obj/effect/turf_decal/siding/dark, +/obj/structure/railing, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/central) "xVE" = ( /obj/effect/turf_decal/sand/plating, /obj/effect/decal/cleanable/dirt/dust, @@ -48517,21 +48579,15 @@ }, /turf/open/floor/plating, /area/storage/primary) -"xVI" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/cargo) -"xVY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/power/apc/auto_name/directional/east{ - pixel_x = 24 - }, -/obj/structure/cable/yellow, +"xVP" = ( +/obj/machinery/airalarm/directional/west, /obj/structure/cable/yellow{ icon_state = "1-2" }, -/turf/open/floor/plating, -/area/maintenance/department/science/central) +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/hallway/primary/aft) "xWe" = ( /obj/structure/lattice, /turf/open/openspace, @@ -48539,15 +48595,6 @@ "xWg" = ( /turf/closed/wall/r_wall, /area/bridge) -"xWj" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/hallway/primary/central) "xWo" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 @@ -48557,15 +48604,18 @@ }, /turf/open/floor/wood/broken, /area/crew_quarters/cafeteria) -"xXi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/flip{ +"xXf" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ dir = 8 }, -/turf/open/floor/iron/dark, -/area/hallway/primary/central) +/obj/machinery/chem_dispenser, +/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron, +/area/medical/apothecary) "xXk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ @@ -48576,39 +48626,15 @@ }, /turf/open/floor/iron, /area/security/brig) -"xXE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/engineering/hallway) -"xYp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible/layer5{ - dir = 4 +"xXl" = ( +/obj/structure/rack, +/obj/item/stack/cable_coil/white, +/obj/item/circuitboard/machine/rtg/advanced{ + pixel_x = -1; + pixel_y = -3 }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/engine/atmos) +/turf/open/floor/plating/asteroid/planetary, +/area/asteroid/paradise/surface) "xYT" = ( /turf/closed/wall/r_wall, /area/medical/patients_rooms) @@ -48623,58 +48649,6 @@ /obj/effect/spawner/lootdrop/gambling, /turf/open/floor/carpet/blue, /area/crew_quarters/cafeteria) -"xZq" = ( -/obj/structure/table/glass, -/obj/item/book/manual/wiki/grenades{ - pixel_x = 4; - pixel_y = 19 - }, -/obj/item/storage/box/beakers{ - pixel_x = -6; - pixel_y = 24 - }, -/obj/item/grenade/chem_grenade{ - pixel_x = 12; - pixel_y = 11 - }, -/obj/item/grenade/chem_grenade{ - pixel_x = 10; - pixel_y = 7 - }, -/obj/item/grenade/chem_grenade{ - pixel_x = 11; - pixel_y = 2 - }, -/obj/item/assembly/igniter{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/item/assembly/igniter{ - pixel_y = 5 - }, -/obj/item/assembly/timer{ - pixel_y = 2 - }, -/obj/item/assembly/timer, -/obj/item/screwdriver{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/iron, -/area/medical/apothecary) "xZu" = ( /obj/structure/railing{ dir = 8 @@ -48697,6 +48671,24 @@ }, /turf/open/floor/iron/white, /area/science/xenobiology) +"yae" = ( +/obj/structure/sign/directions/supply{ + dir = 8; + pixel_y = 10 + }, +/turf/closed/wall, +/area/hallway/primary/aft) +"yak" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8; + initialize_directions = 8 + }, +/turf/open/floor/iron/tech, +/area/engine/engineering) "yaq" = ( /turf/closed/wall/rust, /area/science/server) @@ -48739,11 +48731,24 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/maintenance/department/science/central) +"ybk" = ( +/obj/machinery/smartfridge, +/turf/open/floor/iron/grid/steel, +/area/hydroponics) "ybp" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, /turf/closed/wall, /area/maintenance/department/crew_quarters/dorms) +"ybw" = ( +/obj/item/kirbyplants/random, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/hallway/primary/central) "ycc" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -48756,6 +48761,14 @@ }, /turf/open/floor/iron/grid/steel, /area/medical/patients_rooms) +"yce" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/carpet/purple, +/area/library/abandoned) "ycn" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/turf_decal/delivery, @@ -48770,15 +48783,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/asteroid/basalt/planetary, /area/asteroid/paradise) -"ycz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible/layer5{ - dir = 9 - }, -/turf/open/floor/iron/tech, -/area/engine/atmos) "ycF" = ( /obj/machinery/door/airlock/public/glass{ name = "Cryogenic Lounge" @@ -48802,39 +48806,30 @@ }, /turf/open/floor/iron/showroomfloor, /area/crew_quarters/cryopods) -"ycV" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"yda" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 +"ycT" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/frame/computer{ + anchored = 1 }, -/obj/machinery/ai_slipper{ - uses = 10 +/obj/item/wallframe/apc{ + pixel_x = -2; + pixel_y = 29 }, -/obj/structure/disposalpipe/sorting/mail/destination/ce_office/flip, -/turf/open/floor/iron/dark, -/area/engineering/hallway) +/turf/open/floor/iron, +/area/asteroid/paradise) "ydE" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/sand/plating, /turf/open/floor/iron/techmaint/planetary, /area/asteroid/paradise/surface) +"ydF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/wood/broken, +/area/library/abandoned) "ydG" = ( /obj/effect/landmark/start/randommaint/vip, /obj/structure/chair/stool/directional/west, @@ -48878,6 +48873,13 @@ slowdown = 0 }, /area/asteroid/paradise/surface) +"yeM" = ( +/obj/structure/flora/rock/pile, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/titanium, +/area/asteroid/paradise/surface) "yeS" = ( /obj/structure/stairs{ dir = 8 @@ -48895,36 +48897,27 @@ }, /turf/open/floor/iron, /area/maintenance/department/security/brig) -"yfl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ +"yfq" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/multiz/down{ dir = 1 }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Gas to Chamber" +/turf/open/floor/plating, +/area/maintenance/department/bridge) +"yfE" = ( +/obj/structure/railing{ + dir = 5 }, -/turf/open/floor/iron/tech, -/area/engine/engineering) -"yfw" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/iron, -/area/maintenance/department/chapel) -"yfP" = ( -/obj/structure/sink/kitchen{ - pixel_y = 22 +/turf/open/openspace, +/area/hallway/primary/fore) +"yfQ" = ( +/obj/machinery/power/solar{ + id = "portsolar"; + name = "Port Solar Array" }, -/turf/open/floor/iron/dark, -/area/hallway/primary/aft) +/obj/structure/cable, +/turf/open/floor/iron/solarpanel, +/area/asteroid/paradise/surface) "yfW" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/decal/cleanable/dirt/dust, @@ -48937,12 +48930,16 @@ }, /turf/open/floor/plating/beach/deep_water, /area/asteroid/paradise/surface/water) -"ygB" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark/side{ - dir = 5 +"ygK" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -28 }, -/area/hallway/primary/central) +/obj/machinery/ore_silo, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/dark, +/area/security/nuke_storage) "ygN" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/bot, @@ -48953,21 +48950,23 @@ }, /turf/open/floor/iron, /area/engine/engineering) -"yhe" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line{ +"yhk" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 }, -/obj/item/clothing/glasses/meson/engine, -/obj/item/stack/sheet/mineral/copper{ - amount = 5; - pixel_x = -7; - pixel_y = 3 +/obj/structure/disposalpipe/segment{ + dir = 6 }, -/obj/item/storage/belt/utility/full/engi, -/obj/structure/window/plasma/reinforced, -/turf/open/floor/iron, -/area/engine/engineering) +/turf/open/floor/iron/white, +/area/crew_quarters/heads/cmo) +"yhy" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/bot_assembly/floorbot, +/turf/open/floor/plating/asteroid/basalt/planetary, +/area/asteroid/paradise) "yib" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -48996,38 +48995,39 @@ /obj/effect/decal/cleanable/food/egg_smudge, /turf/open/floor/iron/cafeteria, /area/crew_quarters/kitchen) -"yjK" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light{ +"yjC" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + alpha = 180; dir = 1 }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/security/warden) +"yjV" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plating/asteroid/planetary, -/area/hallway/primary/fore) +/area/asteroid/paradise/surface) "yjX" = ( /obj/effect/spawner/structure/window/plasma/reinforced, /obj/machinery/atmospherics/pipe/simple/green/visible, /turf/open/floor/plating, /area/engine/supermatter) -"ykK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, -/obj/effect/turf_decal/numbers{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/sorting/mail/destination/hos_office/flip{ +"ykL" = ( +/obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/iron/dark/corner{ - dir = 1 +/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/area/hallway/primary/fore) +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/iron/grid/steel, +/area/medical/patients_rooms) "ykM" = ( /obj/machinery/camera/motion/directional/south{ c_tag = "MiniSat Exterior 2"; @@ -54371,12 +54371,12 @@ vqI mLS mLS mLS -jAX -hbZ -cbg -jAX -jjw -hbZ +kaJ +xyb +ogl +kaJ +azk +xyb mLS mLS mLS @@ -56189,7 +56189,7 @@ jsp jsp uli mXn -fDC +tJQ uli vqI vqI @@ -56445,7 +56445,7 @@ oJl uli qVs tHO -gWk +kFJ nIy tHO vFR @@ -56684,7 +56684,7 @@ sFV cbm cbm dMS -cqi +ieB qJK dRp jUw @@ -56950,7 +56950,7 @@ hig wuy ovX iGq -fBx +aRu kYy afy rXp @@ -57206,13 +57206,13 @@ ocL nii nii nii -goq +hFb xpJ kcv oTt sZb faZ -xUB +gLH dtx gpk bSF @@ -57463,22 +57463,22 @@ vjB hBy vba vba -qyj +sdP whN iVv kCM wEs vXr -pvd +tPx sAm -uik +fsT xcp sQU nMG -cRh +gJV dzF gFd -qjI +jct uli vqI vqI @@ -57720,11 +57720,11 @@ baM ssX qJo ssX -mqv +gYf gvg fBW mcO -oiK +aFd hZi fAb vgG @@ -57983,9 +57983,9 @@ sxu iVv iVv tHO -etV +eNy kqG -cSx +noX aPe oyk mkI @@ -58216,7 +58216,7 @@ iaR vhU iaR iaR -ggB +aJD vnY wzb cbm @@ -58235,21 +58235,21 @@ mOp wnT dcZ rrg -lOl +qYP mcO kCM -iDc +jDe uli -lrW +xyk bKc -rIP +eMn cnW qdc tIa wDm oJt mCk -vnD +nlB uli vqI vqI @@ -58502,9 +58502,9 @@ vgG igh nzj raX -qIE +ePf hfq -fUi +thf vgG drz tHO @@ -58751,14 +58751,14 @@ maU lEu mht ehf -wyo +sfR jOo uli -fWy +vsL qMR tFX hZv -pOl +ojT rVx aDD eyD @@ -59008,14 +59008,14 @@ wnT ptc rhv gCM -xVI +nWb jOo uli -xyG -tuT -cEi +fmE +sPS +jjq qyw -vAe +kEB jhG bov tnQ @@ -59227,7 +59227,7 @@ rPT rPT jra uVy -rkL +qte waJ rYY wDW @@ -59236,7 +59236,7 @@ pYd kUF azS iaR -vNm +jrB ibj ibj hYk @@ -59265,15 +59265,15 @@ dcZ lEu bnh qQW -xVI +nWb jOo tHO uli tHO -ldz +iZg gOe -vHg -grS +wlK +bWT dao oga tHO @@ -59492,7 +59492,7 @@ oEv jtr vhT dzD -oiT +kTN riv jap aIa @@ -59522,15 +59522,15 @@ dcZ lEu bod vHR -wyo -qbr +sfR +epb jOo jRB vgG vZP xQu -aCq -dXj +rFB +viB ssw llI tmh @@ -59742,7 +59742,7 @@ rPT rPT uVy eZJ -oNR +oRp cAy wDf wys @@ -59752,7 +59752,7 @@ wys wys iaR iaR -dcz +ryR itk pLv aiR @@ -59766,7 +59766,7 @@ sWT kxi sWT lEY -kOI +lcR tyg tyg hRb @@ -59779,22 +59779,22 @@ wnT lEu dMS lEu -rpX +aZV jOo giS bJq lho yiO xQu -nrf -tRy +jBM +duv ssw iiY lAn nXA mmp nXA -uux +eZZ xqU vgR vqI @@ -59998,19 +59998,19 @@ eXB tqL eXB uVy -gFS +vBm wys wys wys wys -bBK +dVA aPU kEf wys fYS xIX eyM -lYL +wov jlf iaR vhU @@ -60025,7 +60025,7 @@ dSI sWT hlL ezA -ptZ +iMQ vHe alg kIo @@ -60036,15 +60036,15 @@ jAN iOA pUm rmX -kzn +ttw jOo jOo jOo vgG xUc lly -rcA -ycz +kgF +qtB hAX bxD vgG @@ -60257,7 +60257,7 @@ xaM eXB jES wys -ksb +bEQ bWw eHY eop @@ -60277,8 +60277,8 @@ fqC mgY pNv fvh -vpE -rpC +akQ +tYw sWT nLs xIm @@ -60300,7 +60300,7 @@ eJz eJz eJz gHW -rff +pBl gHW dzW ihL @@ -60313,15 +60313,15 @@ dzW ihL ihL fhM -qPe -qPe -qPe -qPe -qPe -qPe +lCB +lCB +lCB +lCB +lCB +lCB oJl -qPe -qPe +lCB +lCB jsp vqI vqI @@ -60534,8 +60534,8 @@ eOH eAX ixf siH -ujM -icQ +oyM +cVk sWT mIY qZA @@ -60551,13 +60551,13 @@ oZa tVY qrO eJz -oMj +ygK rlu tww vci eJz -fqM -aSs +wdJ +bMq fVf dzW kMN @@ -60573,12 +60573,12 @@ mTL gNG fUV ozj -dDR +qUD oJl sLz -lFQ +oZL mVg -qPe +lCB jsp jsp vqI @@ -60775,13 +60775,13 @@ vht ozM eUf mbl -rNY +lhJ wys wys wys -qDH -odK -uXS +mpz +oOz +cgI fsr noh oNp @@ -60792,11 +60792,11 @@ iZO bKy qQv lcs -ocS +cmk kuj -duC -eog -lxp +xHG +lzs +vxn rMK axf eVv @@ -60814,7 +60814,7 @@ jxW lsu eJz qUr -ltK +swW cQe nAD fAi @@ -60831,11 +60831,11 @@ cFP xqU xwe uKf -jLo +sqm eTK aST xqU -qPe +lCB jsp jsp vqI @@ -61032,7 +61032,7 @@ vht wys wys wys -eqi +dsv wys ePw lSv @@ -61049,11 +61049,11 @@ uXI pNv kGw xKQ -htC +fhx guS -pHJ -gdE -vFW +rTp +uaE +jgC qcy mCw nUa @@ -61070,8 +61070,8 @@ dEU cBs hBl eJz -kdV -cpt +sYh +ngP pfU teA cxL @@ -61089,7 +61089,7 @@ cEu trB dwq oJl -jMd +wAx jmP sLz oJl @@ -61309,8 +61309,8 @@ sWT sWT sWT gXg -thm -wIf +cBL +wJi oHM waf tBo @@ -61325,10 +61325,10 @@ eJz qlj tHB bAQ -ioD +ssy eJz kvM -xYp +kra qwZ nAD xsc @@ -61341,13 +61341,13 @@ aLz ihL kEO fhM -qPe -pPZ -biE -xos +lCB +tOu +qki +xoi oJl -qPe -qPe +lCB +lCB oJl oJl jsp @@ -61565,31 +61565,31 @@ fEV gee kBA fMX -ssG +qjP dlh -rru +fJD viT bdN wHD -wUj +lqc cfv xoc gWp jPg -rcR +hgS pjs eJz -odp +kDx pIl -ptb +sdw roc eJz gHW -bAs +xdg gHW pyW bRk -biR +cAK pUZ ihL xgK @@ -61598,7 +61598,7 @@ dbV uBt cEk mVg -xLl +xGU xTD mIF sXg @@ -61824,7 +61824,7 @@ juz fMX lEu bQr -wiJ +wtQ hDF bXa ueV @@ -61842,7 +61842,7 @@ eJz eJz eJz qOg -hRU +uUq yaU kbq dzW @@ -62079,14 +62079,14 @@ fMX fMX fMX fMX -sXY -exx -ncA -oxy -mkQ -fSH -qzd -moy +vHK +xvn +ath +nmP +rAJ +fYN +iha +tEn cVl xyh mev @@ -62099,13 +62099,13 @@ qdG vLP xTu eOD -hRU +uUq jFC pVY uUK uRJ ecq -fFe +bgo sXB gqv gqv @@ -62336,14 +62336,14 @@ khi lQi skF fMX -nIw -qcb -sWd -ejR -smS +mRW +css +imH +hLl +vpM vcv iQa -aKM +vyZ jXE aog mev @@ -62353,10 +62353,10 @@ kPS wML amy pWS -unk +lCv rzg -evw -gka +efa +moT oNv wON jsW @@ -62366,8 +62366,8 @@ aaU qEU qRN qBw -eAU -nHb +pQS +oer biV sXB blO @@ -62589,15 +62589,15 @@ xGl tEI wht qbW -eIh +rnq lQi wvu fMX -nHZ -ovP -qaK -lxu -rjG +nor +fVr +rFV +qMj +ooy ueV iMI wEx @@ -62608,24 +62608,24 @@ feI tNX cii vLP -wfz +qWg oeh vLP vgi -bkZ -ndI +dLq +rfT udt hAp wdX -oWj -oWj -mNF -tJE -xfB +oHn +oHn +vHd +fYP +bmi uAD bcS gPs -roh +mHA lCS hJN wFM @@ -62850,11 +62850,11 @@ fdK fMX fMX fMX -ktI -niw -xzV -niw -wQY +jza +jna +vbm +jna +kme ueV ueV ueV @@ -62869,21 +62869,21 @@ vLP vLP vLP top -lYh -bQM +rrt +eUG eCn aIx fMC -skT -jvX -nYP -eAO -soZ +xwR +jUL +kaW +qeW +two oxg hsv tVm -vNW -oeH +iPj +iQr ndX viX xqU @@ -63081,7 +63081,7 @@ vqI vqI vqI eXB -gAV +qsx qhA scw cJf @@ -63104,42 +63104,42 @@ ioR xQN qMM dqm -ndg -rzP -coO -aQK -slF -hCL -nME -uuq -oLX -tJv -uJs -gMn -sNq -tdv -xlB -rZv -qvz +fSw +kbr +wBg +lIf +urx +aWU +xwY +mfi +gBH +qWS +eYZ +diQ +xVP +jcA +qoo +aqJ +uHL sCr wVR tlH pVY pVY vVo -kTW +pOA wWC -jOE -tox -dJY +tKv +mNS +hZM dXI -awm +glt doY ezZ dXI uAb wzE -vXe +nIe lCS eGc mmJ @@ -63361,42 +63361,42 @@ wLe wLe wLe lyG -iEJ -iFN -eiZ -rub -dcB -njI -mic -fMV -wyJ -aRh -dfZ -gkY -koj -som -kJA -vvr -vxs -ulu +mNU +fIy +jbk +tLZ +oJd +gjT +qtv +eWk +hAx +jqc +oMh +udM +mOm +fFd +oLh +gYg +ewd +cnT sua bHK -azl +oju rZf oFu -kTW +pOA wWC -xMI -nCH -hSz +ijV +vGz +nhl ifQ -ixC -mhE +bUC +nFx cdq xiB lSc uTP -rky +jIs sXB cFP rzV @@ -63618,42 +63618,42 @@ wLe wLe wLe lCP -niw -uQO -lby -vdf -fhR -cqv -rLR -wsk -vPM -rhg -pqi -pqi -bUT -fqg -qdV -vTN -wrb -rXh +jna +gra +qiC +jDW +lkS +uzO +rNb +vbv +qcV +oRL +iMt +iMt +yae +wVF +qGR +nEw +rlJ +apZ jxc nrc -qOB +bJS wEX pHp -kTW +pOA wWC -uNZ +nnQ yjX -mMj -xVc +ogE +aeQ hBg hBg hBg baq tfH -wRv -hVn +npY +kwz sXB cEk gNq @@ -63864,7 +63864,7 @@ weN kOu sDH bUA -tFt +dYY jst llb pqE @@ -63875,41 +63875,41 @@ wLe wLe wLe wLe -niw -dul -rFo -gWa -eWh -vVQ -udE -hpE -cCc -rhg -pqi -pqi -iPP -yfP -rat -fZl -tlK +jna +mYH +beK +orN +eci +aNV +enQ +bbH +gms +oRL +iMt +iMt +tMA +dbX +lFZ +qkv +mNO qbd -rUD +mEl sMX ldp -eAu +lsV wDK -cgu +xvc vuh -tAx -pCa -szJ +rEG +oIl +eZr kZz ghT amX dbm xiB lSc -kTX +ipT gPs mAp sLz @@ -64118,7 +64118,7 @@ rPT tqL sUW hhu -bcJ +mwy qti qti wLS @@ -64132,42 +64132,42 @@ wLe wLe wLe dqm -niw -bcb -vVw -gWa -vQZ -mSK -rLR -wsk -sfW -rhg -pqi -pqi -unI -gkG -vQL -xVj -pjF -rnO +jna +lVB +kXq +orN +kkX +eEP +rNb +vbv +wMw +oRL +iMt +iMt +kxZ +lEX +kzi +tbf +uKn +sRi hBY cSZ -xGH +gEl rMf pHp -kTW +pOA wWC -cPi -mQH -azs -gYf +vGd +pIB +hea +grx vmu vmu vmu baq fzZ -wRv -pKG +npY +tUx lCS vqI hTd @@ -64376,7 +64376,7 @@ eXB eaA hhu hhu -pBq +ecH vlw hSk tov @@ -64389,38 +64389,38 @@ wLe wLe wLe lyG -iEJ -awd -qWU -sPu -jhV -rLR -rLR -qGC -xjz -bOk -gQE -iuO -gnm -rLR -exs -wuS -gzS -pcL +mNU +aJT +euR +uzi +xuT +rNb +rNb +eot +nrF +mrb +gxN +xKM +dPL +rNb +scl +vBH +gdS +mpH uWx kaw -yhe +aAj fFu pHp -kTW +pOA wWC -aUQ -gNy -qAL +oQF +pGF +kXp ocx -rSs -bce -dDB +nKs +dZF +blt xiB lSc uTP @@ -64646,36 +64646,36 @@ oor kWi lDc lCP -haI -oqp -lEl -cUr -mLL -jET -ycV -dWt -gJk -cen -oIi -oIi -oIi -qRc -pMV -jWl -dPx +mnS +xDO +nBT +uLi +poA +jeZ +ipF +gOm +ghx +mKQ +bAN +bAN +bAN +sZD +iHS +iem +xtG sCr wNN sui -uNx +sjD rIZ pHp -uWm +cmT wWC -gWY -mlY -wFz +kQJ +fap +hMP dXI -cQs +hST xRJ gFg dXI @@ -64891,15 +64891,15 @@ eaA hcJ eXB eXB -loD -loD -loD -loD -loD -loD -loD -sbz -iYu +btX +btX +btX +btX +btX +btX +btX +hAW +bBn pEv pEv pEv @@ -64919,25 +64919,25 @@ evW evW evW evW -fiu +jFp sXB pVY pVY pVY dta -kXQ -aRG +wHx +kHt dHA -axi +tcS gYA -nIu -lVH -xsw +oYL +wef +cdn taA -nuA -pyn -yfl -wCR +fWn +sBO +kIV +lDA gPs mAp rET @@ -65148,15 +65148,15 @@ rPT eaA oEJ han -loD -mRH -upo -tiy -vLx -dEG -nlW -tER -fMR +btX +orp +aRb +oJY +mHI +eug +oWa +arg +qBy cir jGc fhV @@ -65172,11 +65172,11 @@ saP tjd aBu tUW -isM +lYU pfN saP kuW -pXQ +dcG sXB qQD cTa @@ -65185,13 +65185,13 @@ aLe pkS tts tRY -lrQ -uBH -qse -oQq -gAu -dsu -lrC +jTE +gdb +kKL +lvc +ecx +dzb +yak ooF xGG bTY @@ -65405,15 +65405,15 @@ eXB eXB qaU vpU -loD -igz -cXw -kwk -gRR -qWX -wNm -sHq -avK +btX +bYs +ktw +jkj +aNd +eQb +fcP +xiE +qdm pEv lUE jrq @@ -65429,21 +65429,21 @@ qXK gBj dKK iZu -lFj +bYp sFh qXK evW -wfO +rqE lEQ cvu hos khm ajT fQW -lIF +hag hNJ hNJ -foo +qms bfI bfI bfI @@ -65651,7 +65651,7 @@ vqI vqI eXB pDi -pDv +eJA nXj fzp aVf @@ -65662,25 +65662,25 @@ mit eXB okk bwI -loD -ejm -whD -wki -rab -lvj -tUR -cbd -qIb +btX +aSS +bbB +iHW +tBs +qjT +uef +xeG +ovZ pEv hkV mDY mSM uZh gfq -tEc +rgP tzP -hLF -kAr +lIQ +oKH kqd eeC nGN @@ -65690,7 +65690,7 @@ cah xfm xZI xfI -nzr +osM sXB dRz jqA @@ -65919,15 +65919,15 @@ rPT seo sUW rPT -loD -loD -loD -loD -loD -tVy -tNK -bwa -dCm +btX +btX +btX +btX +btX +cTf +lUc +qqB +jiw pEv xVG pEv @@ -65936,8 +65936,8 @@ tPA dhO syu tzP -xzU -nol +dhx +wvE aJU jVL fRN @@ -65947,7 +65947,7 @@ tPn fRN oEx evW -uWW +cBx sXB sXB sXB @@ -66179,13 +66179,13 @@ eaA eMb gnR uVr -loD -tDA -wfm -woI -kxe -vEI -loD +btX +iry +yce +nZX +nZT +ebU +btX sHI jKL hZg @@ -66194,7 +66194,7 @@ tzP jKL jKL oLQ -lpq +bot gMQ upK hht @@ -66204,8 +66204,8 @@ jqb wHO upK evW -kde -rxt +fgW +hSL nKW sXB hqu @@ -66436,13 +66436,13 @@ eXB saM lUm sWe -loD -ofT -qjd -lTB -sVZ -tAE -loD +btX +hCI +pcn +lYV +jnG +gvM +btX lxZ tzP iLG @@ -66450,19 +66450,19 @@ nVq msu mhI heR -gOB +wjo iti eZt mNH hJA uIW -xfu -aYk +ulo +mkn mZk mNH kuW gef -nHp +rdU nHd sXB qtl @@ -66694,18 +66694,18 @@ saM sWe lAu twx -cbd -xEo -nvo -jzq -gkU +xeG +kcF +diU +ydF +xAm cVj lfq heR -byi +bvV uWI fKa -wyg +hyu xpS gfQ iti @@ -66719,7 +66719,7 @@ yaq aEM pMW ggs -gkJ +fqp orX sXB cyj @@ -66950,14 +66950,14 @@ rPT saM qRs hAS -loD -aPE -lBL -wZC -bDV -mDA -loD -xNf +btX +dBG +cFf +hUu +cJn +gxG +btX +jso tzP ptP jZr @@ -66970,13 +66970,13 @@ hNR vnh wgL gkj -sTV -bNF -enI +hpW +aoV +dgd aEM inn hzQ -rZy +nlL wey sXB gbj @@ -67207,18 +67207,18 @@ rPT iUZ gnR vgv -loD -lGq -eLG -gjA -sVZ -cWg -loD +btX +lTM +qAj +kUs +jnG +oPl +btX pCT tzP tzP rDI -rRE +hAt eYE jKL moU @@ -67227,13 +67227,13 @@ jkp hyN qmz amO -rEs +lhR aSf -bwk +niR aEM woV hzQ -uWW +cBx uFy sXB gbj @@ -67464,13 +67464,13 @@ rPT saM lUm pzQ -loD -tOz -bSm -gHa -dOQ -eIe -loD +btX +aEs +jON +uyo +koz +cqR +btX dBm lII tzP @@ -67483,14 +67483,14 @@ rrn yaq aet aAh -rfc -meI -vvO -tmd +rlo +lfV +rRm +ssu aEM hzQ hzQ -gnc +lKa euN tdh xHX @@ -67721,14 +67721,14 @@ rPT saM lUm saM -loD -loD -loD -loD -loD -loD -loD -lwz +btX +btX +btX +btX +btX +btX +btX +lPj sWe pzQ saM @@ -67747,7 +67747,7 @@ pMW eIc hzQ eqW -ujX +uHF sNC wqF uqK @@ -67985,30 +67985,30 @@ saM nCa saM kJM -hMy +trI vet kyK saM -swD -dnQ +gYk +eYx jKL tzP jKL tzP ppQ -kBk -hFQ -eWn -eft -eft -kGF -qGy -gHK -hCs +eXt +gSP +mUh +vou +vou +oqS +xkO +fRs +mPk hzQ btw rEz -tak +pVj oRo woV lyU @@ -68242,19 +68242,19 @@ saM nnl lIL dUi -gRi +lQr mPj qZI ghc -wZm -gQd -kgo +moV +lDk +sNI fjp xmA orX -rll -vFg -lMI +dOa +jSH +oEz wwk euN wBT @@ -68503,15 +68503,15 @@ iUZ saM saM saM -xFu +wQK xvi -ito -csf -wih -sdK -hcH -qGy -wNL +gjc +neA +aDl +rpq +tqr +xkO +uxK orX ggs ggs @@ -68772,12 +68772,12 @@ orX orX vqI vqI -iDI +xdJ mEO -kLj -jzW -qxA -ebd +fGZ +jpa +yhy +ihC vqI vqI vqI @@ -69030,11 +69030,11 @@ ggs vqI vqI hiB -oMe -hbL -dLt -fpO -nnv +ycT +noC +tfm +bYV +say hiB vqI vqI @@ -69287,11 +69287,11 @@ orX vqI vqI sLz -kGr -poV +iek +kRx vqI -uOJ -iDI +lJY +xdJ hiB vqI vqI @@ -69802,10 +69802,10 @@ vqI vqI vqI vqI -xfL +eoc sLz vqI -opj +uCJ vqI vqI vqI @@ -70101,7 +70101,7 @@ mKz lZV rNv ccE -aTh +jkD bXA vqI vqI @@ -120399,11 +120399,11 @@ vqI vqI vqI kQw -pmo -jtl +naX +pXA luF -osB -kFU +twg +nub kQw vqI vqI @@ -120656,11 +120656,11 @@ vqI vqI vqI kQw -nxR +vaT luF luF -jtl -jKY +pXA +qlO kQw vqI vqI @@ -120913,11 +120913,11 @@ vqI vqI vqI kQw -tYb +egS luF luF luF -bpx +rxA kQw vqI vqI @@ -121170,11 +121170,11 @@ vqI vqI vqI kQw -jai -jtl +vhX +pXA luF luF -mny +dbT kQw vqI vqI @@ -121427,11 +121427,11 @@ vqI vqI vqI kQw -sHV -jtl +iyC +pXA luF luF -sHV +iyC kQw vqI vqI @@ -121684,11 +121684,11 @@ vqI vqI vqI kQw -eCL +pei luF luF luF -sHV +iyC kQw vqI vqI @@ -121941,11 +121941,11 @@ vqI vqI vqI kQw -nqv +iyL luF luF luF -sHV +iyC kQw vqI vqI @@ -122198,11 +122198,11 @@ vqI vqI vqI kQw -psv -jtl +kxR +pXA luF luF -lti +kSY kQw kQw kQw @@ -122455,11 +122455,11 @@ vqI vqI vqI kQw -pmo -jtl +naX +pXA luF -jtl -aRd +pXA +jDz kQw fnQ fnQ @@ -122712,11 +122712,11 @@ kQw kQw kQw kQw -kjU -icJ -jtl -jtl -kFU +bnO +jZf +pXA +pXA +nub sHr fnQ fnQ @@ -122726,7 +122726,7 @@ fnQ fnQ fnQ hqw -pqZ +nww jZp mcM tUA @@ -122971,7 +122971,7 @@ rPI kQw kQw kQw -lEp +uRt kQw kQw kQw @@ -123227,19 +123227,19 @@ fnQ fnQ sHr luF -nWp -uYF -lZj +giQ +aVH +rcr lGc xsQ xsQ sHr xsQ kQw -ewn +uUH cDx vry -mvN +tQO usH vTg vDJ @@ -123268,7 +123268,7 @@ qhc tNh iwI tHO -qCl +wcl ame uKw tHO @@ -123485,8 +123485,8 @@ fnQ kQw uhy gsF -nnQ -lEo +uWn +kzK eWL qdO eWL @@ -123494,7 +123494,7 @@ eWL tGT tGT kND -rmk +mVt vcY hqw pjN @@ -123525,7 +123525,7 @@ iwI iwI iwI tHO -efR +uzF cno cFN tHO @@ -123756,15 +123756,15 @@ xgH hqw uxB jPR -nAw +hBb hqw baa cIB cIB sRD -aDq +iIC sRD -aDq +iIC sRD sRD sRD @@ -124016,7 +124016,7 @@ kWe lbA vIE xYT -wnX +bIO bgS wEb uNJ @@ -124268,8 +124268,8 @@ dXb jKK kKx lTW -ogP -pti +kdJ +ohx vyl pvV bup @@ -124525,10 +124525,10 @@ bkn nyZ lUo hjp -hsG -aRk -xeW -pqu +fRu +lKm +lyZ +iwF xYT hph bgS @@ -124539,7 +124539,7 @@ sYf sRD sRD sRD -emw +cXG xwF rSK nst @@ -124778,14 +124778,14 @@ hxS pIA eyu fdR -fUc +gpt aBy mxW lTW -ogP +kdJ ozT ozT -snB +qhg xYT xYT bgS @@ -124793,10 +124793,10 @@ qSp bKY tpw kdn -xyn +hWD xiu sRD -mpS +ati eEe lob sRD @@ -124813,7 +124813,7 @@ oCE cMn qGN tmX -qPx +pUe aLc jDC uPQ @@ -125030,30 +125030,30 @@ pTO eNz orD anu -rQf -ahD -pRZ -cyP +cmD +exl +kPl +gyO xgH -jZv +mRB unj aHq mtn -uQE +ill cbP -hJD -pti +abN +ohx epj xYT bGO aBO fiC -asV +tfg vjc rHl biP sRD -fTr +xHH vUl kqQ sRD @@ -125290,19 +125290,19 @@ bDD bYj bDD bDD -ngW +rjf xgH xgH udq tob tnA -fLu -vGb -gpr -pti +aaz +uld +oyg +ohx uTt xYT -eUd +stB ezz sYY lAt @@ -125310,7 +125310,7 @@ ovg mma mTa vBt -qjR +gPt nnF iao xwB @@ -125543,23 +125543,23 @@ cOp cOp ogJ tay -uTf +lQd jGY myl bDD -vEB +jqp coF ttY vkb vkb gDc -wlT +azd gHV brZ -pti +ohx tFb xYT -lJZ +pfq tih aNk rjD @@ -125576,9 +125576,9 @@ rkg vVT wFm sls -nfX -hoN -pnn +mQl +lQy +fnM vgG tYX lJw @@ -125804,16 +125804,16 @@ wAN aKH iYE bDD -qBC +drs ttY ttY vkb vkb wYL -bDq +fMk gHV -aAu -tKX +wjR +axZ ubl xYT teS @@ -125821,7 +125821,7 @@ paK lsE tPg aCN -tNi +amC mNy sRD xab @@ -125831,11 +125831,11 @@ gth qHP gJG gmt -hmU +trC sls -wPi -iKw -csG +qgn +mJq +deH cJP kgl fMJ @@ -126061,38 +126061,38 @@ rGq wMY rSE bDD -luf +fWF ttY -cCH -vQt -kMH -nGU -bDq -tTl -uex -nbG -kkW +pGC +pDx +jLG +xPe +fMk +cxj +gND +ykL +qQU xYT sRD -uWK -qhz -bGq -aUd -nVt +pTM +idU +mTl +baK +vvp sRD sRD -dMX -obH -bGh +mlA +pVy +fYE sRD qHP fpu uRz sff sls -efm +lBD eOP -jVt +wSa vgG eyN pUk @@ -126316,30 +126316,30 @@ bDD bDD tNz pbw -wQW +xri bDD -ngW +rjf ttY -xIF -hyo +qRB +ies iIO -mIl -uMn +pcu +hvh jME jME -wKQ +tCQ jME jME -eUh -ihK -rId -rId -rId -rId -qRu -rIy +kMR +hHo +sLu +sLu +sLu +sLu +mIh +kDF tSo -hLT +hAH fCj vqE qHP @@ -126349,7 +126349,7 @@ qHP sls vqE qGg -quq +get qGg gDY gDY @@ -126564,52 +126564,52 @@ dGh liG eyu clO -cGQ +iBT unO yjb aeN -rWj -jrU +wcv +ybk hUk ofU ifR thO bDD -mEn -sSV -hhk +fjc +wYP +qdZ hrF cIY -jIb -mEw -nKL -gqF -xZq +lbv +fcl +uTR +xIr +mFB eVT dqV -tiF -rId -rId -nIZ -wPp -wPp -huR -rIy +dHs +sLu +sLu +kvC +tIn +tIn +mMa +kDF qMI kpO fZy -tOC -iYo -qXb +mAt +xgp +dbP hse hdJ hdJ vqE tIJ -mEU +ndA xtb vpJ -vyt +brs dQg wRO rVy @@ -126834,39 +126834,39 @@ kxc bDD suO ttY -bIZ +kSK uxt qxQ -mUU -qwr -uzP -jJF -dRN -vFx +teo +hUj +htB +ptj +hns +uII dAh -qMT -rId -rId -isl -fZm -vXz -uNk +pdf +sLu +sLu +iaU +tcx +uxI +mbp vqE -hjQ -wrf -cxE -qen -tjz -rfn +dwr +rPu +nee +gXn +jlw +dMc vSN tko tko oEl oEl -dYJ +ukH aVS gDY -cED +dJL tID bge iED @@ -126874,7 +126874,7 @@ caJ caJ hIa aiE -sds +oOM rqF vqI vqI @@ -127081,7 +127081,7 @@ mxy xdb qiO llQ -siR +umB nOu bDD ejD @@ -127095,32 +127095,32 @@ jLp ntA ttY nJX -xdi +cRw jME -mCz -arF -wcC +apg +wUl +eNn jME -rId -rId +sLu +sLu feq mgK vsW xvB wxq vqE -qQx -sLI +mHx +bMW eSh oEl bvY -cnX +oTh bvY tko ary oUH oEl -dYJ +ukH wtc gDY jBj @@ -127334,7 +127334,7 @@ eyu bvO esW afw -tEa +epO pdw tVK llQ @@ -127342,27 +127342,27 @@ aWb acj thc nRX -mCp +uQq aDn iIl bDD liG ttY -iTe +qBu dFk bqp tSb -scq -jFT -nAN -nFY +ncK +uIU +mtO +rDl nSF jME -fdi -oln +jMv +pFV vPG ueV -wtR +jFY swS gwg vqE @@ -127371,13 +127371,13 @@ rlr bHH oEl oFw -pRW -ham -weG -cqF +aCf +wxU +cNL +rnE aVC bso -unp +mHg rdw gDY gDY @@ -127593,30 +127593,30 @@ ssT afw laf gcq -swh -ljK -kOl -bZb +uGp +uNj +ohu +acw bDD -pSK +rRN nye oOA tDT bDD vVE ttY -emr +xNn tND kQc jxa mIN -ueO +hpi leg -gWy +xXf tWL jME -rId -rId +sLu +sLu feq hYY eve @@ -127631,23 +127631,23 @@ eQt wcq bbJ tko -hKX -tTt +hwE +wQa oEl -gZh +cmR pQk -uNe -sew -eMV -eMV -afq -xvQ -eMV -qoc -skf -skf -skf -skf +vgE +eJs +oAk +oAk +tAJ +eqC +oAk +hcg +pnX +pnX +pnX +pnX vqI vqI vqI @@ -127866,21 +127866,21 @@ jLp jLp ttY obC -jGO +elK oEZ -kOd -dkC +kqN +dgF jME wZF -rId -wPp +sLu +tIn wLz ueV bPo vHu ueV vqE -fnL +jrl qao iTA oEl @@ -127891,21 +127891,21 @@ oEl oEl oEl oEl -jue -skf -skf -pAd -pAd -tUj -pAd -frW -pEJ -iPs -pEJ -kBd -ifA -skf -skf +jwY +pnX +pnX +ovn +ovn +eRP +ovn +csf +wMj +fOR +wMj +mJc +mkh +pnX +pnX vqI vqI vqI @@ -128105,7 +128105,7 @@ eyu wdv eyu hhu -rCo +wxQ tov pUp jNl @@ -128116,53 +128116,53 @@ wgg jGA tnS pqE -izl -jKp -oax -xpy -xpy -oCL -xWj -wxm -wxm -gDp -vGW -gDp -ked -rId -hPN -xpy -fOY -xpy -gwn -iiz +wgG +lnv +ttt +dgG +dgG +sDG +ePY +rQg +rQg +urH +vCZ +urH +nsd +sLu +rRL +dgG +kfs +dgG +rXC +ybw rrC aoM pHI aoM oEl -xdC +hDU lii -kOh +xlw oEl -gFW -wlW -lAq -tle -mAS -ifA -ifA -xJN -loS -tXj -nJl -frW -iPs -pEJ -kBd -ifA -ifA -skf +jfQ +cgc +gKN +gGX +wvA +mkh +mkh +xGt +fKu +eQy +kcN +csf +fOR +wMj +mJc +mkh +mkh +pnX vqI vqI vqI @@ -128373,53 +128373,53 @@ iSH tDp fVM fod -vmg -adf -anK -sfL -rFm -rFm -dme -eTE -eTE -mQJ -ewP -orv -dqd -cGz -vdC -drY -drY -kSJ -sAY -vYe -adM -uox -mAj -ulX +ecI +uvR +jJl +bnS +mHu +mHu +wMt +mlP +mlP +nCT +uIG +uWt +cIo +eHG +ccc +omd +omd +usb +aUy +tlq +nHK +mvK +eBu +bJr cCz oEl -eqG +efr oEl oEl -coB -kAn -ifA -tle -mAS -ifA -xJN -vEg -bOh -dxx -jHl -eMU -iPs -pEJ -mAS -tOw -voA -skf +vSj +aRk +mkh +gGX +wvA +mkh +xGt +fao +jYa +niT +bZO +xsZ +fOR +wMj +wvA +koc +gDl +pnX vqI vqI vqI @@ -128615,7 +128615,7 @@ vqI vqI vqI eyu -rfC +kAk vdv gMh hhu @@ -128630,53 +128630,53 @@ bum gyy gyy pqE -psY -hAV -clc -lZb -qRu -rId -qRu -rId -qRu -lpc -lig -mrg -mrg -oWy -mrg -mrg -kYp -wDy -nUN -qNm -jYk -jER -wqX -wLQ -dCq -msj -tAy -nYq -tPV -lnH -yda -xXE -hyx -mAS -ifA -iUt -qxa -bhu -ruE -pEJ -pEJ -jYR -pEJ -kBd -voA -ifA -skf +aGT +xNb +dCG +wmS +mIh +sLu +mIh +sLu +mIh +eJp +dTr +isB +isB +syp +isB +isB +oOl +dmW +kaR +wnw +oUB +pfa +hVG +pgR +vhd +wQP +ubn +lfL +fMK +bxz +aIw +jIe +rNJ +wvA +mkh +fBQ +krL +tBS +vaG +wMj +wMj +gZl +wMj +mJc +gDl +mkh +pnX vqI vqI vqI @@ -128887,53 +128887,53 @@ qJS gyy gyy tbo -uxJ -iyn -jzj -qRu -rId -rId -qRu -rId -rId -qRu -aWi -pTq -pTq -pTq -pTq -pTq -cYu -tUq -qRu -rId -qRu -enr -kvW -mWk -ndP -clc -noe -qmd +iiv +bYy +rXB +mIh +sLu +sLu +mIh +sLu +sLu +mIh +obz +xlN +xlN +xlN +xlN +xlN +bfl +ett +mIh +sLu +mIh +ppi +sYi +hhJ +wVH +dCG +hIV +fiM tMr flo -uke +bkX gek flo flo -fWA -rxI -qNE -iYB -gYk -jnE -jnE -rTM -mHk -kBd -voA -ifA -skf +xnS +lqq +sLd +wxi +pEh +nZz +nZz +hds +vKl +mJc +gDl +mkh +pnX vqI vqI vqI @@ -129140,57 +129140,57 @@ npn ijN jeN gTv -jLd +xUQ gyy gyy gyy -gak -iyn -jzj -qRu -rId -rId -qRu -rId -rId -qRu -aWi -pTq -pTq -pTq -pTq -pTq -koe -rId -qRu -rId -rId -rId -psZ -jKp -fGM -czv -ddQ -ddQ -aep +sRW +bYy +rXB +mIh +sLu +sLu +mIh +sLu +sLu +mIh +obz +xlN +xlN +xlN +xlN +xlN +xVw +sLu +mIh +sLu +sLu +sLu +fOm +lnv +bKO +vAD +tKH +tKH +jYW hsN -sWl -cLN +sbY +ekS ujl wdj -kBd -iUt -bEO -iYB -hYe -bEO -bEO -bEO -jHa -kBd -voA -ifA -gqb +mJc +fBQ +cmN +wxi +vcB +cmN +cmN +cmN +vnH +mJc +gDl +mkh +fHG vqI vqI vqI @@ -129390,64 +129390,64 @@ bSM mll mll hhu -mvx +kSu hVF lfw -gpt +xTb mzC wzi qgB -qHS +cbu gyy gyy gyy -gak -bzr -cCy -rzw -rzw -rzw -rzw -qCn -rzw -rzw -hML -pTq -pTq -ggL -pTq -pTq -koe -rId -qRu -rId -rId -rId -dlf -kZN -qpi -bjl -ddQ -ddQ -vDx +sRW +nhd +pki +hGx +hGx +hGx +hGx +qbw +hGx +hGx +xTs +xlN +xlN +cJo +xlN +xlN +xVw +sLu +mIh +sLu +sLu +sLu +vXt +cKl +thR +hFX +tKH +tKH +dFz hsN mtK nDD tUN rcE -kBd -iUt -bEO -iYB -tAo -bEO -bEO -bEO -vIJ -rAA -tOw -voA -gqb +mJc +fBQ +cmN +wxi +rRY +cmN +cmN +cmN +dAf +tuU +koc +gDl +fHG vqI vqI vqI @@ -129654,57 +129654,57 @@ jeo oLK xIO olO -uRu +loM gyy gyy gyy -gak -iyn -jzj -qRu -rId -rId -qRu -rId -rId -qRu -aWi -pTq -pTq -pTq -pTq -pTq -koe -rId -qRu -rId -rId -rId -psZ -jKp -knv -czv -ddQ -ddQ -bcs +sRW +bYy +rXB +mIh +sLu +sLu +mIh +sLu +sLu +mIh +obz +xlN +xlN +xlN +xlN +xlN +xVw +sLu +mIh +sLu +sLu +sLu +fOm +lnv +ifH +vAD +tKH +tKH +bii hsN -aeM -vJG +iFw +dsz aoH oru -kBd -iUt -bEO -iYB -hYe -bEO -bEO -bEO -jky -kBd -voA -ifA -gqb +mJc +fBQ +cmN +wxi +vcB +cmN +cmN +cmN +nNf +mJc +gDl +mkh +fHG vqI vqI vqI @@ -129915,53 +129915,53 @@ qJS gyy gyy qsE -tju -iyn -jzj -qRu -rId -rId -qRu -rId -rId -qRu -aWi -pTq -pTq -pTq -pTq -pTq -omw -hhn -qRu -rId -qRu -vga -cRo -wFP -ndP -psr -qjF -mFz +cVb +bYy +rXB +mIh +sLu +sLu +mIh +sLu +sLu +mIh +obz +xlN +xlN +xlN +xlN +xlN +kPy +cRX +mIh +sLu +mIh +rpb +iBh +xmX +wVH +vYB +bIF +hMs flo flo cvA pHe flo flo -aAy -rxI -qxa -iYB -lPI -gwZ -gwZ -tna -fss -kBd -voA -ifA -skf +aDa +lqq +krL +wxi +qdy +wti +wti +glQ +tyl +mJc +gDl +mkh +pnX vqI vqI vqI @@ -130162,7 +130162,7 @@ lrk mJg tYd nGn -tSZ +haN tYu bkx pKl @@ -130172,53 +130172,53 @@ bVS gyy gyy pqE -psY -wTn -psr -tOI -qRu -rId -qRu -rId -qRu -oXd -cBp -hlB -hlB -sGT -hlB -hlB -fcg -aNW -lhm -uyA -uma -dOv -cNI -ndP -pKX -tTb -tTb -wqz +aGT +bYA +vYB +jYd +mIh +sLu +mIh +sLu +mIh +knD +rBl +ldE +ldE +wZs +ldE +ldE +xIn +wOo +fAx +tJH +kIA +uxS +hUi +wVH +fVz +pmc +pmc +oQj xty nnG jyv jyN hrH -dqn -ifA -iUt -qxa -qzj -ukS -pEJ -pEJ -fmR -pEJ -kBd -voA -ifA -skf +eTk +mkh +fBQ +krL +jnN +lIu +wMj +wMj +bEx +wMj +mJc +gDl +mkh +pnX vqI vqI vqI @@ -130412,7 +130412,7 @@ vqI vqI vqI tYd -fWw +dmw fvg xko ukZ @@ -130421,38 +130421,38 @@ tYd ecs tuw jkS -eTC -cDX +qSU +uHQ xiC bwQ jyd jbC pwB fod -gQa -dxm -cxT -vdd -tHd -tHd -tHd -tHd -tHd -xFB -vmg -iQq -vmg -qor -ndP -ndP -ndP -ndP -ndP -cZZ -vmg -bPd -gXk -vOX +mxX +rfh +aqH +euD +azE +azE +azE +azE +azE +jfC +ecI +eaE +ecI +ncY +wVH +wVH +wVH +wVH +wVH +eZB +ecI +wNv +pOE +aJV lOf ajB ajB @@ -130461,21 +130461,21 @@ ajB ajB xFx vkC -cTe -dqn -ifA -eFA -frW -bOh -dxx -dSg -qDP -tOv -pEJ -mAS -tOw -voA -skf +yfq +eTk +mkh +kII +csf +jYa +niT +oYO +rnv +fOw +wMj +wvA +koc +gDl +pnX vqI vqI vqI @@ -130673,45 +130673,45 @@ mJs lQZ boc xuC -rWk +ryA tYd pBJ ftU goW -mIx -qVo +vSD +jwW pag dtZ jtQ bip cfp pqE -bAa -ald -neX -tTb -tTb -cJR -tTb -tTb -tTb -tTb -tTb -uxe -oMd -xXi -ygB -aIl -jcz -svD -atE -iBU +fJo +vPC +nvd +pmc +pmc +hbt +pmc +pmc +pmc +pmc +pmc +cKB +pWv +bSl +dEF +qyi +rBA +ksw +nuZ +ezT bnn eyQ -tcB +tdL itO ajB -kNp +haE aqw nEW thd @@ -130719,20 +130719,20 @@ ajB mLo hRT err -gqb -ifA -ifA -eFA -tUj -pAd -see -vEg -tOv -pEJ -kBd -ifA -ifA -skf +fHG +mkh +mkh +kII +eRP +ovn +giI +fao +fOw +wMj +mJc +mkh +mkh +pnX vqI vqI vqI @@ -130935,8 +130935,8 @@ gEP gEP pTv gEP -kjt -nkk +wcs +vSu aNK cbI fkW @@ -130945,15 +130945,15 @@ sSJ sSJ sSJ siO -vIb +mnM pNI pNI sSJ cea -aPZ -iSf -iSf -hKp +nIv +wjT +wjT +meL hnY whG fSq @@ -130964,7 +130964,7 @@ gMG gMG dLS kfl -nsH +saH oLi cDz ajB @@ -130976,20 +130976,20 @@ ajB rYQ xiF opN -skf -skf -tXj -tXj -loS -tXj -vEg -bgd -tOv -pEJ -kBd -ifA -skf -skf +pnX +pnX +eQy +eQy +fKu +eQy +fao +lVC +fOw +wMj +mJc +mkh +pnX +pnX vqI vqI vqI @@ -131202,10 +131202,10 @@ sSJ pAe jkK oRs -knJ +alr vmC vmC -rLQ +kNR baE ylg aJr @@ -131227,25 +131227,25 @@ iwM ajB lPe btR -vAW -jcn +mZW +oak ajB ajB tRH vJn xHy -uNe -kPn -utb -hTq -hTN -utb -utb -lXD -skf -skf -skf -skf +vgE +aHD +cCo +xmZ +lcN +cCo +cCo +dnM +pnX +pnX +pnX +pnX vqI vqI vqI @@ -131444,14 +131444,14 @@ vqI vqI vqI gEP -gBe +ijF uwN sIv kJL foz wMn bZH -fVl +fPV kmN fRt xIT @@ -131459,17 +131459,17 @@ sSJ jjj hAB cIr -uCY +hiW ufG qur -htu +pMI baE -lXT +uVE iFd -oFr +nFX dky ylg -hLx +rcz rDX gMG wHw @@ -131499,7 +131499,7 @@ aCm aCm aCm aCm -skf +pnX vqI vqI vqI @@ -131701,7 +131701,7 @@ vqI vqI vqI gEP -rnR +ohb fbS qVb xoR @@ -131716,14 +131716,14 @@ sSJ pCc nXm cxy -auJ +ezh lUq fNN fSh baE kti xAi -eZv +riG uWg ylg lPV @@ -131731,7 +131731,7 @@ gFM gMG wHw hHO -qju +eAb gMG uZl kfl @@ -131746,7 +131746,7 @@ fgm ikw ccn sSw -djP +bwD vNE rRx mQo @@ -131973,14 +131973,14 @@ sSJ sSJ jDU sSJ -ozb +dXG coR baE baE baE klE hvK -hpJ +cgQ aGd ylg lji @@ -131992,7 +131992,7 @@ iyb wOV qAn kfl -vOc +piY qzt jTj iEP @@ -132219,7 +132219,7 @@ fJW drA oNe xnU -akq +uyP ehJ ehJ fnC @@ -132230,10 +132230,10 @@ ePH tSv dIl tmO -uXy +pCQ tmO tmO -mjX +hqd uyf iHj geJ @@ -132245,18 +132245,18 @@ bIe bZe nYl aOF -qga +cpM gMG nwu kfl -wco +bBz rpu hBA mFI nzZ liQ mSE -oVD +xRv vRT imc iSr @@ -132477,21 +132477,21 @@ lqn hoO jqN gEP -seE +fNB ehJ iQd rER -rvk +hTi eKX eKX smU eKX tmO -bBJ +cmS orA tmO pWQ -eDW +txA fPa xuY ffQ @@ -132506,7 +132506,7 @@ gMG gMG pcP kfl -ikL +rTr alW hLr cFp @@ -132735,16 +132735,16 @@ gEP gEP gEP fZR -xhS -bOv -vKd -wrs +kPv +sNy +jSR +xct eKX -qOj +uOO yik -btG -tbS -xRe +sKl +nmO +xPc gzY tmO mdk @@ -132754,8 +132754,8 @@ uDY hSD pSj hdn -wOL -fta +kji +bdQ uiA aKG aKG @@ -132772,8 +132772,8 @@ bga mSE dwk eUm -wEY -fMH +mcN +gSc mSE cwz seu @@ -132992,14 +132992,14 @@ fZR hLc nxt fZR -cjI -eQz -fDJ -nlO +stR +xVu +rHO +eWv eKX czE -sjC -fCA +htj +qYu tmO iTz kxa @@ -133012,7 +133012,7 @@ khs khs ilG jfB -pEN +oDU spF aKG aKG @@ -133021,10 +133021,10 @@ tpM evR kfl riT -wOh -dNe +bpL +bic jZG -xtQ +mnQ hyc mSE aKC @@ -133247,12 +133247,12 @@ pSY pSY fZR bpM -eqb +ewJ sCm -xMi +lHB qsH -vYo -nhW +sho +aLo eKX eKX eKX @@ -133269,7 +133269,7 @@ wMa jsc aPc aPc -mvX +esI lEB aKG aKG @@ -133506,13 +133506,13 @@ pSY pSY pSY sCm -wjs +iGw pSY -oLq +tTE mBS lKU -hYl -buj +jDq +ebh wxb tyI ncw @@ -133522,13 +133522,13 @@ wxb tcM pMZ aAV -fwI +vsS dSU vtT rAS -utc -aou -wzg +tAL +dPH +jqV oiG rwC cto @@ -133761,7 +133761,7 @@ xrC pSY pSY pSY -rZW +eNV fZR qsH pSY @@ -133781,11 +133781,11 @@ isW aAV abU wjY -jWv +lhu aPc -xJo -aWm -uQF +xDH +kTQ +dEu fQp ylg hRI @@ -134022,7 +134022,7 @@ pSY uwE qsH qsH -jss +sHD qsH pSY pSY @@ -134036,13 +134036,13 @@ tss uWZ rZM aAV -qPC -lIK -qPC +lRA +gPf +lRA aAV plG -tEl -cJx +fHy +qlS hgB aqu uEs @@ -134281,7 +134281,7 @@ hPz fZR fZR fZR -yfw +jAB qsH oZe sld @@ -134298,8 +134298,8 @@ fXL aYd aAV aJn -scy -qxE +xGI +qOE tlw aqu qUB @@ -134548,15 +134548,15 @@ qLe olN olN olN -tEe +bSN nFR -mMm +dou bOR uuH aAV aBR -gyH -tio +tWP +fGQ cYL aqu aqu @@ -134812,8 +134812,8 @@ jEr wIp aAV abC -laK -jTw +aoJ +vsj acU aCk aqu @@ -135062,17 +135062,17 @@ rZM rZM rZM cae -iMK +uOt aAV nFR aAV aAV aAV hrt -vvz -cEZ -xUH -lnY +eoE +vAX +mVW +eQG aqu wVx olN @@ -135326,7 +135326,7 @@ amV aui aTx aJy -eht +qzs apn tCf aqu @@ -135583,7 +135583,7 @@ aFj aeZ aRi ahc -auW +maJ fcC jsb aqu @@ -135840,11 +135840,11 @@ amV aRY aTx mMZ -aJe -inX +tgo +lnW mjt aqu -wVn +kWL nbf erT sDa @@ -136097,7 +136097,7 @@ cae cae cae cae -rlN +ohh aqu aqu rYD @@ -136353,8 +136353,8 @@ vqI vqI vqI aqu -kNT -lEj +rhe +dRW qWJ aqu kPB @@ -136610,8 +136610,8 @@ vqI vqI vqI aqu -eFi -cci +kHD +lhh xku ubG uSG @@ -136867,8 +136867,8 @@ vqI vqI vqI aqu -ran -fuT +kIt +pXT nIr aqu piQ @@ -144836,7 +144836,7 @@ vqI sdD sdD cTB -cTP +iwL fTY wKO sdD @@ -188780,7 +188780,7 @@ xdL tOf xdL pdR -lCH +jrL voC voC voC @@ -189034,11 +189034,11 @@ hif fmH oXe btO -jtW +moh btO tBy -caO -hcC +iYn +bzO shD aiK kVV @@ -189286,11 +189286,11 @@ bJi tOf pdR ouX -rdf +eQW gmU btO oXe -fOw +cyT oXe oXe oXe @@ -189308,7 +189308,7 @@ vqE vqE vqE vqE -uKN +byu kyf gEN gEN @@ -189547,9 +189547,9 @@ tst pMt uhc uhc -jcQ +gvS uhc -fhE +fMc tNm lOO uhc @@ -189559,7 +189559,7 @@ tAg qhT aiK aiK -alM +aLD aoM jij jij @@ -189803,10 +189803,10 @@ ttY ttY ttY uhc -dcS +whz jUT hUe -fzs +aLU xjt rAh uhc @@ -189816,7 +189816,7 @@ tAg qhT aiK aiK -alM +aLD aoM jij jij @@ -190060,18 +190060,18 @@ eXz mxY iej uhc -hMW -qST -vqa -eFl -bwC -oHn +uLS +wmC +iKU +taT +naW +myX uhc qhT qhT qhT qhT -ucM +pgl aiK qhT vqE @@ -190312,17 +190312,17 @@ kmg dgE wDb ibc -jhz -wjq -pLs -vbX +uLD +nhC +iNv +xge pTS -dWz -btE -nWB -cPv -bRN -vME +mxu +diV +cle +qiD +pVC +mpq uhc pub pub @@ -190330,7 +190330,7 @@ pub tbm kSi aiK -cgP +nlE vqE jij jij @@ -190570,16 +190570,16 @@ iyS iyS iyS iyS -kMD +kOC oDR -dnD +fLs uhc -pfh -wxQ +qUt +slT uhc dBS dPK -oUo +asN uhc pub pub @@ -190815,7 +190815,7 @@ gVA gVA gVA rFF -gRz +gEU hYU dfX jLD @@ -190828,8 +190828,8 @@ pcZ nlH iyS wEt -eDU -wwW +kBL +xAU aSN pEf pEf @@ -190845,7 +190845,7 @@ pub vsU aiK vqE -bOK +hoH jXs fbe dNl @@ -191078,7 +191078,7 @@ hUt rSr gVA iyS -myy +cks kao cAd cqs @@ -191087,7 +191087,7 @@ jfU ijh wiC lhc -vmt +jwG vQN vQN usq @@ -191100,7 +191100,7 @@ pub pub pub vsU -gHn +dyQ vqE pDD bdh @@ -191336,7 +191336,7 @@ rFF bEB iyS iyS -pDR +cDT qXL fNV xTI @@ -191369,7 +191369,7 @@ tla pka nqk fLS -nKC +iRh gXb qXE bHH @@ -191621,15 +191621,15 @@ aTZ ozO iXj fLS -nyK +byk qhy lOq -fli +oKo fLS qDJ jEu nyO -rcY +nOn vqE vqE vqE @@ -191858,11 +191858,11 @@ mWS tqW iuG vQN -oae -oVk -epN -epN -epN +jMW +lNu +qlb +qlb +qlb qhT qhT qhT @@ -191888,7 +191888,7 @@ lUd jnJ hyQ sWu -nRz +klz dpo dpo dpo @@ -192107,20 +192107,20 @@ gVA gVA gVA kxf -izI +iFx iEq erZ -mcZ -dWn -hLy -lCL +mIp +foS +pCF +ikE dGt oFa xLY -nGJ +sxA mTS meb -ulg +tyF oFa vwd bxq @@ -192135,7 +192135,7 @@ iSX tPw eGv gew -jEC +wQk jij jij jij @@ -192364,22 +192364,22 @@ gVA gVA gVA kxf -rem +mam yib jWU -ebE +oUR mWS wxa idj oYY oFa -eBt -qZk -qNU -aKI -bOM +aLI +lyd +cfJ +yhk +lMQ oFa -jFA +bSX vft xvx vDw @@ -192388,7 +192388,7 @@ vwd pjU aOI xpM -bsL +dDA rEh oMQ tQX @@ -192399,7 +192399,7 @@ uLg xCy xjn sel -gjv +htu kQZ vqE xXk @@ -192629,12 +192629,12 @@ kxf tpg jnX mFq -iev -gcn -qnI -mxH -qFs -gvc +rZs +vGc +fGm +xsU +pbz +xFu oFa hMj ooN @@ -192654,13 +192654,13 @@ bQs lhn wNk hhm -eOX +cDE jVo ayz hdx hJS pXn -hEA +mEp vqE ljQ eWC @@ -192883,24 +192883,24 @@ eAc eAc kxf kxf -oNY -xfO +jRS +lCM rkK -qCO -iqL -xhx +tox +nrA +sOB vYl tdN bqm oFa -vgL +aWK iwr gCP wIV iIY nIN ppj -qNf +uVu otW het sYP @@ -192916,7 +192916,7 @@ nFv gAW sbS hJU -lCI +gxf tmi vqE ktY @@ -193143,9 +193143,9 @@ ctU ipu qTU qwF -ayp -eGE -ufI +qey +nmv +swK gTA hUc rLt @@ -193157,21 +193157,21 @@ cty nSe pwG eee -xtX -bSK -lLT -gnr -oKL -miE -qxp -gwb -sIH -fUW -mRe +qjK +jSs +gjb +vLu +dCK +uGq +xQY +lwh +yjC +omk +wHN wQG -uvj -cLp -pih +myS +hdq +qky vqE vqE vqE @@ -193420,11 +193420,11 @@ jlT dkt axB wQG -mtH +cJd uVd wgi tRD -nSh +shc nrw ufV kmU @@ -193659,29 +193659,29 @@ sTd aXF gim gim -dxw -dxw -dxw -dxw +grk +grk +grk +grk oFa -ipb -ipb -ipb -ipb -ipb +fGJ +fGJ +fGJ +fGJ +fGJ vqE -gJz -dhj +qhq +llA iSX -gJz -dGg -wxT +qhq +xLx +aaq wQG -lfc +lnK tkD jzn tTh -hED +qZR jFz gos hsz @@ -193916,36 +193916,36 @@ eVr lcQ twK gim -nYL -nYL -nYL -nYL -qPX -nYL -nYL -nYL -nYL -nYL -ttC -frz -frz -uEN -frz -frz -frz +iSi +iSi +iSi +iSi +qGi +iSi +iSi +iSi +iSi +iSi +stQ +nku +nku +kiN +nku +nku +nku wQG -qUn -maC +eyg +vDk dnf dnf -eEY -xuK -iId -upN -pPP +cHY +ifj +wRX +fUh +sAa vqE -fgP -fgP +nZM +nZM cXI uqD mQm @@ -194167,42 +194167,42 @@ jNd rHi soL gim -gTz +cpR lOG cKi ajZ knd gim -nYL -nYL -nYL -nYL -nYL -nYL -nYL -nYL -nYL -nYL -vPx -frz -wNS -rtQ -gax -frz -wNS -kFe -nYL -nYL -wSx -wwE -tBT -jLf -bMB -opx -csB -rLa -cfw -fgP +iSi +iSi +iSi +iSi +iSi +iSi +iSi +iSi +iSi +iSi +jwb +nku +xbV +bfR +ren +nku +xbV +eFh +iSi +iSi +mVN +uAn +fnY +sQp +tLg +pzG +rgL +nYV +mMC +nZM cXI aWJ cXI @@ -194417,7 +194417,7 @@ lsj rcQ fdh fdh -doQ +mao tsU ePt rBf @@ -194430,36 +194430,36 @@ gim xnb gim gim -edh -sJH -nYL -nYL -nYL -nYL -nYL -nYL -nYL -vRY -lmC -frz -mzo -sJH -gUx -frz -jat -nYL -nYL -nYL -gUx -sMd -mMc -irp -ykK -txM -rYf -nZB -bzj -fgP +wQE +icv +iSi +iSi +iSi +iSi +iSi +iSi +iSi +gFR +rdi +nku +gUA +icv +ldt +nku +azU +iSi +iSi +iSi +ldt +pVT +wCB +fpi +xel +jYQ +rHY +quB +sEp +nZM pao eWC iui @@ -194680,44 +194680,44 @@ uwJ aEi ceR gMP -vuK +oRE aEi -cNt +arU wbv rvJ awE vyq eOr -swU -uAG -uAG -uAG -uAG -uAG -uAG -uAG -lmC -frz -frz -frz -mzo -lmC -frz -mzo -sJH -nYL -nYL -bpo -kBY -gvk -dhb -cgb -eeI -ayl -rMs -fgP -fgP -esU +yfE +myM +myM +myM +myM +myM +myM +myM +rdi +nku +nku +nku +gUA +rdi +nku +gUA +icv +iSi +iSi +tcb +giX +iqr +ruw +ojX +ucq +lGo +bbc +nZM +nZM +tuo uyF ljQ ljQ @@ -194931,11 +194931,11 @@ lsj rcQ fdh fdh -doQ +mao gJg -smm -pcJ -npW +nxE +hRA +the lYF nhs sfC @@ -194945,33 +194945,33 @@ gjO bqq roj eOr -frz -frz -frz -frz -frz -frz -frz -frz -frz -frz -frz -frz -frz -frz -frz -frz -jat -nYL -nYL -nYL -kBY -nTP -mfJ -ihR -toq -uYb -wIQ +nku +nku +nku +nku +nku +nku +nku +nku +nku +nku +nku +nku +nku +nku +nku +nku +azU +iSi +iSi +iSi +giX +rcM +nGy +ciU +lzo +hki +ebF xUk nbj hGq @@ -195190,7 +195190,7 @@ fdh fdh aEi aEi -auC +qbo aEi aYp fHo @@ -195198,39 +195198,39 @@ aZm aEi mik bZl -kBJ +gpl awE pDe eOr -wRZ -rtQ -rtQ -rtQ -rtQ -nzq -frz -wNS -gax -frz -frz -frz -wNS -gax -frz -wNS -ros -nYL -nYL -vRY -kBY -sRu -tPs -llU -bqR -aFR -kVj -fgP -fgP +rQe +bfR +bfR +bfR +bfR +eVz +nku +xbV +ren +nku +nku +nku +xbV +ren +nku +xbV +qPS +iSi +iSi +gFR +giX +xTH +dPN +voK +btj +fhw +rGG +nZM +nZM dpo btK ljQ @@ -195445,7 +195445,7 @@ lsj rcQ fdh fdh -doQ +mao hMm qUZ xwJ @@ -195458,38 +195458,38 @@ lEg epk lEg lEg -saT -ros -nYL -nYL -nYL -nYL -gUx -frz -jat -bpo -gax -frz -wNS -ros -gUx -frz -jat -nYL -nYL -nYL -gUx -plh -bbd -mpj -fvB -gIs -gux -nZB -nZB -fgP +dTL +qPS +iSi +iSi +iSi +iSi +ldt +nku +azU +tcb +ren +nku +xbV +qPS +ldt +nku +azU +iSi +iSi +iSi +ldt +oDM +aZv +pWq +qVN +kyC +uUt +quB +quB +nZM gLR -bWA +myY ljQ vqI vqI @@ -195715,35 +195715,35 @@ xzm eOT lcd lEg -nYL -nYL -nYL -esb -nYL -nYL -gUx -frz -rse -omf -lmC -frz -mzo -uAG -lmC -frz -mzo -pgO -nYL -nYL -tee -wwE -cRT -qcv -bYh -hAU -ceg -nZB -fBU +iSi +iSi +iSi +rfF +iSi +iSi +ldt +nku +xzp +kcb +rdi +nku +gUA +myM +rdi +nku +gUA +xzo +iSi +iSi +jRa +uAn +qBl +bVM +osq +eIZ +aqp +quB +rPJ oam oam rNg @@ -195968,13 +195968,13 @@ aEi lEg pPs rvW -gna -uFe -tfy +dyv +qSS +hEE lEg -ipb -ipb -ipb +fGJ +fGJ +fGJ pij gMG gVu @@ -195982,23 +195982,23 @@ ltC aPk qVY gMG -frz -frz -frz -pEG -frz -frz -gFG +nku +nku +nku +uHO +nku +nku +jlZ xWg eMh gyq oUT xWg cRd -iKY -amM -qgj -xbA +ftp +tJr +jwp +nxD oam oam oam @@ -196239,23 +196239,23 @@ wlj vqp vES iFf -aTW -kvk -aTW +pyq +ouI +pyq xWg eMh -ltD +jhS xWg xWg -xzL +wfD lEt gsV -qjB +eIP xWg -tAS -got -xqj -asc +oUg +oZs +pkZ +iBz oam tKR gIO @@ -196485,7 +196485,7 @@ lEg lEg lEg lEg -oZJ +qFu jXo nTB kUZ @@ -196494,7 +196494,7 @@ aUN bDz qLd cYK -fck +rPr gMG aSX aSX @@ -196503,16 +196503,16 @@ xWg aKw oJf rYh -oRf +srV apo mim apo -fnz +sFr xWg -fCw -dJP -sMC -ooQ +dzA +jtP +pDS +beh uSN rsb liA @@ -196741,8 +196741,8 @@ gXD ohi ahg aGn -mBs -jOI +khX +nXC tCj cLW ekv @@ -196757,7 +196757,7 @@ djm aSX gXD xWg -hIr +jYk jRL bgn deq @@ -196767,8 +196767,8 @@ wFx aqI xWg srJ -sMl -siI +oXj +bKR pbq voM gNX @@ -196776,7 +196776,7 @@ uOZ quA lbY lbY -bym +xft oam vqI vqI @@ -197002,7 +197002,7 @@ eVJ crG rJc cpg -xiM +wdb gMG gMG kBm @@ -197019,16 +197019,16 @@ oJf iGr gwH xdD -kDB -tFL +pKz +axr lDe dur -rDh -aSp +xQe +cuZ aRP -cBo +jdW srJ -siI +bKR srJ okx rYJ @@ -197254,12 +197254,12 @@ ise ise ohi lku -grQ +ctM ohi -hpA +obp xiY eni -quK +qQE eFS auE cqD @@ -197271,17 +197271,17 @@ fah aSX gXD xWg -lzc +uXk jRL -qdN +bGc fJc eUg -naa -xRU -wYN +uxv +vat +hbu dur -oOT -hOi +oKf +vnz oLn xKs fLl @@ -197513,10 +197513,10 @@ fyA fyA fyA fyA -cid +pKx wOQ cXy -riF +jjT eFS mxd aKG @@ -197533,16 +197533,16 @@ uXm mks gXq aNF -mNC -pyH +nJy +iAz uuD -jwN +kGf vgF -ucC -xGw +hoz +tsk uEY ifB -ijj +caT srJ vqI vqI @@ -197797,7 +197797,7 @@ dur kyY eYp myN -igM +ppX uup qNq srJ @@ -198027,12 +198027,12 @@ kkA bXW cag sGo -hvJ +iVZ oEs nhY agT aiA -xMy +fwd aKG aKG aSX @@ -198042,7 +198042,7 @@ aSX aSX wWF xWg -hAC +rfL anP aIR aTg @@ -198054,7 +198054,7 @@ dur qDp uQG rXP -aOX +szu qah qYU srJ @@ -198272,10 +198272,10 @@ rSr xjy cnM rZM -fZY +way iTq jWc -fCz +apI eWS jWc jWc @@ -198529,9 +198529,9 @@ rFF bEB rFF rFF -nQs +rca czD -sfc +qId olN olN qLe @@ -198559,18 +198559,18 @@ xWg aVs cmX atd -eoG -sQT +sYs +ayY atd aIF -rUW +uTY oNu uhU lVQ srJ vwq ade -vgl +qxC srJ vqI vqI @@ -198811,7 +198811,7 @@ sWP sWP sSk jVe -guH +eAO xWg xWg xWg @@ -198827,7 +198827,7 @@ vbQ srJ mMl avP -wsS +mzj srJ vqI vqI @@ -199058,7 +199058,7 @@ sld wSN tte aPc -cHc +nrr fJp fJp aPc @@ -199312,7 +199312,7 @@ olN pZC tUu vtn -xVY +wCG tWu aPc fJp @@ -199834,7 +199834,7 @@ fJp fJp emp aJP -szj +oXl hjU hjU obo @@ -200094,8 +200094,8 @@ vEn ugv gis gHx -ftk -mNQ +udr +jvN iwq rZM giC @@ -200347,7 +200347,7 @@ fJp fJp fJp aAV -rBT +bFv itG dCL alV @@ -201118,7 +201118,7 @@ rZM rZM rZM aqu -elD +jie wVI rnG aeG @@ -249983,7 +249983,7 @@ lWr lyK uDA uDA -suz +mgu yli yli yli @@ -250216,7 +250216,7 @@ uDA uDA uDA uDA -ghg +ljz yli yli yli @@ -251224,7 +251224,7 @@ yli yli yli yli -suz +mgu yli yli yli @@ -252262,7 +252262,7 @@ qCg qCg xwM yli -kEj +kyp kxS kxS qCg @@ -252496,7 +252496,7 @@ dTC sTa nVI vMa -pjV +kdO kWT yli yli @@ -253005,7 +253005,7 @@ yli yli yli lAN -vqg +dXn nPW lAN nVI @@ -253833,7 +253833,7 @@ qCg kxS kxS kxS -kEj +kyp yli yli sNi @@ -254036,7 +254036,7 @@ xPb ffv gJR gJR -hzX +xdR qoI yli yli @@ -255158,7 +255158,7 @@ yli yli yli yli -suz +mgu yli yli yli @@ -255874,10 +255874,10 @@ rxi rxi rxi rxi -eXk -phm -vql -rqy +xOo +lzi +ueT +kLl rxi rxi kxS @@ -256129,18 +256129,18 @@ kxS kxS rxi rxi -qfZ -hMI -teT -sPC +kNb +mUP +sqh +nNY rxi -xxn +wjA rxi kxS rxi rxi -quz -nub +seY +ove rxi kxS kxS @@ -256384,19 +256384,19 @@ kxS kxS kxS rxi -dCZ -xxn -nhp -eXk -lgM +coy +wjA +gIa +xOo +tMK rxi -hJl -aer +eKt +qwe rxi -rCA -tJy +qjr +cwc rxi -rSI +xBv ggb rxi rxi @@ -256641,20 +256641,20 @@ kxS kxS kxS rxi -dCZ -cpc -qyK -dCA -iiZ -iiZ -iiZ -xAx -nVj -ppr +coy +nQC +prd +oqm +ial +ial +ial +kFv +vRk +lRf rxi rxi -kXc -ubr +upA +khr rxi rxi kxS @@ -256898,19 +256898,19 @@ kxS kxS kxS rxi -dCZ -nuy -teV -iiZ -iiZ -ucV +coy +bty +ofC +ial +ial +otu rxi -lFh -mPN -qfZ +axk +vuq +kNb rxi rxi -lwi +nIC ggb rxi rxi @@ -257155,20 +257155,20 @@ kxS kxS rxi rxi -dCZ -eXk +coy +xOo rxi rxi -wXX -exd -fYa -nhp -exd -law +sHG +mon +yeM +gIa +mon +jqW rxi rxi -fgK -lHk +gnb +hJJ rxi rxi kxS @@ -257413,13 +257413,13 @@ kxS rxi rxi rxi -xxn -eXk +wjA +xOo rxi -hVU -qrH -eXk -eXk +fuO +dlw +xOo +xOo rxi rxi kxS @@ -257649,7 +257649,7 @@ dvc dvc dvc dvc -suz +mgu dvc dvc dvc @@ -258200,9 +258200,9 @@ kxS kxS kxS yli -uDE +oPp wVV -iMz +lWF evM wVV wVV @@ -258458,12 +258458,12 @@ kxS kxS yli wVV -lXC +tSC wVV -lXC +tSC yli -lXC -kLz +tSC +jRA wVV yli yli @@ -258714,12 +258714,12 @@ kxS kxS kxS wVV -iMz +lWF bIK wVV -qjh -iMz -lXC +pTs +lWF +tSC wVV evM wVV @@ -258975,11 +258975,11 @@ bIK cnJ kqB wVV -uDE +oPp evM -iMz -qjh -lXC +lWF +pTs +tSC wVV wVV yli @@ -259225,20 +259225,20 @@ dvc dvc dvc dvc -nrQ -trd +cKT +uNa duJ bIK aqa qQo kqB aqa -pxu +wCh wVV wVV wVV -iMz -lXC +lWF +tSC wVV yli yli @@ -259476,24 +259476,24 @@ dvc dvc dvc dvc -nrQ -trd -trd -trd -rOv -trd -trd -kAX -aRB +cKT +uNa +uNa +uNa +cMd +uNa +uNa +dtO +rak sGy kqB kqB nnR cnJ wVV -lXC -vXM -uDE +tSC +fzx +oPp wVV wVV wVV @@ -259533,7 +259533,7 @@ uDA uDA uDA uDA -ekI +fKS erN mZd bMS @@ -259733,14 +259733,14 @@ dvc dvc dvc dvc -nrQ -nYL -nYL -sip -qPX -nAF -cnD -tDr +cKT +iSi +iSi +szZ +qGi +rWo +jTf +blA aqa hYp ggb @@ -259748,12 +259748,12 @@ aqa bHi bNd bNd -xap -bvt -pGy -wvr -xDT -xzz +vTs +kkJ +qsz +mab +kuu +tel yli yli yli @@ -259969,16 +259969,16 @@ kxS kxS kxS kxS -vhn -vhn -vhn -vhn -vhn -vhn -vhn -vhn -vhn -vhn +wyo +wyo +wyo +wyo +wyo +wyo +wyo +wyo +wyo +wyo kxS kxS kxS @@ -259987,17 +259987,17 @@ dvc dvc dvc dvc -nrQ -nrQ -nrQ -nrQ -nYL -nYL -nYL -nYL -aRR -pbk -sqb +cKT +cKT +cKT +cKT +iSi +iSi +iSi +iSi +iaH +tJf +hWI bqg aqa bIK @@ -260010,7 +260010,7 @@ gRg sUf ahQ tFV -biD +hHp yli yli yli @@ -260028,7 +260028,7 @@ yli yli yli yli -dap +aeP yli yli yli @@ -260243,18 +260243,18 @@ dvc dvc dvc dvc -nrQ -nrQ -eKj -eMx -mpI -vfs -irl -irl -exJ -iIy -hsh -xAQ +cKT +cKT +gkC +dcS +wnz +kkZ +guE +guE +buU +buG +glK +nNB ggb ydE vfA @@ -260267,7 +260267,7 @@ uXr uXr uXr hfW -biD +hHp yli yli yli @@ -260500,19 +260500,19 @@ dvc dvc dvc dvc -nrQ -gfK -wbl -hib -gHf -kNr -kNr -kNr -esO -rEg -jUk -ote -aoD +cKT +ePW +aYB +iSd +eVn +ich +ich +ich +hcr +nfC +dyd +lCc +bRn uwc lDZ kqB @@ -260757,19 +260757,19 @@ dvc dvc dvc dvc -nrQ -sTM -rtT -dfi -nrQ -tvi -qmb -qmb -hpx -jKs -csX -pnk -aWs +cKT +mFx +tzY +wcK +cKT +uyu +aNl +aNl +eDp +lmY +qCv +ejO +fnx nBs qKQ ggb @@ -260781,7 +260781,7 @@ uXr uXr uXr cXz -biD +hHp yli yli yli @@ -260997,14 +260997,14 @@ kxS kxS kxS kxS -vhn -vhn -vhn -vhn -vhn -vhn -vhn -vhn +wyo +wyo +wyo +wyo +wyo +wyo +wyo +wyo kxS kxS dvc @@ -261014,19 +261014,19 @@ dvc dvc dvc dvc -nrQ -iXb -nrQ -iZB -nrQ -nYL -nYL -nYL -nYL -aRR -qnO -sqb -eTr +cKT +oua +cKT +ajJ +cKT +iSi +iSi +iSi +iSi +iaH +uhm +hWI +yjV bqg bIK aqa @@ -261271,30 +261271,30 @@ dvc dvc dvc dvc -nrQ -cLw -nrQ -eit -nrQ -nYL -nYL -nYL -nYL -bLn -rzL -tDr -sCH +cKT +vXe +cKT +cpu +cKT +iSi +iSi +iSi +iSi +npg +mWb +blA +gRw kqB bIK tae ngJ rqj hxu -wGY -hnH -dCe +nCU +ktV +jpr hxu -dCe +jpr mbE yli yli @@ -261528,19 +261528,19 @@ dvc dvc dvc dvc -nrQ -chS -nrQ -nrQ -nrQ -trd -nrQ -tPk -rOv -uNl -trd -nrQ -oSR +cKT +cvE +cKT +cKT +cKT +uNa +cKT +exa +cMd +jqK +uNa +cKT +tqs kqB bqg hfK @@ -261548,10 +261548,10 @@ hYp ayH cnJ bIK -iMz -lXC +lWF +tSC wVV -uDE +oPp wVV yli yli @@ -261790,24 +261790,24 @@ sNi dvc dvc dvc -nrQ -aGW -vuo -aXp -hsh -txR -trd -odA +cKT +cqB +gxg +mwY +glK +xwu +uNa +lsm kqB ggb cnJ wzL bIK wVV -vXM -lXC +fzx +tSC wVV -iMz +lWF evM wVV yli @@ -262047,25 +262047,25 @@ sNi dvc dvc dvc -nrQ -lJE -csX -rGM -csX -cDv -nrQ -wZt +cKT +nKa +qCv +sTC +qCv +eZe +cKT +sLe bIK nId aqa qJs -lXC -kLz -qjh -lXC +tSC +jRA +pTs +tSC yli -iMz -iMz +lWF +lWF yli yli kxS @@ -262304,26 +262304,26 @@ sNi sNi dvc dvc -nrQ -nrQ -vWQ -pbk -pbk -fxY -kAX -yjK +cKT +cKT +jKE +tJf +tJf +jCZ +dtO +tSO bqg bqg tnT -qhp -lID -cXB -cXB -cXB -cXB -ety -cXB -cXB +xwt +lWK +rjx +rjx +rjx +rjx +bpp +rjx +rjx cPg kxS kxS @@ -262562,17 +262562,17 @@ sNi bgs dvc dvc -nrQ -nrQ -uVJ -uVJ -nrQ -trd -pVx +cKT +cKT +aWo +aWo +cKT +uNa +tqj hfK ggb -mhD -xAe +wUU +nQI lnM ayH bIK @@ -262580,8 +262580,8 @@ bIK sBX bIK sBX -nMt -szl +mMf +wte kxS kxS uDA @@ -262824,21 +262824,21 @@ apP xNL xNL apP -erO -oVc +nAU +bYf hyg cnJ -dgZ -iSJ -qjm -qLm -ohY -wkT -qjm -dpQ -kVn -nMt -sHY +vvg +lEc +sol +elM +iad +mTe +sol +vKW +eXD +mMf +hgC kxS kxS uDA @@ -263079,23 +263079,23 @@ xwM rYt apP apP -jsm +siZ apP bIK -eTr +yjV hfK bIK -hyP +mPv pdW -qjm -qzR -ohY +sol +xRg +iad kqB -qjm -rpn -iHo -hpg -mVX +sol +bkP +yfQ +crm +xAa kxS lHW gpg @@ -263339,20 +263339,20 @@ apP apP dav cnJ -gjm +rpV hyg -mhD -fkN +wUU +rAu wQy -qjm -qzR -ohY +sol +xRg +iad bIK -qjm -qzR -iHo -hpg -sHY +sol +xRg +yfQ +crm +hgC ckI bgs csW @@ -263596,20 +263596,20 @@ alL uDA nnR bqg -akL +sXm hyg -qLF -lab +wqB +fuQ bIK -qjm -kqF -ohY +sol +auy +iad kqB -uzH -kqF -iHo -hpg -sHY +bGP +auy +yfQ +crm +hgC sNi ckI bgs @@ -263625,9 +263625,9 @@ bgs dvc dvc dvc -tCi -tCi -tCi +dGX +dGX +dGX dvc dvc dvc @@ -263853,20 +263853,20 @@ cOC apP cnJ kqB -gjm +rpV wzL -fkN +rAu sBX bIK -qjm -kqF -ohY +sol +auy +iad bIK -qjm -kqF -iHo -nMt -sHY +sol +auy +yfQ +mMf +hgC kxS sNi bMS @@ -263883,9 +263883,9 @@ dvc dvc dvc dvc -tCi -tCi -tCi +dGX +dGX +dGX dvc dvc dvc @@ -263897,7 +263897,7 @@ kxS kxS kxS kxS -kEj +kyp kxS kxS kxS @@ -264110,20 +264110,20 @@ rYt rYt uDA kqB -llk +ili bIK -iSJ -bid +lEc +tgt uXr -qjm -qzR -ohY +sol +xRg +iad bIK -qjm -kqF -iHo -nMt -sHY +sol +auy +yfQ +mMf +hgC kxS sNi sNi @@ -264140,9 +264140,9 @@ sNi sNi dvc dvc -tCi -tCi -tCi +dGX +dGX +dGX dvc dvc dvc @@ -264367,20 +264367,20 @@ apP apP wGC aqa -mNh +wDD cnJ -fkN -gbq +rAu +evc kqB -qjm -kqF -ohY +sol +auy +iad bIK -qjm -rpn -iHo +sol +bkP +yfQ bIK -sHY +hgC kxS sNi sNi @@ -264399,8 +264399,8 @@ sNi dvc dvc dvc -tCi -tCi +dGX +dGX dvc dvc dvc @@ -264624,20 +264624,20 @@ qMK fCM bIK wGC -oVc +bYf lnM -efu +xzJ uXr -cwu +hoX uXr -oZk +uJN hfK ggb pAy -oZk +uJN bIK sBX -sHY +hgC kxS kxS sNi @@ -264881,20 +264881,20 @@ gpg uDA uDA bIK -sPJ -qIN -bPK -hyR -kad -wLG -nFK -xxo -kXY -elZ -xvI -sfs -nMt -sHY +lwo +ikz +bPr +ocv +pPR +ihG +jIW +bjJ +iXD +vyh +lal +vBh +mMf +hgC kxS kxS sNi @@ -265140,18 +265140,18 @@ cnJ wGC bIK dyt -gnE -vBQ -gVM +wLa +eZG +wYG uXr -uag +trc lnM kqB bIK -gVM +wYG bIK -nMt -sHY +mMf +hgC kxS kxS sNi @@ -265397,18 +265397,18 @@ uDA wGC gNr uDA -fkN -hja -oVg -qjm -xCt -ohY +rAu +qZw +vFz +sol +epm +iad bIK -qjm -oQj -iHo -hpg -sHY +sol +mYe +yfQ +crm +hgC kxS sNi sNi @@ -265654,18 +265654,18 @@ apP bIK rzJ kqB -jLj -uim -hey -qjm -xCt -ohY +pRe +qdf +xCK +sol +epm +iad bIK -qjm -eBH -iHo -nMt -kTK +sol +uVq +yfQ +mMf +tvj kxS kxS sNi @@ -265911,18 +265911,18 @@ apP uDA hyg wGC -fkN -vyN +rAu +xbj uXr -qjm -eBH -ohY +sol +uVq +iad kqB -uzH -xCt -iHo -nMt -sHY +bGP +epm +yfQ +mMf +hgC kxS kxS kxS @@ -266168,18 +266168,18 @@ fkk aQv hfK bqg -fkN -lTj +rAu +xXl pAy -qjm -eBH -ohY +sol +uVq +iad bIK -qjm -xCt -iHo -nMt -sHY +sol +epm +yfQ +mMf +hgC kxS kxS kxS @@ -266426,17 +266426,17 @@ xbg kqB duJ pdW -iGt +lDM wQy -qjm -bOd -ohY +sol +adk +iad bIK -qjm -xCt -iHo -nMt -sHY +sol +epm +yfQ +mMf +hgC kxS kxS kxS @@ -266453,7 +266453,7 @@ sNi sNi sNi sNi -gkT +hkG sNi sNi sNi @@ -266628,7 +266628,7 @@ sNi yet xwM uDA -kEj +kyp dvc dvc dvc @@ -266683,17 +266683,17 @@ nPk ooY hyg cnJ -epX +nIF bIK -qjm -lGn -ohY +sol +sna +iad bIK -qjm -xsu -iHo +sol +eWs +yfQ bIK -sHY +hgC kxS kxS kxS @@ -266940,17 +266940,17 @@ kqB dNK bqg sGy -clm +oRT cnJ wQy sBX bIK bIK -qjm -rLn -iHo +sol +aAe +yfQ kqB -iSJ +lEc kxS kxS kxS @@ -267198,16 +267198,16 @@ ggb xIQ yli pdW -cXB -cXB -ety -loV +rjx +rjx +bpp +wpX bIK cnJ aqa bIK cnJ -xAe +nQI yli kxS kxS @@ -267459,12 +267459,12 @@ yli yli yli pdW -cXB -eTo -cXB -cXB -cXB -mVr +rjx +exf +rjx +rjx +rjx +oDI yli kxS kxS @@ -267482,7 +267482,7 @@ sNi kxS kxS kxS -aeH +pBL lWr eoS jmY @@ -268711,7 +268711,7 @@ sNi sNi yli yli -suz +mgu kxS kxS kxS @@ -270520,7 +270520,7 @@ kxS kxS kxS kxS -kEj +kyp kxS kxS kxS @@ -271772,7 +271772,7 @@ gpg uDA yli yli -suz +mgu yli yli yli @@ -273140,7 +273140,7 @@ yli yli yli yli -suz +mgu yli yli yli @@ -299932,13 +299932,13 @@ rGh rGh rGh rGh -ssj -ssj -ssj -ssj -ssj -ssj -ssj +how +how +how +how +how +how +how rGh rGh rGh @@ -300189,13 +300189,13 @@ rGh rGh rGh rGh -ssj -ssj -ssj -ssj -ssj -ssj -ssj +how +how +how +how +how +how +how rGh rGh rGh @@ -300449,10 +300449,10 @@ rGh rGh rGh rGh -ssj -ssj -ssj -ssj +how +how +how +how rGh rGh rGh @@ -300705,11 +300705,11 @@ rGh rGh rGh rGh -ssj -ssj -ssj -ssj -ssj +how +how +how +how +how rGh rGh rGh @@ -300961,12 +300961,12 @@ rGh rGh rGh rGh -ssj -ssj -ssj +how +how +how rGh -ssj -ssj +how +how rGh rGh rGh @@ -301217,13 +301217,13 @@ rGh rGh rGh rGh -ssj -ssj -ssj +how +how +how rGh rGh -ssj -ssj +how +how rGh rGh rGh @@ -301473,14 +301473,14 @@ rGh rGh rGh rGh -ssj -ssj -ssj +how +how +how rGh rGh rGh -ssj -ssj +how +how rGh rGh rGh @@ -301729,9 +301729,9 @@ rGh rGh rGh rGh -ssj -ssj -ssj +how +how +how rGh rGh rGh @@ -301985,9 +301985,9 @@ rGh rGh rGh rGh -ssj -ssj -ssj +how +how +how rGh rGh rGh @@ -302241,9 +302241,9 @@ rGh rGh rGh rGh -ssj -ssj -ssj +how +how +how rGh rGh rGh @@ -302497,9 +302497,9 @@ rGh rGh rGh rGh -ssj -ssj -ssj +how +how +how rGh rGh rGh @@ -302753,9 +302753,9 @@ rGh rGh rGh rGh -ssj -ssj -ssj +how +how +how rGh rGh rGh @@ -303009,9 +303009,9 @@ rGh rGh rGh rGh -ssj -ssj -ssj +how +how +how rGh rGh rGh @@ -303265,9 +303265,9 @@ rGh rGh rGh rGh -ssj -ssj -ssj +how +how +how rGh rGh rGh @@ -303521,9 +303521,9 @@ rGh rGh rGh rGh -ssj -ssj -ssj +how +how +how rGh rGh rGh @@ -303777,9 +303777,9 @@ rGh rGh rGh rGh -ssj -ssj -ssj +how +how +how rGh rGh rGh @@ -304033,9 +304033,9 @@ rGh rGh rGh rGh -ssj -ssj -ssj +how +how +how rGh rGh rGh @@ -304289,9 +304289,9 @@ rGh rGh rGh rGh -ssj -ssj -ssj +how +how +how rGh rGh rGh @@ -304545,9 +304545,9 @@ rGh rGh rGh rGh -ssj -ssj -ssj +how +how +how rGh rGh rGh @@ -304801,9 +304801,9 @@ rGh rGh rGh rGh -ssj -ssj -ssj +how +how +how rGh rGh rGh @@ -305057,9 +305057,9 @@ rGh rGh rGh rGh -ssj -ssj -ssj +how +how +how rGh rGh rGh @@ -305313,9 +305313,9 @@ rGh rGh rGh rGh -ssj -ssj -ssj +how +how +how rGh rGh rGh @@ -305569,9 +305569,9 @@ rGh rGh rGh rGh -ssj -ssj -ssj +how +how +how rGh rGh rGh @@ -305825,9 +305825,9 @@ rGh rGh rGh rGh -ssj -ssj -ssj +how +how +how rGh rGh rGh @@ -306082,8 +306082,8 @@ rGh rGh rGh rGh -ssj -ssj +how +how rGh rGh rGh diff --git a/_maps/map_files/KiloStation/KiloStation.dmm b/_maps/map_files/KiloStation/KiloStation.dmm index 13fb62cb7b1bd..031e5a1194bb6 100644 --- a/_maps/map_files/KiloStation/KiloStation.dmm +++ b/_maps/map_files/KiloStation/KiloStation.dmm @@ -181,11 +181,35 @@ initial_gas_mix = "o2=14;n2=23;TEMP=300" }, /area/space/nearstation) +"aaP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/engine, +/area/engine/engineering) "aaQ" = ( /obj/structure/lattice, /obj/structure/grille/broken, /turf/open/space/basic, /area/space/nearstation) +"aaT" = ( +/obj/machinery/door/airlock/maintenance{ + name = "command Maintenance"; + req_one_access_txt = "19;63" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/iron/dark, +/area/maintenance/central) "aaU" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -255,6 +279,21 @@ }, /turf/open/floor/engine, /area/ai_monitored/turret_protected/ai) +"abl" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron, +/area/hallway/secondary/exit/departure_lounge) "abn" = ( /obj/structure/chair/fancy/bench/pew{ dir = 8 @@ -287,6 +326,14 @@ }, /turf/open/floor/iron/dark/telecomms, /area/quartermaster/exploration_prep) +"abC" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/showroomfloor, +/area/science/shuttledock) "abD" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -1132,6 +1179,13 @@ }, /turf/open/floor/iron/dark, /area/gateway) +"aeI" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/security/main) "aeK" = ( /obj/effect/turf_decal/loading_area{ dir = 1 @@ -1485,6 +1539,28 @@ }, /turf/open/floor/plating, /area/maintenance/port) +"ags" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/cargo{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/door{ + id = "QMLoaddoor"; + name = "Off Ramp Toggle"; + pixel_x = 24; + pixel_y = 6; + req_access_txt = "31" + }, +/obj/machinery/button/door{ + id = "QMLoaddoor2"; + name = "On Ramp Toggle"; + pixel_x = 24; + pixel_y = -6; + req_access_txt = "31" + }, +/turf/open/floor/iron, +/area/quartermaster/storage) "agt" = ( /turf/closed/wall/rust, /area/space/nearstation) @@ -1515,16 +1591,6 @@ /obj/structure/fans/tiny/invisible, /turf/open/space/basic, /area/space) -"agz" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/science/xenobiology) "agA" = ( /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, @@ -1693,19 +1759,6 @@ burnt = 1 }, /area/maintenance/port) -"ahI" = ( -/obj/machinery/door/airlock/maintenance{ - name = "command Maintenance"; - req_one_access_txt = "19;63" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/iron/dark, -/area/maintenance/central) "ahJ" = ( /obj/machinery/door/poddoor/preopen{ id = "xeno4"; @@ -2094,19 +2147,6 @@ /obj/machinery/telecomms/processor/preset_two, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"ajQ" = ( -/obj/machinery/door/airlock{ - id_tag = "Cell"; - name = "Cell 1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/security/prison) "ajT" = ( /obj/structure/sign/poster/contraband/random, /turf/closed/wall, @@ -2133,15 +2173,6 @@ "aka" = ( /turf/closed/wall/r_wall, /area/ai_monitored/security/armory) -"akb" = ( -/obj/machinery/door/poddoor/preopen{ - id = "transittube"; - name = "Transit Tube Blast Door" - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/iron/dark, -/area/bridge) "akd" = ( /obj/machinery/door/poddoor/preopen{ id = "xeno3"; @@ -2243,19 +2274,6 @@ }, /turf/open/space/basic, /area/solar/port/fore) -"akI" = ( -/obj/machinery/door/airlock/maintenance/external{ - name = "exploration Maintenance Access"; - req_one_access_txt = "49" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/exploration_dock) "akL" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ @@ -2277,25 +2295,6 @@ }, /turf/open/space/basic, /area/solar/port/fore) -"akU" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/external{ - name = "mass Driver Intersection"; - req_access_txt = "12" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/maintenance/port/fore) "akX" = ( /obj/structure/closet/crate/wooden/toy, /obj/effect/turf_decal/bot, @@ -2314,44 +2313,6 @@ }, /turf/open/floor/iron/dark, /area/crew_quarters/theatre) -"akY" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/heavy, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/airlock/research/glass{ - name = "exploration Shuttle Dock"; - req_one_access_txt = "49" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/quartermaster/exploration_prep) -"alb" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/maintenance/external{ - name = "mass Driver Intersection"; - req_access_txt = "12" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/maintenance/fore) "alf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/oil, @@ -2428,6 +2389,16 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/engine, /area/ai_monitored/turret_protected/ai) +"alA" = ( +/obj/item/kirbyplants{ + icon_state = "plant-08" + }, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/science/aft) "alB" = ( /turf/closed/wall/r_wall, /area/science/xenobiology) @@ -2560,25 +2531,6 @@ }, /turf/open/floor/iron/dark, /area/science/xenobiology) -"amh" = ( -/obj/machinery/door/airlock/maintenance/external{ - name = "transit Intersection"; - req_access_txt = "12" - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/maintenance/fore) "amo" = ( /obj/structure/lattice/catwalk, /obj/structure/transit_tube/crossing, @@ -2649,15 +2601,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/quartermaster/warehouse) -"amD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/door/airlock/public/glass{ - name = "visitation Area" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/hallway/primary/aft) "amF" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -2739,18 +2682,17 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/port/fore) -"ank" = ( -/obj/machinery/door/airlock/maintenance{ - name = "chapel Maintenance"; - req_one_access_txt = "22" +"ann" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast Door" }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/iron/dark, -/area/maintenance/fore) +/area/bridge) "ant" = ( /obj/machinery/airalarm/directional/north{ pixel_y = 22 @@ -3064,6 +3006,18 @@ }, /turf/open/floor/carpet/green, /area/lawoffice) +"aoU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/showroomfloor, +/area/medical/medbay/central) "apf" = ( /obj/structure/sign/poster/contraband/clown, /turf/closed/wall/rust, @@ -3779,15 +3733,6 @@ }, /turf/open/floor/wood, /area/crew_quarters/heads/captain) -"ate" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/engine/atmos) "atf" = ( /obj/effect/turf_decal/bot, /obj/machinery/holopad, @@ -3995,6 +3940,17 @@ /obj/structure/sign/warning/vacuum/external, /turf/closed/wall/rust, /area/maintenance/starboard) +"auA" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/wood, +/area/library) "auB" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/grunge{ @@ -4033,12 +3989,6 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/security/courtroom) -"auS" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/engine/atmos) "auT" = ( /obj/effect/decal/cleanable/cobweb, /obj/structure/frame/machine, @@ -4473,13 +4423,6 @@ "awH" = ( /turf/closed/wall/r_wall, /area/security/checkpoint/engineering) -"awI" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/engine/atmos) "awL" = ( /turf/closed/wall/r_wall/rust, /area/engine/break_room) @@ -5160,16 +5103,18 @@ /obj/item/stack/cable_coil, /turf/open/floor/iron/dark, /area/engine/engineering) -"azL" = ( -/obj/machinery/door/airlock/maintenance{ - name = "mech Bay Maintenance"; - req_access_txt = "29" +"azM" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4; + color = "#439C1E" }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/iron/dark, -/area/maintenance/starboard/fore) +/obj/structure/closet/l3closet/virology, +/obj/machinery/firealarm/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/medical/virology) "azO" = ( /obj/structure/flora/ausbushes/palebush, /obj/effect/turf_decal/stripes/line{ @@ -5570,21 +5515,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, /area/hallway/primary/aft) -"aBQ" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/iron, -/area/engine/atmos) -"aBV" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/engine/atmos) -"aBW" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/engine/atmos) "aCa" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/delivery, @@ -5621,14 +5551,6 @@ }, /turf/open/floor/iron/dark, /area/science/robotics/lab) -"aCg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/turf/open/floor/plating, -/area/engine/atmos) "aCj" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -5644,22 +5566,22 @@ }, /turf/open/floor/iron/dark, /area/maintenance/starboard/aft) -"aCk" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +"aCn" = ( +/obj/machinery/door/airlock/maintenance{ + name = "genetics Maintenance"; + req_access_txt = "9" }, -/turf/open/floor/iron, -/area/engine/atmos) -"aCl" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/iron, -/area/engine/atmos) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/medical/genetics) "aCp" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/stripes/corner{ @@ -5680,26 +5602,10 @@ }, /turf/open/floor/engine, /area/security/nuke_storage) -"aCr" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/engine/atmos) "aCw" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/engine/atmos) -"aCx" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/iron/dark, -/area/engine/atmos) -"aCA" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/iron/dark, -/area/engine/atmos) "aCB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -5803,21 +5709,6 @@ luminosity = 2 }, /area/science/robotics/mechbay) -"aCU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/science/mixing) "aCV" = ( /obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, @@ -6469,22 +6360,6 @@ /obj/effect/turf_decal/caution/stand_clear, /turf/open/floor/iron/dark, /area/bridge) -"aGT" = ( -/obj/machinery/digital_clock/directional/north, -/obj/machinery/camera{ - c_tag = "Medbay Lobby"; - name = "medical camera"; - network = list("ss13","medical"); - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-08" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/medical/medbay/lobby) "aGU" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{ dir = 4 @@ -6638,6 +6513,31 @@ }, /turf/open/floor/iron/dark, /area/bridge) +"aHW" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/reagentgrinder{ + pixel_y = 5 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/newscaster{ + pixel_x = 32; + pixel_y = -30 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/science/xenobiology) "aHX" = ( /obj/machinery/rnd/production/techfab/department/service, /obj/effect/turf_decal/stripes/box, @@ -6722,6 +6622,14 @@ }, /turf/open/space/basic, /area/space/nearstation) +"aIw" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/iron/freezer, +/area/security/prison) "aIx" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/components/unary/thermomachine/heater{ @@ -6794,24 +6702,6 @@ }, /turf/open/floor/iron/dark, /area/engine/atmos) -"aIY" = ( -/obj/structure/lattice/catwalk, -/obj/item/stack/marker_beacon{ - anchored = 1; - icon_state = "markerburgundy-on"; - light_color = "#FA644B"; - light_power = 3; - light_range = 2; - name = "landing marker"; - picked_color = "Burgundy" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) "aJb" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -7118,14 +7008,6 @@ initial_gas_mix = "o2=14;n2=23;TEMP=300" }, /area/maintenance/fore) -"aLC" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "Bridge Blast Door" - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/bridge) "aLF" = ( /obj/machinery/status_display/evac, /turf/closed/wall/r_wall, @@ -7342,20 +7224,6 @@ "aNn" = ( /turf/closed/wall, /area/medical/medbay/central) -"aNo" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Toxins Lab"; - req_access_txt = "8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/science/mixing) "aNp" = ( /obj/structure/table, /obj/structure/window/reinforced{ @@ -7375,14 +7243,6 @@ "aNu" = ( /turf/closed/wall, /area/medical/morgue) -"aNw" = ( -/obj/machinery/door/firedoor/heavy, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/science/mixing/chamber) "aNx" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -7421,6 +7281,16 @@ "aNG" = ( /turf/closed/wall, /area/medical/genetics) +"aNH" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/security/prison) "aNK" = ( /obj/machinery/power/apc/highcap/ten_k{ areastring = "/area/hallway/primary/central"; @@ -7464,13 +7334,6 @@ /obj/machinery/light, /turf/open/floor/iron, /area/security/prison) -"aOy" = ( -/obj/machinery/door/airlock/maintenance{ - name = "bar Maintenance"; - req_access_txt = "25" - }, -/turf/open/floor/iron/dark, -/area/maintenance/central) "aOL" = ( /turf/closed/wall/rust, /area/medical/genetics) @@ -7724,30 +7587,12 @@ }, /turf/open/floor/engine, /area/tcommsat/computer) -"aRn" = ( -/obj/machinery/smartfridge/chemistry/preloaded, -/turf/open/floor/iron/dark, -/area/medical/chemistry) "aRI" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 }, /turf/open/floor/iron/showroomfloor, /area/security/checkpoint/science/research) -"aRL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/library) "aRM" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -7840,25 +7685,6 @@ }, /turf/open/floor/iron/dark, /area/hallway/primary/fore) -"aSQ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "backstage Maintenance"; - req_access_txt = "46" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/maintenance/central) "aSZ" = ( /obj/effect/turf_decal/bot, /obj/structure/rack, @@ -7896,32 +7722,6 @@ initial_gas_mix = "o2=14;n2=23;TEMP=300" }, /area/space/nearstation) -"aTf" = ( -/obj/machinery/door/airlock/maintenance{ - name = "crematorium Maintenance"; - req_one_access_txt = "27" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/maintenance/fore) -"aTi" = ( -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Brig Port Wing"; - req_one_access_txt = "1;4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "brigfrontdoor"; - name = "Aft Security Blast Door" - }, -/turf/open/floor/iron/dark, -/area/security/brig/aft) "aTk" = ( /obj/effect/turf_decal/delivery, /obj/structure/reagent_dispensers/watertank, @@ -8440,6 +8240,16 @@ "aXW" = ( /turf/closed/wall/rust, /area/maintenance/starboard/fore) +"aXZ" = ( +/obj/structure/bed{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/obj/item/bedsheet/dorms, +/turf/open/floor/prison, +/area/security/prison) "aYd" = ( /turf/closed/wall/r_wall, /area/science/lab) @@ -8479,6 +8289,19 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai_upload) +"aYu" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/mineral/plasma{ + amount = 5 + }, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/storage/satellite) "aYv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -8973,18 +8796,6 @@ }, /turf/open/floor/circuit/telecomms, /area/science/xenobiology) -"bbs" = ( -/obj/machinery/door/airlock/maintenance/external{ - name = "mass Driver Intersection"; - req_access_txt = "12" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/iron/dark, -/area/maintenance/starboard) "bbt" = ( /obj/machinery/air_sensor/atmos/toxins_mixing_tank, /obj/effect/decal/cleanable/blood/old, @@ -9149,17 +8960,6 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/science/mixing/chamber) -"bcg" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/iron/dark, -/area/science/mixing/chamber) "bch" = ( /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters/preopen{ @@ -9624,6 +9424,25 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) +"bfT" = ( +/obj/structure/lattice/catwalk, +/obj/item/stack/marker_beacon{ + anchored = 1; + icon_state = "markerburgundy-on"; + light_color = "#FA644B"; + light_power = 3; + light_range = 2; + name = "landing marker"; + picked_color = "Burgundy" + }, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "bfU" = ( /obj/effect/landmark/blobstart, /turf/open/floor/engine, @@ -9727,18 +9546,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/iron/dark, /area/maintenance/port) -"bgr" = ( -/obj/machinery/door/airlock/maintenance{ - name = "research Lab Maintenance"; - req_one_access_txt = "7;29" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/iron/dark, -/area/maintenance/starboard) "bgv" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -9778,10 +9585,6 @@ }, /turf/open/floor/engine, /area/science/xenobiology) -"bgF" = ( -/obj/machinery/smartfridge/extract/preloaded, -/turf/open/floor/iron/dark, -/area/science/xenobiology) "bgN" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/old, @@ -9866,16 +9669,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plating, /area/maintenance/central) -"bhd" = ( -/obj/machinery/door/airlock/maintenance{ - name = "kitchen Maintenance"; - req_access_txt = "28" - }, -/obj/structure/fans/tiny/invisible, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/iron/dark, -/area/maintenance/central) "bhf" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/dirt, @@ -9886,18 +9679,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plating, /area/maintenance/starboard) -"bhh" = ( -/obj/machinery/door/airlock/maintenance{ - name = "mining Dock Maintenance"; - req_access_txt = "48" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/iron/dark, -/area/maintenance/starboard) "bhj" = ( /obj/effect/turf_decal/box/corners, /obj/structure/sign/warning/electricshock{ @@ -9994,14 +9775,6 @@ }, /turf/open/floor/iron/dark, /area/crew_quarters/bar/atrium) -"bhL" = ( -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/iron/dark, -/area/quartermaster/sorting) "bhN" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/cardboard, @@ -10121,6 +9894,15 @@ }, /turf/open/floor/plating, /area/maintenance/central) +"bil" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/bombcloset, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/science/mixing) "bin" = ( /obj/structure/sign/warning/docking, /turf/closed/wall/rust, @@ -10141,18 +9923,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/central) -"biq" = ( -/obj/machinery/door/airlock/maintenance{ - name = "cargo Maintenance"; - req_one_access_txt = "31;48" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/iron/dark, -/area/maintenance/starboard) "biv" = ( /obj/structure/chair/office{ dir = 4 @@ -10238,18 +10008,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/hydroponics) -"bjp" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) "bjq" = ( /obj/structure/cable/yellow{ icon_state = "1-4" @@ -10334,15 +10092,6 @@ "bjF" = ( /turf/closed/wall/rust, /area/quartermaster/storage) -"bjH" = ( -/obj/machinery/vending/assist, -/obj/effect/turf_decal/delivery, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/storage/primary) "bjM" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -10424,27 +10173,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/quartermaster/storage) -"bkg" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/stack/marker_beacon{ - anchored = 1; - icon_state = "markerburgundy-on"; - light_color = "#FA644B"; - light_power = 3; - light_range = 2; - name = "landing marker"; - picked_color = "Burgundy" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) "bki" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -10471,17 +10199,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/quartermaster/storage) -"bks" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) "bky" = ( /mob/living/simple_animal/butterfly, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -10593,19 +10310,6 @@ }, /turf/open/floor/iron, /area/quartermaster/storage) -"blc" = ( -/obj/machinery/door/airlock/maintenance{ - name = "kitchen Maintenance"; - req_access_txt = "28" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/maintenance/central) "blf" = ( /turf/closed/wall, /area/security/checkpoint/supply) @@ -10623,28 +10327,6 @@ }, /turf/open/floor/wood, /area/crew_quarters/locker) -"blk" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/computer/cargo{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/door{ - id = "QMLoaddoor"; - name = "Off Ramp Toggle"; - pixel_x = 24; - pixel_y = 6; - req_access_txt = "31" - }, -/obj/machinery/button/door{ - id = "QMLoaddoor2"; - name = "On Ramp Toggle"; - pixel_x = 24; - pixel_y = -6; - req_access_txt = "31" - }, -/turf/open/floor/iron, -/area/quartermaster/storage) "bll" = ( /obj/structure/sign/warning/vacuum/external, /turf/closed/wall, @@ -10851,10 +10533,6 @@ "bmy" = ( /turf/closed/wall, /area/crew_quarters/bar/atrium) -"bmA" = ( -/obj/machinery/smartfridge, -/turf/open/floor/iron/dark, -/area/crew_quarters/kitchen) "bmF" = ( /obj/machinery/status_display/evac, /turf/closed/wall, @@ -10990,10 +10668,6 @@ }, /turf/open/floor/iron, /area/quartermaster/sorting) -"bnj" = ( -/obj/machinery/smartfridge, -/turf/open/floor/iron, -/area/hydroponics) "bnl" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -11564,15 +11238,6 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/office) -"bpU" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "Bridge Blast Door" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/bridge) "bpV" = ( /obj/structure/sign/departments/botany, /turf/closed/wall, @@ -11671,30 +11336,6 @@ }, /turf/open/floor/iron/dark, /area/maintenance/port) -"bqD" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 4; - freq = 1400; - location = "Atmospherics"; - name = "navigation beacon (Atmospherics Delivery)" - }, -/obj/machinery/door/window/southleft{ - dir = 8; - name = "Atmospherics Delivery Access"; - req_one_access_txt = "24;10" - }, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/engine/atmos) "bqF" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/corner{ @@ -11760,6 +11401,28 @@ }, /turf/open/floor/iron/dark, /area/hydroponics) +"bqT" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/obj/machinery/recharger, +/obj/machinery/camera/directional/south{ + c_tag = "Engineering Security Post"; + name = "engineering camera" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/checkpoint/engineering) "bqU" = ( /obj/structure/table/wood, /obj/item/storage/crayons, @@ -11831,15 +11494,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/chapel/office) -"bru" = ( -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/tile/dark/half{ - dir = 4 - }, -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/iron/dark, -/area/medical/medbay/central) "brz" = ( /obj/machinery/door/firedoor, /obj/machinery/firealarm{ @@ -11917,15 +11571,16 @@ /obj/structure/chair/office, /turf/open/floor/iron/dark, /area/bridge) -"brV" = ( -/obj/machinery/suit_storage_unit/ce, -/obj/effect/turf_decal/delivery, -/obj/machinery/airalarm/directional/east, +"brX" = ( /obj/effect/turf_decal/stripes/line{ - dir = 1 + dir = 4 }, -/turf/open/floor/iron/dark, -/area/crew_quarters/heads/chief) +/obj/structure/flora/rock/pile, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "brZ" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 @@ -11941,6 +11596,18 @@ /obj/structure/sign/departments/custodian, /turf/closed/wall, /area/maintenance/fore) +"bsi" = ( +/obj/machinery/door/airlock/maintenance{ + name = "mining Dock Maintenance"; + req_access_txt = "48" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/iron/dark, +/area/maintenance/starboard) "bsl" = ( /obj/machinery/door/airlock/grunge{ name = "Service Production"; @@ -12298,6 +11965,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/fore) +"buc" = ( +/obj/machinery/chem_dispenser, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark, +/area/medical/chemistry) "bue" = ( /obj/machinery/photocopier, /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, @@ -12903,13 +12575,6 @@ /obj/structure/sign/departments/holy, /turf/closed/wall, /area/chapel/main) -"byi" = ( -/obj/machinery/door/airlock/maintenance{ - name = "hydroponics Maintenance"; - req_access_txt = "35" - }, -/turf/open/floor/iron/dark, -/area/maintenance/central) "byj" = ( /obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, @@ -12952,12 +12617,6 @@ /obj/structure/sign/poster/contraband/random, /turf/closed/wall/rust, /area/maintenance/central) -"byA" = ( -/obj/machinery/smartfridge{ - name = "Sample Storage" - }, -/turf/open/floor/iron/showroomfloor, -/area/medical/virology) "byD" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -13100,46 +12759,6 @@ }, /turf/open/floor/engine, /area/ai_monitored/turret_protected/ai_upload) -"byS" = ( -/obj/machinery/computer/upload/borg, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/westleft{ - dir = 1; - name = "Cyborg Upload Console Window"; - req_access_txt = "16" - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai_upload) -"byU" = ( -/obj/machinery/computer/upload/ai, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "Upload Console Window"; - req_access_txt = "16" - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai_upload) "bza" = ( /obj/machinery/door/window/brigdoor/westright{ dir = 4; @@ -13870,28 +13489,6 @@ /obj/structure/sign/departments/engineering, /turf/closed/wall, /area/storage/primary) -"bCB" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/obj/machinery/recharger, -/obj/machinery/camera/directional/south{ - c_tag = "Engineering Security Post"; - name = "engineering camera" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/security/checkpoint/engineering) "bCC" = ( /obj/machinery/status_display/ai, /turf/closed/wall/r_wall, @@ -14560,17 +14157,6 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bFG" = ( -/obj/machinery/conveyor{ - id = "NTMSLoad2"; - name = "on ramp" - }, -/obj/machinery/door/poddoor{ - id = "freight_port"; - name = "Freight Bay Blast Door" - }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) "bFI" = ( /obj/effect/turf_decal/sand/plating, /obj/effect/turf_decal/stripes/line{ @@ -14796,17 +14382,6 @@ /obj/effect/turf_decal/stripes/corner, /turf/open/floor/iron/dark, /area/security/courtroom) -"bHq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/engine/atmos) "bHt" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -15344,19 +14919,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/dark, /area/crew_quarters/locker) -"bKz" = ( -/obj/machinery/door/airlock/maintenance{ - name = "command Maintenance"; - req_one_access_txt = "17;19" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/maintenance/central) "bKB" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /obj/structure/cable/yellow{ @@ -15385,6 +14947,21 @@ }, /turf/open/floor/iron/showroomfloor, /area/crew_quarters/toilet/restrooms) +"bKG" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Cloning Lab"; + name = "medical camera"; + network = list("ss13","medical"); + dir = 1 + }, +/turf/open/floor/iron/showroomfloor, +/area/medical/medbay/central) "bKH" = ( /obj/machinery/door/airlock/grunge{ id_tag = "Cabin_1"; @@ -15477,18 +15054,6 @@ /obj/structure/sign/warning/securearea, /turf/closed/wall, /area/crew_quarters/fitness/recreation) -"bLe" = ( -/obj/machinery/door/airlock/maintenance{ - name = "cargo Maintenance"; - req_one_access_txt = "31;48" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/iron/dark, -/area/maintenance/starboard/aft) "bLf" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -15543,6 +15108,38 @@ }, /turf/open/floor/plating, /area/quartermaster/office) +"bLM" = ( +/obj/effect/landmark/start/ai/secondary, +/obj/item/radio/intercom{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 10; + pixel_y = 22 + }, +/obj/item/radio/intercom{ + freerange = 1; + name = "Common Channel"; + pixel_x = 27 + }, +/obj/item/radio/intercom{ + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 10; + pixel_y = -25 + }, +/obj/machinery/door/window{ + base_state = "leftsecure"; + dir = 8; + icon_state = "leftsecure"; + name = "Tertiary AI Core Access"; + obj_integrity = 300; + pixel_x = -3; + req_access_txt = "16" + }, +/turf/open/floor/circuit/red, +/area/ai_monitored/turret_protected/ai) "bLS" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -15585,6 +15182,27 @@ /obj/effect/turf_decal/tile/dark_green/opposingcorners, /turf/open/floor/iron/freezer, /area/medical/virology) +"bMl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/iron, +/area/security/brig/aft) "bMm" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -15630,6 +15248,14 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/storage) +"bMC" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/food/donut/plain, +/obj/effect/turf_decal/tile/red/fourcorners/contrasted, +/obj/item/radio/headset/headset_sec, +/turf/open/floor/iron, +/area/security/brig) "bMG" = ( /obj/machinery/light/small{ dir = 8 @@ -15788,13 +15414,6 @@ /obj/effect/turf_decal/tile/blue, /turf/open/floor/iron, /area/hallway/primary/starboard) -"bNF" = ( -/obj/machinery/door/airlock/maintenance{ - name = "security Maintenance"; - req_access_txt = "4" - }, -/turf/open/floor/iron/dark, -/area/security/detectives_office) "bNK" = ( /turf/closed/wall, /area/vacant_room/commissary) @@ -15885,26 +15504,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"bOl" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) "bOo" = ( /obj/structure/sign/departments/custodian, /turf/closed/wall/rust, @@ -15918,17 +15517,6 @@ }, /turf/open/floor/wood, /area/crew_quarters/heads/hop) -"bOv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Mailroom"; - req_access_txt = "50" - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/quartermaster/sorting) "bOz" = ( /obj/structure/closet/secure_closet/engineering_chief, /obj/effect/turf_decal/delivery, @@ -16002,24 +15590,17 @@ "bOU" = ( /turf/closed/wall, /area/hallway/primary/central) +"bPd" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/engine/atmos) "bPe" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/hallway/secondary/exit/departure_lounge) -"bPi" = ( -/obj/machinery/conveyor{ - id = "garbage" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Disposal Exit"; - name = "disposal Exit Vent" - }, -/obj/structure/sign/warning/deathsposal{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/maintenance/disposal) "bPj" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, @@ -16048,15 +15629,6 @@ "bPJ" = ( /turf/closed/mineral/random/labormineral, /area/hallway/secondary/entry) -"bPK" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/fernybush, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/asteroid/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) "bPO" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "hop"; @@ -16065,41 +15637,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/crew_quarters/heads/hop) -"bPP" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/flora/grass/jungle/b, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/asteroid/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) -"bPQ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/flora/grass/jungle, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/asteroid/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) -"bPR" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/flora/ausbushes/palebush, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/asteroid/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) -"bPT" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/flora/grass/jungle, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/asteroid/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) "bPU" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -16126,30 +15663,6 @@ }, /turf/open/floor/iron/dark, /area/maintenance/disposal) -"bPX" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/asteroid/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) -"bPY" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/asteroid/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) -"bPZ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/grass/jungle/b, -/turf/open/floor/plating/asteroid/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) "bQa" = ( /obj/structure/sign/warning/docking, /turf/closed/wall, @@ -16188,15 +15701,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, /area/hallway/primary/aft) -"bQl" = ( -/obj/machinery/door/airlock/maintenance{ - name = "security Maintenance"; - req_access_txt = "12;63" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/iron/dark, -/area/maintenance/starboard/aft) "bQq" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/blood/gibs/limb, @@ -16242,6 +15746,17 @@ }, /turf/open/floor/iron/showroomfloor, /area/science/shuttledock) +"bQy" = ( +/obj/effect/spawner/structure/window/reinforced/prison, +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/prison) "bQC" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ @@ -16325,18 +15840,6 @@ initial_gas_mix = "o2=14;n2=23;TEMP=300" }, /area/space/nearstation) -"bQT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) "bRa" = ( /obj/effect/turf_decal/bot, /obj/structure/rack, @@ -16384,14 +15887,6 @@ /obj/structure/grille/broken, /turf/open/floor/plating, /area/maintenance/central) -"bRv" = ( -/obj/machinery/door/poddoor{ - id = "Arrival Shuttle Bay"; - name = "Arrival Shuttle Bay" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plating/airless, -/area/docking/arrival) "bRx" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/external{ @@ -16456,24 +15951,6 @@ }, /turf/open/space/basic, /area/space/nearstation) -"bRR" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/advanced_airlock_controller{ - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{ - dir = 4 - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron, -/area/hallway/secondary/exit/departure_lounge) "bRU" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, @@ -16506,15 +15983,6 @@ }, /turf/open/floor/iron/dark, /area/hallway/primary/central) -"bSd" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) "bSe" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/delivery, @@ -16698,17 +16166,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/iron/dark, /area/hallway/primary/aft) -"bTb" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "Bridge Blast Door" - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/iron/dark, -/area/bridge) "bTc" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/external{ @@ -16827,26 +16284,6 @@ /obj/effect/turf_decal/caution/stand_clear, /turf/open/floor/iron/dark, /area/hallway/primary/aft) -"bTT" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/grass/jungle, -/turf/open/floor/plating/asteroid/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) -"bTV" = ( -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) "bTZ" = ( /obj/machinery/status_display/evac, /turf/closed/wall, @@ -16860,20 +16297,6 @@ /obj/machinery/vending/clothing, /turf/open/floor/iron/dark, /area/hallway/secondary/entry) -"bUj" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall, -/area/docking/arrival) -"bUn" = ( -/obj/structure/flora/rock/pile, -/turf/open/floor/plating/asteroid/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) -"bUo" = ( -/obj/structure/sign/warning, -/turf/closed/wall, -/area/docking/arrival) "bUp" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ @@ -16881,114 +16304,10 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"bUt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plating/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) -"bUv" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/computer/station_alert, -/obj/machinery/requests_console{ - department = "Atmospherics"; - departmentType = 4; - name = "Atmospherics RC"; - pixel_x = 30 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/engine/atmos) "bUw" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"bUA" = ( -/obj/structure/lattice/catwalk, -/obj/item/stack/marker_beacon{ - anchored = 1; - icon_state = "markerburgundy-on"; - light_color = "#FA644B"; - light_power = 3; - light_range = 2; - name = "landing marker"; - picked_color = "Burgundy" - }, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plating/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) -"bUB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/flora/grass/jungle, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating/asteroid/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) -"bUC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/flora/grass/jungle/b, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating/asteroid/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) -"bUD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating/asteroid/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) -"bUE" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/palebush, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/asteroid/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) -"bUF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/flora/rock/pile, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/asteroid/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) "bUG" = ( /obj/structure/lattice/catwalk, /obj/item/stack/marker_beacon{ @@ -17002,24 +16321,6 @@ }, /turf/open/space/basic, /area/space/nearstation) -"bUH" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/advanced_airlock_controller{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{ - dir = 4 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron, -/area/hallway/secondary/exit/departure_lounge) "bUI" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -17033,19 +16334,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/iron/dark, /area/maintenance/starboard/aft) -"bUJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/flora/ausbushes/palebush, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating/asteroid/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) "bUL" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 @@ -17059,19 +16347,6 @@ }, /turf/closed/wall, /area/engine/atmos) -"bUN" = ( -/turf/open/floor/plating/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) -"bUO" = ( -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/turf/open/floor/plating/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) "bUQ" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/sand/plating, @@ -17433,6 +16708,20 @@ }, /turf/open/floor/iron/dark, /area/hallway/secondary/exit/departure_lounge) +"bXf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/item/wrench, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "bXt" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass{ @@ -17579,25 +16868,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) -"bYB" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/advanced_airlock_controller{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{ - dir = 4 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron, -/area/hallway/secondary/exit/departure_lounge) "bYD" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -17715,29 +16985,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/security/warden) -"bZM" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/directional/east{ - c_tag = "Xenobiology Computers"; - name = "xenobiology camera"; - network = list("ss13","rd","xeno"); - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/science/xenobiology) "bZO" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -17933,6 +17180,14 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) +"cbC" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/analyzer, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron/dark, +/area/engine/atmos) "cbD" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -18123,16 +17378,6 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/engine/vacuum, /area/science/test_area) -"ccD" = ( -/obj/item/target/clown, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/camera/preset/toxins{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/science/test_area) "ccE" = ( /obj/effect/turf_decal/stripes/end{ dir = 8 @@ -18418,16 +17663,6 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/crew_quarters/heads/hor) -"cdQ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/bed{ - dir = 8 - }, -/obj/item/bedsheet/brown, -/turf/open/floor/prison, -/area/security/prison) "cdS" = ( /obj/structure/sign/warning/securearea, /obj/item/multitool, @@ -18529,38 +17764,6 @@ }, /turf/open/floor/circuit/red, /area/ai_monitored/turret_protected/ai) -"cef" = ( -/obj/effect/landmark/start/ai/secondary, -/obj/item/radio/intercom{ - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_x = -10; - pixel_y = 22 - }, -/obj/item/radio/intercom{ - freerange = 1; - name = "Common Channel"; - pixel_x = -27 - }, -/obj/item/radio/intercom{ - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = -10; - pixel_y = -25 - }, -/obj/machinery/door/window{ - base_state = "rightsecure"; - dir = 4; - icon_state = "rightsecure"; - name = "Secondary AI Core Access"; - obj_integrity = 300; - pixel_x = 4; - req_access_txt = "16" - }, -/turf/open/floor/circuit/red, -/area/ai_monitored/turret_protected/ai) "ceg" = ( /obj/machinery/holopad, /obj/effect/turf_decal/bot, @@ -18583,38 +17786,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/engine, /area/ai_monitored/turret_protected/ai) -"ceo" = ( -/obj/effect/landmark/start/ai/secondary, -/obj/item/radio/intercom{ - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_x = 10; - pixel_y = 22 - }, -/obj/item/radio/intercom{ - freerange = 1; - name = "Common Channel"; - pixel_x = 27 - }, -/obj/item/radio/intercom{ - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = 10; - pixel_y = -25 - }, -/obj/machinery/door/window{ - base_state = "leftsecure"; - dir = 8; - icon_state = "leftsecure"; - name = "Tertiary AI Core Access"; - obj_integrity = 300; - pixel_x = -3; - req_access_txt = "16" - }, -/turf/open/floor/circuit/red, -/area/ai_monitored/turret_protected/ai) "cep" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -18636,18 +17807,6 @@ }, /turf/open/floor/plating, /area/ai_monitored/turret_protected/ai) -"cer" = ( -/obj/structure/sign/poster/official/no_erp{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/effect/landmark/prisonspawn, -/turf/open/floor/prison, -/area/security/prison) "cev" = ( /obj/structure/transit_tube/diagonal/topleft, /obj/structure/lattice, @@ -19001,19 +18160,6 @@ /obj/machinery/telecomms/bus/preset_four, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"cfH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/red/opposingcorners{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/turf/open/floor/iron/showroomfloor, -/area/engine/atmos) "cfK" = ( /obj/machinery/door/window{ base_state = "rightsecure"; @@ -19095,6 +18241,15 @@ /obj/machinery/status_display/evac, /turf/closed/wall, /area/tcommsat/computer) +"cgh" = ( +/obj/machinery/door/airlock{ + id_tag = "Cell"; + name = "Cell 1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/iron/dark, +/area/security/prison) "cgm" = ( /obj/item/radio/intercom{ pixel_y = 22 @@ -19229,15 +18384,6 @@ }, /turf/open/floor/plating, /area/maintenance/aft) -"cgD" = ( -/obj/machinery/door/airlock/maintenance{ - name = "e.v.a. Maintenance"; - req_access_txt = "18" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/iron/dark, -/area/maintenance/aft) "cgG" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -19574,16 +18720,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/aft) -"cic" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/light, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) "cid" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -20205,6 +19341,14 @@ "ckU" = ( /turf/closed/wall, /area/maintenance/solars/starboard/aft) +"ckV" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/flora/ausbushes/palebush, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "cla" = ( /obj/structure/sign/warning/nosmoking{ pixel_x = -30 @@ -20240,20 +19384,6 @@ /obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, /area/maintenance/solars/starboard/aft) -"cll" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 3; - height = 15; - id = "arrivals_stationary"; - name = "kilo arrivals"; - roundstart_template = /datum/map_template/shuttle/arrival/kilo; - width = 7 - }, -/turf/open/floor/plating/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) "cln" = ( /obj/machinery/camera/directional/west{ c_tag = "Atmospherics Tank - Plasma"; @@ -20550,21 +19680,6 @@ /obj/structure/lattice, /turf/open/space/basic, /area/space) -"cmN" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/engine/atmos) "cmQ" = ( /obj/machinery/door/poddoor/preopen{ id = "gravity"; @@ -20589,26 +19704,6 @@ /obj/structure/grille, /turf/open/floor/plating/airless, /area/space/nearstation) -"cmX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Desk"; - req_access_txt = "24" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/engine/atmos) "cmY" = ( /obj/machinery/power/smes, /obj/effect/turf_decal/bot, @@ -20650,16 +19745,6 @@ }, /turf/open/floor/prison, /area/security/prison) -"cnk" = ( -/obj/machinery/door/airlock/maintenance{ - name = "supermatter Maintenance"; - req_one_access_txt = "10" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron/dark, -/area/maintenance/starboard/aft) "cnl" = ( /obj/machinery/button/door{ id = "sparemech"; @@ -20718,6 +19803,14 @@ }, /turf/open/floor/iron/showroomfloor, /area/medical/virology) +"cnz" = ( +/obj/machinery/door/poddoor{ + id = "trash"; + name = "disposal Bay Door" + }, +/obj/structure/fans/tiny, +/turf/open/floor/iron/dark, +/area/maintenance/disposal) "cnA" = ( /obj/effect/turf_decal/stripes/corner, /obj/effect/decal/cleanable/blood/old, @@ -20738,6 +19831,24 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/aft) +"cnL" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/advanced_airlock_controller{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron, +/area/hallway/secondary/exit/departure_lounge) "cnP" = ( /turf/closed/wall/r_wall, /area/maintenance/solars/port/aft) @@ -20763,18 +19874,6 @@ /obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, /area/maintenance/solars/port/aft) -"coh" = ( -/obj/machinery/door/airlock/maintenance{ - name = "atmospherics Maintenance"; - req_access_txt = "24" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/iron/dark, -/area/maintenance/aft) "coj" = ( /obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, @@ -20793,6 +19892,20 @@ /obj/structure/lattice/catwalk, /turf/open/space/basic, /area/space/nearstation) +"con" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plating/airless, +/area/docking/arrival) "cop" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering{ @@ -20951,34 +20064,10 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cpa" = ( -/obj/structure/flora/ausbushes/palebush, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating/asteroid/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) "cpb" = ( /obj/structure/sign/warning/vacuum/external, /turf/closed/wall, /area/maintenance/disposal) -"cpd" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/atmos) "cpx" = ( /obj/structure/lattice, /obj/structure/disposalpipe/segment, @@ -21019,20 +20108,6 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/engine, /area/engine/gravity_generator) -"cpF" = ( -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4; - color = "#439C1E" - }, -/obj/structure/closet/l3closet/virology, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/freezer, -/area/medical/virology) "cpI" = ( /obj/effect/turf_decal/bot, /obj/structure/rack, @@ -21111,6 +20186,16 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) +"cqd" = ( +/obj/machinery/door/airlock/maintenance{ + name = "supermatter Maintenance"; + req_one_access_txt = "10" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron/dark, +/area/maintenance/starboard/aft) "cqf" = ( /obj/machinery/power/smes, /obj/effect/turf_decal/bot, @@ -21179,10 +20264,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/maintenance/disposal) -"cqw" = ( -/obj/structure/sign/warning/deathsposal, -/turf/closed/wall, -/area/science/xenobiology) "cqx" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ @@ -21194,19 +20275,6 @@ /obj/structure/sign/warning/docking, /turf/closed/wall/rust, /area/maintenance/port/aft) -"cqM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics"; - req_access_txt = "24" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/iron/dark, -/area/engine/atmos) "cqN" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/external{ @@ -21386,19 +20454,6 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"crG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/flora/grass/jungle/b, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating/asteroid/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) "crH" = ( /obj/machinery/mech_bay_recharge_port, /obj/effect/turf_decal/stripes/corner{ @@ -21410,40 +20465,10 @@ /obj/structure/cable/yellow, /turf/open/floor/plating, /area/science/robotics/mechbay) -"crJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/item/wrench, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating/asteroid/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) -"crK" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/turf/open/floor/plating/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) "crP" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/port) -"crV" = ( -/obj/structure/table, -/obj/item/wrench, -/obj/item/crowbar, -/obj/item/analyzer, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/engine/atmos) "crX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/yellow{ @@ -21714,14 +20739,6 @@ }, /turf/open/floor/engine/vacuum, /area/engine/atmos) -"ctu" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/oil, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) "ctA" = ( /turf/closed/wall/rust, /area/maintenance/solars/port/fore) @@ -21762,6 +20779,11 @@ }, /turf/closed/wall, /area/maintenance/starboard/fore) +"ctK" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/iron/dark, +/area/engine/atmos) "ctM" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste{ dir = 8; @@ -21796,13 +20818,6 @@ }, /turf/open/space/basic, /area/solar/port/aft) -"ctT" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) "ctV" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass{ @@ -21814,20 +20829,6 @@ }, /turf/open/floor/iron/dark, /area/engine/engineering) -"ctW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating/asteroid/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) "cua" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/dirt, @@ -21913,38 +20914,6 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"cuM" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/analyzer{ - desc = "A sophisticated analyzer capable of analyzing cryptic subspace wavelengths. Shifted slightly right."; - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/stock_parts/subspace/analyzer{ - desc = "A sophisticated analyzer capable of analyzing cryptic subspace wavelengths. Shifted slightly right."; - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/stock_parts/subspace/analyzer{ - desc = "A sophisticated analyzer capable of analyzing cryptic subspace wavelengths. Shifted slightly right."; - pixel_x = 6; - pixel_y = 4 - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/storage/tcom) "cuN" = ( /obj/structure/grille/broken, /obj/effect/decal/cleanable/cobweb, @@ -21954,17 +20923,6 @@ broken = 1 }, /area/maintenance/aft) -"cuO" = ( -/obj/effect/spawner/randomarcade, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/wood, -/area/security/prison) "cuP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, @@ -21973,22 +20931,6 @@ broken = 1 }, /area/quartermaster/exploration_dock) -"cuQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/grass/jungle, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating/asteroid/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) "cuS" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ @@ -22290,14 +21232,6 @@ }, /turf/open/floor/iron/dark, /area/gateway) -"cvP" = ( -/obj/machinery/door/poddoor{ - id = "trash"; - name = "disposal Bay Door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/iron/dark, -/area/maintenance/disposal) "cvR" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -22494,35 +21428,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, /area/gateway) -"cws" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/stack/marker_beacon{ - anchored = 1; - icon_state = "markerburgundy-on"; - light_color = "#FA644B"; - light_power = 3; - light_range = 2; - name = "landing marker"; - picked_color = "Burgundy" - }, -/obj/machinery/button/door{ - id = "Arrival Shuttle Bay"; - name = "Arrival Shuttle Bay Toggle"; - pixel_x = 24; - pixel_y = 8; - req_access_txt = "19" - }, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plating/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) "cwv" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -22565,6 +21470,16 @@ }, /turf/open/floor/plating, /area/maintenance/port) +"cwC" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/airalarm/directional/north, +/obj/machinery/space_heater, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/science/shuttledock) "cwF" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -23137,21 +22052,6 @@ }, /turf/open/space/basic, /area/solar/starboard/aft) -"czs" = ( -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/engine, -/area/engine/engineering) "czt" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 @@ -23222,6 +22122,25 @@ }, /turf/open/floor/carpet/red, /area/crew_quarters/heads/hos) +"czW" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/iron/showroomfloor, +/area/science/shuttledock) "czY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 @@ -23560,6 +22479,30 @@ }, /turf/open/floor/iron/dark, /area/chapel/main) +"cBi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "quarantineshutters"; + name = "Isolation Shutters" + }, +/obj/machinery/door/airlock/virology{ + name = "Virology Lab"; + req_access_txt = "39" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/medical/virology) "cBj" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 1; @@ -24124,18 +23067,6 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/iron/dark, /area/quartermaster/warehouse) -"cDo" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "NTMSLoad"; - name = "off ramp" - }, -/obj/machinery/door/poddoor{ - id = "freight_port"; - name = "Freight Bay Blast Door" - }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) "cDp" = ( /obj/structure/sign/poster/contraband/random{ pixel_x = -32 @@ -24298,21 +23229,6 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"cEu" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "47"; - name = "science Aft Maintenance Access" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard) "cEv" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, @@ -24333,6 +23249,25 @@ }, /turf/open/floor/plating, /area/construction/mining/aux_base) +"cEy" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/science/explab) "cEz" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -24489,17 +23424,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"cFA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/turnstile{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "brigfrontdoor"; - name = "Front Security Blast Door" - }, -/turf/open/floor/iron/dark, -/area/security/prison) "cFB" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24830,19 +23754,6 @@ }, /turf/open/floor/grass, /area/chapel/main) -"cHl" = ( -/obj/machinery/door/airlock/maintenance{ - name = "chapel Maintenance"; - req_one_access_txt = "22" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/chapel/main) "cHm" = ( /obj/structure/transit_tube/curved/flipped, /obj/structure/window/reinforced{ @@ -25370,26 +24281,18 @@ /obj/item/storage/fancy/donut_box, /turf/open/floor/plating, /area/hallway/secondary/exit/departure_lounge) -"cJh" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4; - color = "#439C1E" - }, -/obj/machinery/camera/directional/north{ - c_tag = "Virology - Testing pens"; - name = "virology camera"; - network = list("ss13","medbay") - }, -/obj/item/food/cheese/wheel{ - pixel_x = 18 +"cIY" = ( +/obj/machinery/door/airlock/maintenance{ + name = "cargo Maintenance"; + req_one_access_txt = "31;48" }, -/obj/item/food/cheese/wheel{ - pixel_y = -4; - pixel_x = 17 +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/turf/open/floor/iron/freezer, -/area/medical/virology) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/iron/dark, +/area/maintenance/starboard) "cJo" = ( /obj/machinery/power/compressor{ comp_id = "incineratorturbine"; @@ -25480,6 +24383,16 @@ }, /turf/open/floor/plating, /area/hallway/secondary/exit/departure_lounge) +"cJQ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "crematorium Maintenance"; + req_one_access_txt = "27" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/maintenance/fore) "cJW" = ( /obj/effect/turf_decal/tile/yellow/opposingcorners, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -25799,6 +24712,26 @@ }, /turf/open/space/basic, /area/solar/port/aft) +"cLG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron, +/area/engine/atmos) "cLJ" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ @@ -25965,21 +24898,6 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"cMq" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/power/apc/auto_name/directional/north{ - areastring = "/area/engine/supermatter" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/engine, -/area/engine/engineering) "cMr" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 @@ -26084,6 +25002,14 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) +"cMP" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/atmos_alert, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/engine/atmos) "cMS" = ( /obj/structure/sign/warning/vacuum, /turf/closed/wall/r_wall/rust, @@ -26439,27 +25365,6 @@ }, /turf/open/space/basic, /area/space/nearstation) -"cOh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "Bridge Blast Door" - }, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/bridge) -"cOi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "Bridge Blast Door" - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/bridge) "cOj" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /obj/effect/turf_decal/stripes/box, @@ -26997,6 +25902,21 @@ broken = 1 }, /area/maintenance/fore) +"cSG" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "47"; + name = "science Aft Maintenance Access" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) "cTa" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -27431,6 +26351,17 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/hallway/primary/starboard) +"cZK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/turnstile{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "brigfrontdoor"; + name = "Front Security Blast Door" + }, +/turf/open/floor/iron/dark, +/area/security/prison) "dab" = ( /obj/structure/girder, /obj/effect/decal/cleanable/dirt, @@ -27455,6 +26386,25 @@ }, /turf/open/floor/iron/dark, /area/science/explab) +"daD" = ( +/obj/machinery/door/airlock/maintenance{ + name = "backstage Maintenance"; + req_access_txt = "46" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/maintenance/central) "daS" = ( /obj/effect/turf_decal/loading_area{ dir = 8 @@ -27617,6 +26567,10 @@ }, /turf/open/floor/iron, /area/security/brig) +"dcu" = ( +/obj/machinery/smartfridge, +/turf/open/floor/iron, +/area/hydroponics) "dcE" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -27647,6 +26601,15 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/science/xenobiology) +"ddm" = ( +/obj/machinery/door/airlock/maintenance{ + name = "e.v.a. Maintenance"; + req_access_txt = "18" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/iron/dark, +/area/maintenance/aft) "ddG" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -27743,6 +26706,14 @@ broken = 1 }, /area/maintenance/starboard/aft) +"deO" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/engine/atmos) "deU" = ( /obj/effect/turf_decal/box/corners, /obj/effect/turf_decal/tile/neutral{ @@ -27884,6 +26855,24 @@ "dgh" = ( /turf/closed/wall/rust, /area/security/brig/aft) +"dgt" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/advanced_airlock_controller{ + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron, +/area/hallway/secondary/exit/departure_lounge) "dgD" = ( /obj/structure/closet/secure_closet/atmospherics, /obj/effect/turf_decal/delivery, @@ -27964,6 +26953,25 @@ burnt = 1 }, /area/maintenance/port/aft) +"djH" = ( +/obj/machinery/computer/upload/borg, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/westleft{ + dir = 1; + name = "Cyborg Upload Console Window"; + req_access_txt = "16" + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) "dkc" = ( /obj/effect/turf_decal/tile/blue/half/contrasted{ color = "#439C1E" @@ -28016,6 +27024,26 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/hallway/primary/aft) +"dlm" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) "dlp" = ( /obj/effect/turf_decal/tile/blue/anticorner/contrasted{ dir = 8; @@ -28064,6 +27092,26 @@ broken = 1 }, /area/maintenance/port/aft) +"dmk" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/tile/dark_green/half/contrasted, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/showroomfloor, +/area/medical/medbay/central) "dmo" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/external{ @@ -28162,6 +27210,21 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/security/courtroom) +"dnT" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/security/prison) "dog" = ( /obj/effect/landmark/start/assistant, /obj/effect/turf_decal/tile/red{ @@ -28457,6 +27520,10 @@ /obj/effect/turf_decal/tile/neutral/anticorner/contrasted, /turf/open/floor/iron/dark, /area/bridge) +"dsr" = ( +/obj/machinery/smartfridge, +/turf/open/floor/iron/showroomfloor, +/area/crew_quarters/kitchen) "dsx" = ( /obj/structure/table/reinforced, /obj/item/folder/red{ @@ -28515,6 +27582,16 @@ /obj/item/crowbar/red, /turf/open/floor/iron, /area/security/brig) +"dtG" = ( +/obj/machinery/door/airlock/maintenance/external{ + name = "construction Zone"; + req_access_txt = "32;47;48;37" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/construction/mining/aux_base) "duf" = ( /obj/structure/closet/l3closet/janitor, /obj/structure/window/reinforced, @@ -28579,6 +27656,16 @@ }, /turf/open/floor/plating, /area/maintenance/port) +"dvl" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/iron, +/area/engine/atmos) "dvt" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/red/half/contrasted, @@ -28638,22 +27725,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/science/robotics/lab) -"dxi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/science/xenobiology) "dxm" = ( /obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 4 @@ -28694,6 +27765,20 @@ /obj/effect/turf_decal/tile/red, /turf/open/floor/iron, /area/hallway/primary/fore) +"dxY" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_y = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/crew_quarters/kitchen) "dyu" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/corner{ @@ -28749,6 +27834,16 @@ burnt = 1 }, /area/maintenance/starboard) +"dyT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/showroomfloor, +/area/medical/medbay/central) "dyW" = ( /obj/item/candle/infinite{ pixel_y = 6 @@ -28889,6 +27984,38 @@ }, /turf/open/floor/iron/dark, /area/science/aft) +"dAW" = ( +/obj/effect/landmark/start/ai/secondary, +/obj/item/radio/intercom{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = -10; + pixel_y = 22 + }, +/obj/item/radio/intercom{ + freerange = 1; + name = "Common Channel"; + pixel_x = -27 + }, +/obj/item/radio/intercom{ + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = -10; + pixel_y = -25 + }, +/obj/machinery/door/window{ + base_state = "rightsecure"; + dir = 4; + icon_state = "rightsecure"; + name = "Secondary AI Core Access"; + obj_integrity = 300; + pixel_x = 4; + req_access_txt = "16" + }, +/turf/open/floor/circuit/red, +/area/ai_monitored/turret_protected/ai) "dBa" = ( /obj/machinery/light{ dir = 4 @@ -28916,6 +28043,14 @@ }, /turf/open/floor/iron/dark, /area/crew_quarters/theatre) +"dBH" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast Door" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/iron/dark, +/area/bridge) "dBY" = ( /obj/structure/sign/departments/security{ pixel_y = -32 @@ -29102,17 +28237,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/crew_quarters/kitchen) -"dEt" = ( -/obj/item/book/manual/wiki/xenoarchaeology{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/science/explab) "dEu" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/corner{ @@ -29344,6 +28468,23 @@ /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, /area/library) +"dIF" = ( +/obj/structure/closet/secure_closet/personal{ + name = "Command Locker" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/hallway/secondary/exit/departure_lounge) "dIS" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -29410,21 +28551,6 @@ }, /turf/open/floor/iron/dark, /area/storage/tech) -"dKa" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/public/glass{ - name = "visitation Area" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/security/prison) "dKn" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/brown/half/contrasted, @@ -29665,6 +28791,20 @@ burnt = 1 }, /area/quartermaster/warehouse) +"dPP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosspace"; + name = "Space Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) "dQl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/yellow{ @@ -29766,6 +28906,11 @@ /obj/item/flashlight, /turf/open/floor/plating, /area/quartermaster/office) +"dRS" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/directional, +/turf/open/floor/plating, +/area/security/prison) "dRT" = ( /obj/machinery/telecomms/hub/preset/exploration, /obj/effect/turf_decal/box, @@ -29841,6 +28986,28 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/security/main) +"dSQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/east, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/table, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/cell_charger, +/obj/item/stack/cable_coil/red, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/showroomfloor, +/area/quartermaster/exploration_prep) "dSS" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/techstorage/service, @@ -29986,6 +29153,26 @@ /obj/structure/lattice, /turf/open/space/basic, /area/space/nearstation) +"dUW" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + network = list("ss13", "prison", "security") + }, +/turf/open/floor/iron, +/area/hallway/primary/aft) "dVi" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 8 @@ -30035,23 +29222,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/port) -"dVZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/fun_police{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/machinery/space_heater, -/obj/machinery/airalarm/directional/east, -/obj/machinery/light, -/turf/open/floor/iron/dark, -/area/security/execution/education) "dWn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -30074,20 +29244,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"dWA" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/light, -/obj/machinery/camera/directional/south{ - c_tag = "Arrivals Drydock Canisters"; - name = "shuttle camera" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) "dWK" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable/yellow{ @@ -30338,14 +29494,6 @@ dir = 8 }, /area/hallway/primary/port) -"dZZ" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/maintenance{ - desc = "It opens and closes. You have a terrible feeling about this room..."; - name = "Brig Closet" - }, -/turf/open/floor/iron/dark, -/area/security/brig) "eah" = ( /obj/effect/turf_decal/bot, /obj/machinery/conveyor{ @@ -30484,20 +29632,6 @@ }, /turf/open/floor/plating, /area/quartermaster/warehouse) -"ebU" = ( -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced/prison, -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" - }, -/turf/open/floor/plating, -/area/security/prison) "ebZ" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/effect/decal/cleanable/dirt, @@ -30618,21 +29752,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/port) -"edU" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/obj/structure/toilet{ - dir = 4 - }, -/obj/item/food/donut/apple{ - name = "forbidden toilet donut"; - pixel_x = 1; - pixel_y = 2 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/freezer, -/area/security/prison) "eeb" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -30664,6 +29783,15 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/chapel/office) +"eeh" = ( +/obj/machinery/door/airlock/maintenance{ + name = "security Maintenance"; + req_access_txt = "12;63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/iron/dark, +/area/maintenance/starboard/aft) "eei" = ( /obj/machinery/flasher/portable, /obj/machinery/camera/motion/directional/east{ @@ -30711,6 +29839,20 @@ /obj/effect/turf_decal/tile/red/opposingcorners, /turf/open/floor/iron/showroomfloor, /area/crew_quarters/bar/atrium) +"eeQ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/iron, +/area/security/brig/aft) "eeR" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/corner, @@ -30805,6 +29947,10 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/gateway) +"efV" = ( +/obj/structure/sign/warning/deathsposal, +/turf/closed/wall, +/area/science/xenobiology) "efW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/old, @@ -31212,14 +30358,6 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/maintenance/disposal/incinerator) -"emF" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/iron/freezer, -/area/security/prison) "emQ" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -31337,6 +30475,18 @@ broken = 1 }, /area/maintenance/fore) +"eox" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/table, +/obj/machinery/airalarm/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bridge) "eoN" = ( /obj/machinery/status_display/ai{ pixel_y = 32 @@ -31487,16 +30637,24 @@ }, /turf/open/floor/prison, /area/security/prison) -"erx" = ( -/obj/structure/railing{ - dir = 4 +"erA" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 }, -/obj/effect/turf_decal/stripes/line{ +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/wood, -/area/security/prison) +/turf/open/floor/iron/showroomfloor, +/area/science/mixing) "erN" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -31568,6 +30726,16 @@ }, /turf/open/floor/plating, /area/crew_quarters/kitchen) +"esD" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/showroomfloor, +/area/science/shuttledock) "etk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, @@ -32007,26 +31175,6 @@ }, /turf/open/floor/iron, /area/crew_quarters/fitness/recreation) -"eAH" = ( -/obj/machinery/requests_console{ - department = "AI"; - departmentType = 5; - name = "AI RC"; - pixel_x = 30; - pixel_y = -30 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/effect/turf_decal/box, -/obj/machinery/flasher{ - id = "AI"; - name = "Meatbag Pacifier"; - pixel_x = 24; - pixel_y = 24 - }, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) "eAT" = ( /turf/closed/wall/r_wall/rust, /area/security/execution/transfer) @@ -32072,6 +31220,19 @@ /obj/machinery/modular_fabricator/autolathe, /turf/open/floor/iron/dark, /area/science/lab) +"eCD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/showroomfloor, +/area/science/xenobiology) "eCH" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -32133,10 +31294,6 @@ broken = 1 }, /area/maintenance/starboard) -"eDV" = ( -/obj/machinery/smartfridge/chemistry/virology/preloaded, -/turf/open/floor/iron/showroomfloor, -/area/medical/virology) "eEe" = ( /obj/effect/turf_decal/tile/blue/anticorner/contrasted{ dir = 4 @@ -32463,21 +31620,6 @@ }, /turf/open/floor/wood, /area/crew_quarters/heads/hop) -"eKb" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/sign/departments/minsky/medical/virology/virology1{ - pixel_x = 30 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/medical/medbay/central) "eKm" = ( /obj/structure/sign/poster/contraband/random, /turf/closed/wall, @@ -32491,6 +31633,15 @@ }, /turf/open/floor/iron, /area/security/courtroom) +"eKG" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/showroomfloor, +/area/science/shuttledock) "eLw" = ( /obj/machinery/vending/wardrobe/robo_wardrobe, /obj/effect/turf_decal/bot, @@ -32820,6 +31971,16 @@ /obj/effect/turf_decal/tile/yellow, /turf/open/floor/iron, /area/hallway/primary/starboard) +"ePU" = ( +/obj/structure/table, +/obj/item/storage/briefcase, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/security/courtroom) "eQh" = ( /obj/effect/turf_decal/box/corners{ dir = 4 @@ -32830,21 +31991,6 @@ }, /turf/open/floor/iron, /area/security/courtroom) -"eQi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/iron/showroomfloor, -/area/science/mixing) "eQm" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 @@ -32875,6 +32021,17 @@ /obj/effect/turf_decal/siding/white, /turf/open/floor/iron, /area/security/brig) +"eRf" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/iron/dark, +/area/science/mixing/chamber) "eRs" = ( /obj/machinery/firealarm{ dir = 1; @@ -33019,6 +32176,20 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/hallway/primary/aft) +"eTE" = ( +/obj/item/radio/intercom{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4; + color = "#439C1E" + }, +/obj/machinery/vending/medical, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/medical/virology) "eUe" = ( /obj/machinery/hydroponics/soil, /turf/open/floor/grass, @@ -33044,6 +32215,21 @@ }, /turf/open/floor/iron/dark, /area/crew_quarters/bar/atrium) +"eUz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron, +/area/hallway/primary/fore) "eUR" = ( /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /obj/structure/disposalpipe/segment{ @@ -33206,18 +32392,6 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark/corner, /area/hallway/primary/port) -"eXN" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/table, -/obj/machinery/airalarm/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bridge) "eXR" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -33235,6 +32409,15 @@ }, /turf/open/floor/iron, /area/quartermaster/office) +"eXX" = ( +/obj/machinery/door/poddoor/preopen{ + id = "transittube"; + name = "Transit Tube Blast Door" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/iron/dark, +/area/bridge) "eYc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/girder/displaced, @@ -33325,25 +32508,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/starboard) -"eZv" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Lockers"; - location = "Medical"; - name = "medical navigation beacon" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/iron, -/area/hallway/primary/fore) "fas" = ( /obj/machinery/light, /obj/structure/extinguisher_cabinet{ @@ -33362,6 +32526,32 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/hallway/primary/central) +"fba" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/window/southleft{ + name = "Cargo Disposal"; + req_access_txt = "50" + }, +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort2"; + name = "mail belt"; + pixel_y = 6 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/iron, +/area/quartermaster/sorting) "fbn" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -33387,18 +32577,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/medical/cryo) -"fcg" = ( -/obj/machinery/suit_storage_unit/atmos, -/obj/effect/turf_decal/delivery, -/obj/machinery/airalarm/directional/north, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/engine/atmos) "fch" = ( /obj/effect/turf_decal/loading_area{ dir = 1 @@ -33842,19 +33020,6 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/engine/atmos) -"fij" = ( -/obj/structure/table/wood, -/obj/item/storage/secure/briefcase{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/lockbox/medal, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/crew_quarters/heads/captain) "fir" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/corner{ @@ -33960,6 +33125,18 @@ }, /turf/open/floor/engine, /area/storage/tech) +"fjO" = ( +/obj/machinery/door/airlock/maintenance{ + name = "research Lab Maintenance"; + req_one_access_txt = "7;29" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/iron/dark, +/area/maintenance/starboard) "fjX" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -33981,16 +33158,11 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/security/execution/transfer) -"fku" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/airlock/maintenance/external{ - name = "construction Zone"; - req_access_txt = "32;47;48;37" +"fkv" = ( +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" }, -/turf/open/floor/iron/dark, -/area/construction/mining/aux_base) +/area/docking/arrival) "fkE" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -34043,6 +33215,22 @@ /obj/item/book/manual/wiki/sopengineering, /turf/open/floor/iron/dark, /area/crew_quarters/heads/chief) +"flc" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ + name = "euthanization chamber freezer" + }, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/science/xenobiology) "fll" = ( /obj/item/radio/intercom{ pixel_y = -28 @@ -34074,17 +33262,6 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/storage/satellite) -"flQ" = ( -/obj/machinery/rnd/production/protolathe/department/science, -/obj/effect/turf_decal/bot, -/obj/machinery/camera/directional/east{ - c_tag = "Research Lab"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark, -/area/science/lab) "flU" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 @@ -34224,32 +33401,6 @@ }, /turf/open/floor/iron/dark, /area/security/execution/transfer) -"foN" = ( -/obj/item/radio/intercom{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4; - color = "#439C1E" - }, -/obj/machinery/vending/medical, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/freezer, -/area/medical/virology) -"foR" = ( -/obj/structure/table, -/obj/item/aicard, -/obj/item/aiModule/reset, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/storage/tech) "fps" = ( /obj/structure/girder, /obj/effect/decal/cleanable/dirt, @@ -34257,6 +33408,25 @@ burnt = 1 }, /area/maintenance/starboard/fore) +"fpv" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Lockers"; + location = "Medical"; + name = "medical navigation beacon" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/iron, +/area/hallway/primary/fore) "fpC" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -34309,6 +33479,20 @@ /obj/item/pen/blue, /turf/open/floor/iron/dark, /area/security/brig/aft) +"fqq" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/spawner/structure/window/reinforced/prison, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" + }, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/security/prison) "fqB" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/tile/red/fourcorners/contrasted, @@ -34356,6 +33540,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/quartermaster/warehouse) +"frR" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron, +/area/hallway/secondary/exit/departure_lounge) "fsb" = ( /obj/structure/rack, /obj/effect/turf_decal/bot, @@ -34496,6 +33690,12 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/iron/dark, /area/maintenance/port/aft) +"ftV" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "ftX" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -34700,17 +33900,6 @@ }, /turf/open/floor/iron/dark, /area/hallway/primary/fore) -"fvY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/disposalpipe/sorting/unsorted/flip{ - dir = 2 - }, -/turf/open/floor/iron, -/area/hallway/primary/starboard) "fwE" = ( /obj/structure/table/optable, /obj/effect/turf_decal/box, @@ -34757,6 +33946,18 @@ }, /turf/open/floor/iron/showroomfloor, /area/crew_quarters/cryopods) +"fxP" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) "fxS" = ( /obj/structure/flora/grass/jungle, /obj/effect/turf_decal/sand/plating, @@ -34766,29 +33967,16 @@ initial_gas_mix = "o2=14;n2=23;TEMP=300" }, /area/maintenance/port/aft) +"fxT" = ( +/obj/structure/sign/poster/official/work_for_a_future, +/turf/closed/wall/r_wall, +/area/security/prison) "fxV" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 1 }, /turf/open/floor/iron/dark, /area/engine/atmos) -"fya" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced/prison, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/prison) "fyc" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/lootdrop/maintenance, @@ -34941,20 +34129,6 @@ }, /turf/open/floor/iron/dark, /area/medical/medbay/central) -"fAa" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/science/mixing) "fAx" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -34962,11 +34136,6 @@ /obj/item/stack/rods/ten, /turf/open/floor/plating, /area/maintenance/port/aft) -"fAI" = ( -/obj/machinery/chem_dispenser, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/medical/chemistry) "fAJ" = ( /obj/structure/sign/warning/biohazard, /turf/closed/wall, @@ -35024,6 +34193,22 @@ }, /turf/open/floor/iron/showroomfloor, /area/crew_quarters/toilet/restrooms) +"fBS" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark, +/area/medical/cryo) +"fBX" = ( +/obj/machinery/door/poddoor{ + id = "Arrival Shuttle Bay"; + name = "Arrival Shuttle Bay" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating/airless, +/area/docking/arrival) "fBY" = ( /obj/structure/sign/poster/contraband/random{ pixel_x = 32 @@ -35055,19 +34240,6 @@ burnt = 1 }, /area/maintenance/port/fore) -"fCh" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/item/radio/intercom{ - freerange = 1; - name = "Prison intercom"; - desc = "Talk through this. It looks like it has been modified to not broadcast."; - prison_radio = 1; - pixel_y = 25 - }, -/turf/open/floor/wood, -/area/security/prison) "fCk" = ( /obj/structure/table, /obj/item/storage/box/evidence{ @@ -35192,24 +34364,6 @@ burnt = 1 }, /area/maintenance/port/aft) -"fEU" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/science/mixing) "fFb" = ( /obj/machinery/light/small{ dir = 1 @@ -35294,6 +34448,15 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/engine/atmos) +"fGh" = ( +/obj/machinery/vending/tool, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/engine/engineering) "fGu" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/red/half/contrasted{ @@ -35326,37 +34489,6 @@ }, /turf/open/floor/iron/dark, /area/science/research) -"fGK" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/bot, -/obj/machinery/vending/wallmed/lite{ - pixel_y = 26 - }, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/iron/showroomfloor, -/area/security/main) -"fGT" = ( -/obj/machinery/vendor/mining, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/east, -/obj/machinery/status_display/supply{ - pixel_y = -32 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Mining Dock"; - name = "cargo camera"; - network = list("ss13","qm") - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/quartermaster/miningoffice) "fHc" = ( /obj/machinery/atmospherics/pipe/manifold/yellow/visible{ dir = 4 @@ -35682,15 +34814,6 @@ }, /turf/open/floor/iron/dark, /area/security/brig) -"fMu" = ( -/obj/machinery/door/airlock{ - id_tag = "Cell"; - name = "Cell 1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/iron/dark, -/area/security/prison) "fMC" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/stripes/line{ @@ -35873,18 +34996,6 @@ /obj/effect/turf_decal/tile/dark/opposingcorners, /turf/open/floor/plating, /area/medical/medbay/central) -"fOz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/landmark/xeno_spawn, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating{ - broken = 1 - }, -/area/maintenance/solars/starboard/fore) "fOQ" = ( /obj/structure/closet/crate, /obj/structure/grille/broken, @@ -36009,44 +35120,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/medical/medbay/lobby) -"fRD" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad"; - name = "off ramp" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Cargo Ramps"; - name = "cargo camera"; - network = list("ss13","qm") - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/quartermaster/storage) -"fRL" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/science/mixing) "fRS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/red/opposingcorners, @@ -36116,6 +35189,13 @@ }, /turf/open/floor/iron, /area/security/prison) +"fTl" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "fTm" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -36186,31 +35266,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/grass, /area/security/prison) -"fUL" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/light, -/obj/machinery/reagentgrinder{ - pixel_y = 5 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/machinery/newscaster{ - pixel_x = 32; - pixel_y = -30 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/science/xenobiology) "fVc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/chair/office{ @@ -36306,13 +35361,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/medical/genetics) -"fWI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plating, -/area/maintenance/port/aft) "fWQ" = ( /obj/structure/sign/poster/official/random{ pixel_x = -32 @@ -36375,40 +35423,6 @@ }, /turf/open/floor/iron, /area/engine/atmos) -"fXw" = ( -/obj/structure/sign/poster/official/work_for_a_future, -/turf/closed/wall/r_wall, -/area/security/prison) -"fXx" = ( -/obj/machinery/vending/tool, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/engine/engineering) -"fYi" = ( -/obj/machinery/light_switch{ - pixel_x = 24; - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/obj/structure/mirror{ - pixel_x = 26 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/camera{ - c_tag = "Recovery Room"; - name = "cloning camera"; - network = list("ss13","medical"); - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/medical/genetics/cloning) "fYn" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -36426,6 +35440,21 @@ /obj/structure/sign/warning/electricshock, /turf/closed/wall, /area/quartermaster/warehouse) +"fYt" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/security/prison) "fYG" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -36494,6 +35523,18 @@ burnt = 1 }, /area/maintenance/solars/starboard/fore) +"fZm" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/showroomfloor, +/area/medical/genetics) "fZv" = ( /obj/machinery/camera/directional/north{ c_tag = "Fore Hallway Diner"; @@ -36504,26 +35545,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/fore) -"fZD" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Departures Cargo Dock"; - name = "shuttle camera" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/docking/arrival) "fZO" = ( /obj/machinery/power/apc{ areastring = "/area/science/research"; @@ -36699,18 +35720,6 @@ /obj/effect/turf_decal/tile/blue, /turf/open/floor/iron, /area/hallway/primary/starboard) -"gcA" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera/directional/south{ - c_tag = "Atmospherics Desk"; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/engine/atmos) "gcE" = ( /obj/structure/girder, /obj/effect/decal/cleanable/dirt, @@ -36724,6 +35733,14 @@ burnt = 1 }, /area/maintenance/starboard) +"gcK" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/grass/jungle/b, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "gdc" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -37021,6 +36038,14 @@ }, /turf/open/floor/iron, /area/security/checkpoint/engineering) +"gjy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/atmos) "gjA" = ( /obj/effect/turf_decal/stripes/white/line{ dir = 4 @@ -37035,15 +36060,6 @@ /obj/effect/mapping_helpers/dead_body_placer/medbay_morgue, /turf/open/floor/iron/dark, /area/medical/morgue) -"gjM" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/bombcloset, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/science/mixing) "gkc" = ( /obj/structure/mirror{ pixel_y = 28 @@ -37187,17 +36203,6 @@ }, /turf/open/floor/grass, /area/security/prison) -"glZ" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced/prison, -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" - }, -/turf/open/floor/plating, -/area/security/prison) "gmI" = ( /obj/effect/landmark/event_spawn, /obj/structure/disposalpipe/segment{ @@ -37319,6 +36324,33 @@ burnt = 1 }, /area/maintenance/port/fore) +"goF" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the test chamber."; + dir = 8; + name = "Test Chamber Telescreen"; + network = list("toxins"); + pixel_x = 30 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/science/mixing) +"goJ" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/palebush, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "goK" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -37370,6 +36402,16 @@ broken = 1 }, /area/maintenance/port) +"goY" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/science/xenobiology) "gpc" = ( /obj/machinery/power/port_gen/pacman, /obj/effect/turf_decal/stripes/line{ @@ -37410,18 +36452,6 @@ }, /turf/open/floor/plating, /area/maintenance/aft) -"gqa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/engine/atmos) "gqA" = ( /obj/structure/chair/fancy/bench/right{ dir = 8 @@ -37514,15 +36544,6 @@ broken = 1 }, /area/maintenance/port) -"gsd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/door/poddoor/shutters{ - id = "explorerstorage"; - name = "Exploration Storage Shutter" - }, -/turf/open/floor/iron, -/area/quartermaster/exploration_dock) "gse" = ( /obj/effect/decal/cleanable/blood/old, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -37746,6 +36767,17 @@ }, /turf/open/floor/iron/showroomfloor, /area/security/main) +"gwU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "gxa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/yellow{ @@ -37759,27 +36791,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"gxd" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Cryopod Room APC"; - pixel_x = -24 - }, -/obj/structure/cable/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/crew_quarters/cryopods) "gxo" = ( /obj/machinery/camera/autoname/directional/south{ network = list("ss13", "prison") @@ -37817,6 +36828,22 @@ }, /turf/open/floor/iron, /area/crew_quarters/locker) +"gyf" = ( +/obj/machinery/digital_clock/directional/north, +/obj/machinery/camera{ + c_tag = "Medbay Lobby"; + name = "medical camera"; + network = list("ss13","medical"); + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-08" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/medical/medbay/lobby) "gyg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/corner{ @@ -37883,6 +36910,17 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/science/explab) +"gBt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown/half/contrasted, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/sorting/unsorted/flip{ + dir = 2 + }, +/turf/open/floor/iron, +/area/hallway/primary/starboard) "gBG" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 @@ -37912,17 +36950,6 @@ initial_gas_mix = "o2=14;n2=23;TEMP=300" }, /area/science/explab) -"gCu" = ( -/obj/effect/spawner/structure/window/reinforced/prison, -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/prison) "gCK" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -38063,6 +37090,16 @@ broken = 1 }, /area/maintenance/aft) +"gFI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/checkpoint/medical) "gFX" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -38121,16 +37158,6 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"gGW" = ( -/obj/structure/table, -/obj/item/storage/briefcase, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/security/courtroom) "gGY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/corner{ @@ -38251,16 +37278,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron/dark, /area/security/courtroom) -"gJj" = ( -/obj/machinery/door/poddoor/preopen{ - id = "transittube"; - name = "Transit Tube Blast Door" - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/iron/dark, -/area/bridge) "gJm" = ( /obj/item/shard, /obj/structure/grille/broken, @@ -38290,6 +37307,18 @@ }, /turf/open/floor/plating/asteroid/airless, /area/quartermaster/warehouse) +"gJC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/landmark/xeno_spawn, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating{ + broken = 1 + }, +/area/maintenance/solars/starboard/fore) "gKc" = ( /obj/effect/turf_decal/box, /obj/effect/turf_decal/stripes/corner{ @@ -38385,10 +37414,6 @@ broken = 1 }, /area/maintenance/starboard/aft) -"gLj" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/prison, -/area/security/prison) "gLn" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -38606,6 +37631,16 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/tcommsat/computer) +"gOI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/machinery/camera/directional/north{ + network = list("ss13", "prison") + }, +/turf/open/floor/wood, +/area/security/prison) "gPk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, @@ -38913,26 +37948,6 @@ /obj/effect/landmark/prisonspawn, /turf/open/floor/prison, /area/security/prison) -"gUp" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/light, -/obj/item/radio/intercom{ - pixel_y = -28 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/engine/atmos) "gUs" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/bot, @@ -38986,18 +38001,6 @@ luminosity = 2 }, /area/quartermaster/warehouse) -"gUQ" = ( -/obj/structure/curtain, -/obj/effect/turf_decal/delivery, -/obj/machinery/shower{ - dir = 4; - pixel_x = 8 - }, -/obj/structure/sign/poster/official/no_erp{ - pixel_x = -32 - }, -/turf/open/floor/noslip/white, -/area/security/prison) "gVy" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; @@ -39062,6 +38065,16 @@ }, /turf/open/floor/iron/showroomfloor, /area/crew_quarters/kitchen) +"gWv" = ( +/obj/machinery/door/airlock/maintenance{ + name = "kitchen Maintenance"; + req_access_txt = "28" + }, +/obj/structure/fans/tiny/invisible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/iron/dark, +/area/maintenance/central) "gWP" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ @@ -39208,23 +38221,21 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/hallway/primary/aft) -"gZW" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, +"gZP" = ( +/obj/structure/dresser, +/obj/machinery/button/door{ + id = "Cabin_1"; + name = "Cabin 1 Privacy Lock"; + normaldoorcontrol = 1; + pixel_y = 24; + specialfunctions = 4 + }, /obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/obj/effect/turf_decal/tile/neutral{ +/obj/effect/turf_decal/siding/wood{ dir = 4 }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/siding/white/corner{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/bridge) +/turf/open/floor/wood, +/area/crew_quarters/locker) "hak" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -39389,6 +38400,21 @@ }, /turf/open/floor/iron/dark, /area/maintenance/disposal/incinerator) +"hdY" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/power/apc/auto_name/directional/north{ + areastring = "/area/engine/supermatter" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/engine, +/area/engine/engineering) "hec" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 4 @@ -39452,20 +38478,6 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/ai_monitored/turret_protected/ai_upload) -"heu" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/plating/airless, -/area/docking/arrival) "heK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 5 @@ -39941,6 +38953,36 @@ /obj/effect/turf_decal/tile/red, /turf/open/floor/iron/showroomfloor, /area/crew_quarters/toilet/restrooms) +"hnE" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/showroomfloor, +/area/science/mixing/chamber) +"hnM" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/window/southright{ + name = "Cargo Disposal"; + req_access_txt = "50" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron, +/area/quartermaster/sorting) "hnP" = ( /obj/structure/table, /obj/item/clipboard{ @@ -40091,15 +39133,6 @@ }, /turf/open/floor/iron, /area/crew_quarters/fitness/recreation) -"hpy" = ( -/obj/effect/spawner/randomvend/snack, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) "hpC" = ( /obj/structure/girder, /obj/structure/grille/broken, @@ -40187,6 +39220,17 @@ burnt = 1 }, /area/maintenance/port/fore) +"hrb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Mailroom"; + req_access_txt = "50" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/quartermaster/sorting) "hrh" = ( /obj/effect/turf_decal/bot, /obj/machinery/disposal/bin, @@ -40465,6 +39509,15 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/hallway/primary/central) +"huI" = ( +/obj/machinery/airalarm/directional/east, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/iron, +/area/hallway/primary/aft) "huM" = ( /obj/structure/cable/yellow{ icon_state = "1-8" @@ -40503,16 +39556,22 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/hallway/primary/central) -"hvl" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted{ +"hwl" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 4 }, +/obj/effect/turf_decal/tile/blue/opposingcorners, /obj/structure/cable/yellow{ - icon_state = "0-2" + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 2 }, -/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/showroomfloor, -/area/science/shuttledock) +/area/medical/medbay/central) "hwo" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -40773,13 +39832,6 @@ }, /turf/open/floor/iron, /area/quartermaster/exploration_dock) -"hzI" = ( -/obj/machinery/door/airlock{ - id_tag = "Cell"; - name = "Cell 1" - }, -/turf/open/floor/iron/dark, -/area/security/prison) "hzJ" = ( /obj/effect/turf_decal/caution/stand_clear, /obj/machinery/door/firedoor, @@ -40815,6 +39867,22 @@ }, /turf/open/floor/plating, /area/quartermaster/warehouse) +"hAm" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Recovery Room"; + name = "geneticscamera"; + network = list("ss13","medical") + }, +/turf/open/floor/iron/showroomfloor, +/area/medical/genetics) "hAu" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/delivery, @@ -40869,22 +39937,6 @@ luminosity = 2 }, /area/ai_monitored/turret_protected/aisat_interior) -"hBS" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/radio/intercom{ - pixel_x = 28 - }, -/obj/structure/sign/painting/library{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral/opposingcorners, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/library) "hBV" = ( /obj/structure/flora/grass/jungle/b, /obj/structure/flora/ausbushes/sparsegrass, @@ -40903,6 +39955,39 @@ /obj/effect/turf_decal/tile/red/opposingcorners, /turf/open/floor/iron/showroomfloor, /area/crew_quarters/bar/atrium) +"hCR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/iron, +/area/engine/atmos) +"hCT" = ( +/obj/machinery/computer/cargo, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/east, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + name = "Quartermaster RC"; + pixel_y = 30 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + pixel_y = 28 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/quartermaster/qm) "hDf" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ dir = 1 @@ -41320,6 +40405,17 @@ }, /turf/open/floor/iron, /area/hallway/primary/starboard) +"hIf" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron, +/area/engine/atmos) "hIi" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/disposalpipe/junction/flip, @@ -41371,6 +40467,14 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) +"hIU" = ( +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/science/mixing/chamber) "hIX" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -41492,14 +40596,6 @@ burnt = 1 }, /area/maintenance/central) -"hKu" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/computer/atmos_alert, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/engine/atmos) "hKw" = ( /obj/machinery/atmospherics/components/binary/pump/on{ dir = 8; @@ -41686,25 +40782,6 @@ }, /turf/open/floor/wood, /area/crew_quarters/heads/hos) -"hNj" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "47"; - name = "science Aft Maintenance Access" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/maintenance/starboard/fore) "hNA" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -41752,6 +40829,11 @@ }, /turf/open/floor/iron/showroomfloor, /area/medical/medbay/central) +"hOJ" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/engine/atmos) "hPw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/firecloset, @@ -41889,22 +40971,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) -"hSb" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/opposingcorners, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/iron/showroomfloor, -/area/medical/medbay/central) "hSc" = ( /obj/structure/disposalpipe/sorting/mail/flip{ dir = 8; @@ -42216,10 +41282,6 @@ }, /turf/open/floor/iron/dark, /area/science/aft) -"hWT" = ( -/obj/machinery/smartfridge/chemistry/preloaded, -/turf/open/floor/iron/showroomfloor, -/area/medical/chemistry) "hWU" = ( /obj/effect/turf_decal/stripes/white/line{ dir = 1 @@ -42281,15 +41343,6 @@ /obj/effect/turf_decal/tile/red, /turf/open/floor/iron, /area/hallway/primary/fore) -"hYi" = ( -/obj/effect/turf_decal/siding/wood/end, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood{ - broken = 1 - }, -/area/crew_quarters/bar) "hYs" = ( /obj/machinery/portable_atmospherics/scrubber, /obj/machinery/firealarm{ @@ -42315,23 +41368,6 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/science/research) -"hYV" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/airlock_painter{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/airlock_painter, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/engine/break_room) "hYW" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -42344,16 +41380,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/crew_quarters/toilet/restrooms) -"hZh" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/wood, -/area/security/prison) "hZo" = ( /obj/effect/landmark/blobstart, /obj/effect/landmark/xeno_spawn, @@ -42418,6 +41444,19 @@ }, /turf/open/floor/iron/dark, /area/teleporter) +"hZG" = ( +/obj/machinery/door/airlock/maintenance{ + name = "hydroponics Maintenance"; + req_access_txt = "35" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/maintenance/central) "iaj" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -42524,6 +41563,15 @@ burnt = 1 }, /area/maintenance/aft) +"ibO" = ( +/obj/machinery/vending/assist, +/obj/effect/turf_decal/delivery, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/storage/primary) "icj" = ( /obj/effect/turf_decal/delivery, /obj/machinery/processor, @@ -42710,6 +41758,23 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/hallway/primary/aft) +"igu" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/airlock_painter{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/airlock_painter, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark, +/area/engine/break_room) "igG" = ( /obj/effect/turf_decal/delivery, /obj/machinery/light{ @@ -42900,21 +41965,18 @@ }, /turf/open/floor/iron/dark, /area/hallway/primary/starboard) -"ikT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 +"ikS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast Door" }, +/obj/structure/cable/yellow, /obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 + icon_state = "0-2" }, -/turf/open/floor/iron/showroomfloor, -/area/science/research) +/turf/open/floor/plating, +/area/bridge) "ikV" = ( /obj/structure/chair/office, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -42941,6 +42003,16 @@ /obj/effect/turf_decal/tile/neutral/anticorner/contrasted, /turf/open/floor/iron/dark, /area/hydroponics) +"ilv" = ( +/obj/effect/turf_decal/tile/dark_green/half/contrasted, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/showroomfloor, +/area/medical/medbay/central) "ilw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/yellow{ @@ -43075,16 +42147,6 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/storage) -"iod" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/science/shuttledock) "iok" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/old, @@ -43122,6 +42184,16 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/storage) +"iox" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/airalarm/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Port Hallway Chemistry Desk"; + name = "port camera" + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/port) "ipc" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -43207,6 +42279,33 @@ burnt = 1 }, /area/maintenance/port/fore) +"iqP" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/machinery/disposal/deliveryChute{ + dir = 4; + pixel_x = -8; + pixel_y = -2; + name = "evidence delivery chute" + }, +/obj/machinery/door/window/brigdoor/eastright{ + req_one_access_txt = "1"; + name = "evidence Access" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/prison) "irf" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -43339,23 +42438,6 @@ }, /turf/open/floor/plating, /area/quartermaster/warehouse) -"iuC" = ( -/obj/machinery/button/door{ - id = "quarantineshutters"; - name = "Quarantine Lockdown"; - req_access_txt = "39"; - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4; - color = "#439C1E" - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet, -/turf/open/floor/iron/freezer, -/area/medical/virology) "iuE" = ( /obj/effect/turf_decal/tile/black/fourcorners, /obj/effect/turf_decal/stripes/line{ @@ -43420,6 +42502,28 @@ }, /turf/open/floor/iron/dark, /area/engine/atmos) +"ivI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/iron, +/area/quartermaster/exploration_dock) "iwl" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall, @@ -43458,18 +42562,6 @@ /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron/showroomfloor, /area/security/main) -"iwX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron/dark, -/area/medical/morgue) "ixg" = ( /obj/effect/turf_decal/tile/blue, /obj/structure/cable/yellow{ @@ -43490,24 +42582,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/science/robotics/lab) -"ixr" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/storage/belt/utility, -/obj/item/weldingtool/largetank, -/obj/item/clothing/head/utility/welding, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/engine/atmos) "iyn" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -43525,31 +42599,6 @@ /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, /area/library) -"iyS" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/landmark/start/assistant, -/obj/structure/chair/fancy/corp{ - dir = 8 - }, -/obj/effect/turf_decal/tile/dark/opposingcorners, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/iron/dark, -/area/medical/medbay/lobby) -"iyU" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/obj/machinery/camera/directional/north{ - network = list("ss13", "prison") - }, -/turf/open/floor/wood, -/area/security/prison) "iza" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -43668,12 +42717,6 @@ }, /turf/open/floor/iron/dark, /area/crew_quarters/bar) -"iAD" = ( -/obj/effect/turf_decal/siding/wood, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/wood, -/area/security/prison) "iAH" = ( /obj/structure/table/wood, /obj/item/clipboard, @@ -43942,16 +42985,6 @@ burnt = 1 }, /area/maintenance/solars/starboard/aft) -"iDr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/engine/engineering) "iDH" = ( /obj/structure/cable/yellow{ icon_state = "1-4" @@ -44130,16 +43163,6 @@ }, /turf/open/floor/iron, /area/engine/atmos) -"iGF" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/engine/atmos) "iGO" = ( /obj/effect/turf_decal/sand/plating, /turf/open/floor/plating/asteroid/airless, @@ -44165,14 +43188,6 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/warehouse) -"iHn" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/food/donut, -/obj/effect/turf_decal/tile/red/fourcorners/contrasted, -/obj/item/radio/headset/headset_sec, -/turf/open/floor/iron, -/area/security/brig) "iHy" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/disposalpipe/segment, @@ -44220,18 +43235,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) -"iIj" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/effect/landmark/prisonspawn, -/turf/open/floor/prison, -/area/security/prison) "iIt" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/turf_decal/tile/neutral{ @@ -44315,24 +43318,6 @@ }, /turf/open/floor/iron, /area/crew_quarters/heads/chief) -"iJp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/iron/showroomfloor, -/area/medical/medbay/lobby) "iJy" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -44417,10 +43402,6 @@ }, /turf/open/floor/iron/freezer, /area/medical/virology) -"iKB" = ( -/obj/machinery/smartfridge, -/turf/open/floor/iron/showroomfloor, -/area/crew_quarters/kitchen) "iKN" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -44557,6 +43538,14 @@ }, /turf/open/floor/iron/showroomfloor, /area/science/xenobiology) +"iMp" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/iron, +/area/engine/atmos) "iMD" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -45153,6 +44142,15 @@ }, /turf/open/floor/iron/dark, /area/security/brig) +"iVR" = ( +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/tile/dark/half{ + dir = 4 + }, +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/iron/dark, +/area/medical/medbay/central) "iWi" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -45184,11 +44182,21 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/hallway/primary/starboard) -"iWQ" = ( -/obj/structure/table/wood, -/obj/item/clothing/neck/tie/red, -/turf/open/floor/prison, -/area/security/prison) +"iWX" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/iron, +/area/engine/atmos) "iXy" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/dirt, @@ -45210,6 +44218,12 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron, /area/security/checkpoint/medical) +"iXH" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/prison, +/area/security/prison) "iXL" = ( /obj/machinery/suit_storage_unit/security, /obj/effect/turf_decal/delivery, @@ -45296,6 +44310,19 @@ }, /turf/open/floor/iron, /area/crew_quarters/locker) +"iZU" = ( +/obj/machinery/door/airlock/maintenance/external{ + name = "exploration Maintenance Access"; + req_one_access_txt = "49" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/exploration_dock) "iZY" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ @@ -45312,20 +44339,6 @@ }, /turf/open/floor/plating, /area/quartermaster/warehouse) -"jat" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/ore_box, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/advanced_airlock_controller{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/dark, -/area/quartermaster/miningoffice) "jaO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/grille/broken, @@ -45369,6 +44382,19 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/hallway/primary/starboard) +"jbm" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/radio/intercom{ + freerange = 1; + name = "Prison intercom"; + desc = "Talk through this. It looks like it has been modified to not broadcast."; + prison_radio = 1; + pixel_y = 25 + }, +/turf/open/floor/wood, +/area/security/prison) "jbV" = ( /obj/machinery/light/small{ dir = 1 @@ -45481,6 +44507,11 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/qm) +"jdh" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/iron/dark, +/area/engine/atmos) "jdF" = ( /obj/effect/turf_decal/guideline/guideline_edge_alt/blue{ color = "#FFFFFF" @@ -45636,21 +44667,6 @@ }, /turf/open/floor/iron, /area/engine/engineering) -"jfo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron, -/area/hallway/primary/fore) "jfz" = ( /obj/item/storage/box/firingpins, /obj/structure/table, @@ -45769,6 +44785,10 @@ broken = 1 }, /area/maintenance/starboard/fore) +"jhM" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall, +/area/docking/arrival) "jie" = ( /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/unres{ @@ -46030,6 +45050,20 @@ }, /turf/open/floor/iron, /area/quartermaster/sorting) +"jlQ" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 3; + height = 15; + id = "arrivals_stationary"; + name = "kilo arrivals"; + roundstart_template = /datum/map_template/shuttle/arrival/kilo; + width = 7 + }, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "jlV" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable/yellow{ @@ -46147,6 +45181,24 @@ burnt = 1 }, /area/maintenance/fore) +"jns" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/showroomfloor, +/area/science/research) "joe" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 @@ -46292,19 +45344,6 @@ }, /turf/open/floor/iron, /area/engine/atmos) -"jpl" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/item/taperecorder{ - pixel_y = -15 - }, -/obj/item/flashlight/lamp{ - pixel_y = 7 - }, -/turf/open/floor/iron/dark, -/area/security/brig/aft) "jpr" = ( /obj/structure/chair/fancy/bench/pew/left{ dir = 8 @@ -46518,13 +45557,18 @@ }, /turf/open/floor/iron/dark, /area/security/execution/education) -"jrQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +"jsd" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/camera/directional/south{ + c_tag = "Atmospherics Desk"; + name = "atmospherics camera"; + network = list("ss13","engine") }, -/turf/open/floor/iron/freezer, -/area/security/prison) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/engine/atmos) "jse" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -46556,6 +45600,19 @@ broken = 1 }, /area/maintenance/port) +"jsE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/showroomfloor, +/area/science/xenobiology) "jsF" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -46862,6 +45919,18 @@ /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, /area/ai_monitored/storage/eva) +"jws" = ( +/obj/machinery/door/airlock/maintenance{ + name = "chapel Maintenance"; + req_one_access_txt = "22" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/iron/dark, +/area/maintenance/fore) "jxi" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/disposalpipe/segment, @@ -47207,21 +46276,21 @@ }, /turf/open/floor/iron/dark, /area/security/courtroom) -"jBB" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"jBU" = ( +/obj/machinery/light/small{ + dir = 1 }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 +/obj/structure/mirror{ + pixel_x = 25; + pixel_y = 4 }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/iron, -/area/hallway/secondary/exit/departure_lounge) +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/freezer, +/area/security/prison) "jCh" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/noticeboard{ @@ -47232,6 +46301,23 @@ broken = 1 }, /area/quartermaster/warehouse) +"jCj" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced/prison, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/prison) "jCm" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -47432,6 +46518,16 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/storage/eva) +"jFE" = ( +/obj/item/target/clown, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/camera/preset/toxins{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/science/test_area) "jFN" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/yellow{ @@ -47767,23 +46863,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"jKY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "prison Processing"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/security/prison) "jLm" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 @@ -47931,19 +47010,6 @@ burnt = 1 }, /area/maintenance/port/aft) -"jNT" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron/showroomfloor, -/area/science/xenobiology) "jNU" = ( /turf/open/floor/plating{ broken = 1 @@ -48002,6 +47068,22 @@ }, /turf/open/floor/prison, /area/security/prison) +"jOJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/checkpoint/medical) +"jOP" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast Door" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/iron/dark, +/area/bridge) "jPn" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -48050,6 +47132,19 @@ broken = 1 }, /area/maintenance/aft) +"jQu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/flora/ausbushes/palebush, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "jQD" = ( /obj/machinery/airalarm/directional/south{ pixel_y = -22 @@ -48104,16 +47199,24 @@ /obj/effect/turf_decal/tile/purple, /turf/open/floor/iron, /area/quartermaster/exploration_dock) -"jRE" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/door/poddoor/shutters{ - id = "explorerstorage"; - name = "Exploration Storage Shutter" +"jRT" = ( +/obj/structure/lattice/catwalk, +/obj/item/stack/marker_beacon{ + anchored = 1; + icon_state = "markerburgundy-on"; + light_color = "#FA644B"; + light_power = 3; + light_range = 2; + name = "landing marker"; + picked_color = "Burgundy" }, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/iron, -/area/quartermaster/exploration_dock) +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "jSa" = ( /obj/machinery/meter/atmos/distro_loop, /obj/machinery/atmospherics/pipe/manifold/supply/visible{ @@ -48136,18 +47239,19 @@ }, /turf/open/floor/iron, /area/security/brig/aft) -"jSl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ +"jSh" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/atmos_control, +/obj/machinery/light{ dir = 1 }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 +/obj/machinery/newscaster{ + pixel_y = 30 }, -/turf/open/floor/iron, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, /area/engine/atmos) "jSv" = ( /obj/effect/turf_decal/stripes/line{ @@ -48325,6 +47429,12 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/security/brig) +"jVa" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/security/prison) "jVj" = ( /obj/structure/sign/warning/electricshock{ pixel_x = -32 @@ -48404,34 +47514,6 @@ }, /turf/open/floor/iron, /area/crew_quarters/locker) -"jWg" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "quarantineshutters"; - name = "Isolation Shutters" - }, -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor{ - name = "Virology Desk"; - req_access_txt = "39"; - dir = 4 - }, -/obj/item/storage/box/masks, -/obj/item/reagent_containers/glass/bottle/spaceacillin{ - pixel_x = 2; - pixel_y = -1 - }, -/obj/item/reagent_containers/food/drinks/bottle/virusfood{ - pixel_x = -9; - pixel_y = 5 - }, -/obj/structure/desk_bell{ - pixel_x = -8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/virology) "jWl" = ( /obj/effect/turf_decal/bot, /obj/machinery/holopad, @@ -48572,6 +47654,20 @@ /obj/structure/bodycontainer/morgue, /turf/open/floor/iron/dark, /area/medical/morgue) +"jYB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "jYN" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -48749,6 +47845,18 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/ai_monitored/storage/eva) +"kbt" = ( +/obj/machinery/door/airlock/maintenance{ + name = "cargo Maintenance"; + req_one_access_txt = "31;48" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/iron/dark, +/area/maintenance/starboard/aft) "kbz" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -48838,6 +47946,16 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/hallway/primary/central) +"kcs" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "kcu" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -48874,24 +47992,6 @@ }, /turf/open/floor/iron/dark, /area/medical/storage) -"kcD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/airalarm/server{ - dir = 8; - pixel_x = -28 - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/iron/dark/telecomms, -/area/quartermaster/exploration_prep) "kcS" = ( /obj/structure/chair/office{ dir = 8 @@ -48900,14 +48000,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/iron/dark, /area/security/execution/transfer) -"kcT" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/engine/atmos) "kcV" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 6 @@ -48953,6 +48045,27 @@ }, /turf/open/floor/iron/dark, /area/crew_quarters/heads/captain) +"kdV" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Cryopod Room APC"; + pixel_x = -24 + }, +/obj/structure/cable/yellow, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/showroomfloor, +/area/crew_quarters/cryopods) "keb" = ( /obj/effect/landmark/start/cargo_technician, /obj/structure/chair/office{ @@ -49131,16 +48244,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/engine/atmos) -"kiE" = ( -/obj/machinery/door/poddoor/preopen{ - id = "transittube"; - name = "Transit Tube Blast Door" - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/turf/open/floor/iron/dark, -/area/bridge) "kiJ" = ( /obj/structure/sign/warning/docking, /turf/closed/wall/r_wall, @@ -49189,6 +48292,38 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) +"kjO" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/analyzer{ + desc = "A sophisticated analyzer capable of analyzing cryptic subspace wavelengths. Shifted slightly right."; + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/stock_parts/subspace/analyzer{ + desc = "A sophisticated analyzer capable of analyzing cryptic subspace wavelengths. Shifted slightly right."; + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/stock_parts/subspace/analyzer{ + desc = "A sophisticated analyzer capable of analyzing cryptic subspace wavelengths. Shifted slightly right."; + pixel_x = 6; + pixel_y = 4 + }, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/storage/tcom) "kjW" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -49436,6 +48571,22 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron/dark, /area/security/brig/aft) +"kmq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/grass/jungle, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "kmv" = ( /obj/machinery/newscaster{ pixel_y = 30 @@ -49473,6 +48624,15 @@ /obj/effect/turf_decal/tile/neutral/anticorner/contrasted, /turf/open/floor/iron/dark, /area/quartermaster/office) +"kny" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast Door" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/bridge) "knJ" = ( /obj/structure/bodycontainer/morgue, /obj/effect/turf_decal/bot_white, @@ -49505,6 +48665,19 @@ }, /turf/open/floor/iron, /area/hallway/primary/fore) +"knO" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Aft Hallway Transfer Centre Doors"; + name = "aft camera" + }, +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron, +/area/hallway/primary/aft) "knS" = ( /obj/effect/spawner/randomarcade, /obj/effect/turf_decal/bot, @@ -49646,6 +48819,35 @@ }, /turf/open/floor/iron/dark, /area/security/courtroom) +"kpT" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/stack/marker_beacon{ + anchored = 1; + icon_state = "markerburgundy-on"; + light_color = "#FA644B"; + light_power = 3; + light_range = 2; + name = "landing marker"; + picked_color = "Burgundy" + }, +/obj/machinery/button/door{ + id = "Arrival Shuttle Bay"; + name = "Arrival Shuttle Bay Toggle"; + pixel_x = 24; + pixel_y = 8; + req_access_txt = "19" + }, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "kpU" = ( /obj/structure/table/wood, /obj/item/food/grown/flower/lily{ @@ -49899,6 +49101,16 @@ "ktS" = ( /turf/closed/wall, /area/science/shuttledock) +"ktT" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/iron/showroomfloor, +/area/science/shuttledock) "ktV" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -49920,6 +49132,9 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) +"ktZ" = ( +/turf/closed/wall, +/area/docking/arrival) "kuH" = ( /obj/effect/turf_decal/loading_area{ dir = 1 @@ -49950,18 +49165,6 @@ broken = 1 }, /area/maintenance/port/aft) -"kuW" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/engine/atmos) "kvl" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -50292,13 +49495,6 @@ }, /turf/open/floor/iron/dark, /area/bridge) -"kAM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plating, -/area/maintenance/port/aft) "kBa" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 @@ -50407,15 +49603,6 @@ /obj/effect/turf_decal/stripes/corner, /turf/open/floor/plating, /area/quartermaster/warehouse) -"kCN" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/engine/atmos) "kCW" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/dirt, @@ -50517,28 +49704,14 @@ }, /turf/open/floor/iron/dark, /area/security/execution/education) -"kEg" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/advanced_airlock_controller{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating{ - broken = 1 +"kEh" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/oil, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" }, -/area/maintenance/solars/starboard/fore) +/area/docking/arrival) "kEq" = ( /obj/structure/table/reinforced, /obj/item/clothing/gloves/color/black, @@ -50614,6 +49787,29 @@ burnt = 1 }, /area/maintenance/disposal) +"kFS" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigfrontdoor"; + name = "Front Security Blast Door" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron/dark, +/area/security/brig) "kFU" = ( /obj/machinery/light/small{ dir = 8 @@ -50647,17 +49843,6 @@ burnt = 1 }, /area/maintenance/port/fore) -"kGN" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced/prison, -/turf/open/floor/plating, -/area/security/prison) "kGP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/yellow{ @@ -50787,6 +49972,31 @@ }, /turf/open/floor/iron, /area/crew_quarters/locker) +"kKd" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/poddoor/preopen{ + id = "brigfrontdoor"; + name = "Aft Security Blast Door" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/airlock/security{ + name = "Brig Port Wing"; + req_one_access_txt = "1;4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/brig/aft) "kKJ" = ( /obj/machinery/atmospherics/pipe/manifold/cyan/visible, /obj/machinery/meter, @@ -50952,18 +50162,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/security/warden) -"kNZ" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/obj/structure/table/optable, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom{ - pixel_y = -25 - }, -/obj/machinery/light/small, -/turf/open/floor/iron/showroomfloor, -/area/security/main) "kOa" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -51264,6 +50462,17 @@ }, /turf/open/floor/iron/dark, /area/crew_quarters/locker) +"kTA" = ( +/obj/machinery/computer/message_monitor, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/east, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/tcommsat/computer) "kTD" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -51437,6 +50646,15 @@ burnt = 1 }, /area/security/execution/education) +"kVs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/door/airlock/public/glass{ + name = "visitation Area" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/hallway/primary/aft) "kVz" = ( /obj/item/pickaxe, /obj/effect/turf_decal/stripes/line{ @@ -51494,6 +50712,28 @@ }, /turf/open/floor/iron, /area/engine/break_room) +"kXg" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/machinery/power/apc/auto_name/directional/east{ + name = "Cloning APC" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/paper/guides/jobs/medical/cloning, +/obj/item/book/manual/wiki/medical_cloning{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/crowbar, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron/showroomfloor, +/area/medical/genetics/cloning) "kXz" = ( /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ dir = 4 @@ -51655,6 +50895,25 @@ }, /turf/open/floor/iron, /area/security/brig/aft) +"laT" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/iron, +/area/quartermaster/sorting) "laZ" = ( /obj/effect/turf_decal/loading_area{ dir = 8 @@ -51710,22 +50969,6 @@ burnt = 1 }, /area/maintenance/port/fore) -"lbW" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/window/southright{ - name = "Cargo Disposal"; - req_access_txt = "50" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/quartermaster/sorting) "lda" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -51751,17 +50994,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"ldk" = ( -/obj/effect/turf_decal/siding/wood/end{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/wood, -/area/library) "ldu" = ( /obj/structure/table/reinforced, /obj/item/wirecutters{ @@ -51806,6 +51038,19 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/science/mixing) +"ldw" = ( +/obj/item/kirbyplants{ + icon_state = "plant-08" + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = 24 + }, +/turf/open/floor/iron/showroomfloor, +/area/medical/medbay/central) "ldy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/event_spawn, @@ -51949,6 +51194,21 @@ }, /turf/open/floor/iron/showroomfloor, /area/medical/surgery) +"lfe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/r_wall, +/area/security/prison) +"lfi" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/atmos) "lfn" = ( /obj/effect/turf_decal/delivery, /obj/machinery/space_heater, @@ -51960,25 +51220,6 @@ }, /turf/open/floor/iron/dark, /area/hallway/primary/aft) -"lfu" = ( -/obj/machinery/door/airlock/maintenance{ - name = "brig Maintenance"; - req_one_access_txt = "63" - }, -/obj/structure/sign/directions/evac{ - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron/dark, -/area/security/brig) "lfO" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 4 @@ -51997,31 +51238,6 @@ burnt = 1 }, /area/maintenance/port) -"lfY" = ( -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/poddoor/preopen{ - id = "brigfrontdoor"; - name = "Aft Security Blast Door" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/airlock/security{ - name = "Brig Port Wing"; - req_one_access_txt = "1;4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/security/brig/aft) "lga" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -52061,19 +51277,6 @@ broken = 1 }, /area/maintenance/starboard/aft) -"lgC" = ( -/obj/machinery/door/airlock/maintenance{ - name = "bar Maintenance"; - req_access_txt = "25" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/maintenance/central) "lgI" = ( /obj/machinery/computer/security{ dir = 4 @@ -52238,16 +51441,6 @@ burnt = 1 }, /area/maintenance/port/aft) -"lig" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/hallway/secondary/exit/departure_lounge) "lii" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -52397,6 +51590,10 @@ }, /turf/open/floor/iron/dark, /area/security/execution/education) +"lkt" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/turf/open/floor/iron/showroomfloor, +/area/medical/chemistry) "lkA" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -52459,22 +51656,6 @@ }, /turf/open/floor/iron/dark, /area/crew_quarters/heads/hor) -"llQ" = ( -/obj/structure/table, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 6 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -6 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/machinery/airalarm/directional/west{ - pixel_x = -22 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/engine/atmos) "llX" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -52497,6 +51678,25 @@ burnt = 1 }, /area/maintenance/starboard/fore) +"lmn" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 1; + color = "#439C1E" + }, +/obj/machinery/power/apc/auto_name/directional/north{ + name = "Virology Lab APC" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/medical/virology) "lmw" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -52612,6 +51812,25 @@ burnt = 1 }, /area/maintenance/port/fore) +"lnX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/heavy, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/research/glass{ + name = "exploration Shuttle Dock"; + req_one_access_txt = "49" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron/showroomfloor, +/area/quartermaster/exploration_prep) "lnY" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -52783,6 +52002,27 @@ broken = 1 }, /area/maintenance/central) +"lqe" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad"; + name = "off ramp" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Cargo Ramps"; + name = "cargo camera"; + network = list("ss13","qm") + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/quartermaster/storage) "lqv" = ( /obj/structure/table/wood/fancy, /obj/item/flashlight/lantern, @@ -52910,18 +52150,21 @@ }, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) -"lte" = ( -/obj/item/bedsheet/medical, -/obj/structure/curtain, -/obj/structure/bed, -/obj/effect/turf_decal/tile/dark_green/anticorner/contrasted{ +"lsO" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2"; + name = "mail belt" + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 2 }, -/turf/open/floor/iron/showroomfloor, -/area/medical/virology) +/turf/open/floor/iron/dark, +/area/quartermaster/sorting) "lti" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=4"; @@ -53343,16 +52586,6 @@ broken = 1 }, /area/maintenance/starboard/fore) -"lAr" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/air, -/obj/item/wrench, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/quartermaster/miningoffice) "lAw" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -53521,6 +52754,23 @@ }, /turf/open/floor/iron, /area/hallway/primary/fore) +"lDd" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/bridge) "lDf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/bot, @@ -53564,9 +52814,6 @@ dir = 1 }, /area/hallway/primary/port) -"lDt" = ( -/turf/closed/wall, -/area/security/prison) "lDu" = ( /obj/machinery/light, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -53810,16 +53057,14 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron/dark, /area/science/research) -"lGT" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 +"lGS" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/flora/grass/jungle, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" }, -/turf/open/floor/iron/dark, -/area/engine/atmos) +/area/docking/arrival) "lHq" = ( /turf/open/floor/iron/showroomfloor, /area/medical/medbay/central) @@ -53977,56 +53222,6 @@ }, /turf/open/floor/iron/dark, /area/science/lab) -"lLr" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/neutral/opposingcorners, -/obj/machinery/disposal/deliveryChute{ - dir = 4; - pixel_x = -8; - pixel_y = -2; - name = "evidence delivery chute" - }, -/obj/machinery/door/window/brigdoor/eastright{ - req_one_access_txt = "1"; - name = "evidence Access" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/prison) -"lLt" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/opposingcorners, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron, -/area/security/main) "lLA" = ( /obj/effect/landmark/event_spawn, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ @@ -54215,6 +53410,26 @@ /obj/effect/turf_decal/tile/red/opposingcorners, /turf/open/floor/iron/showroomfloor, /area/crew_quarters/bar/atrium) +"lOl" = ( +/obj/item/bedsheet/medical, +/obj/structure/curtain, +/obj/structure/bed, +/obj/effect/turf_decal/tile/dark_green/anticorner/contrasted, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/showroomfloor, +/area/medical/virology) +"lOO" = ( +/obj/machinery/door/airlock/maintenance{ + name = "atmospherics Maintenance"; + req_access_txt = "24" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/iron/dark, +/area/maintenance/aft) "lOX" = ( /obj/effect/turf_decal/stripes/end, /obj/effect/decal/cleanable/dirt, @@ -54272,6 +53487,27 @@ /obj/effect/turf_decal/tile/yellow/opposingcorners, /turf/open/floor/iron/showroomfloor, /area/engine/break_room) +"lPJ" = ( +/obj/machinery/computer/upload/ai, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "Upload Console Window"; + req_access_txt = "16" + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) "lQc" = ( /obj/effect/turf_decal/loading_area, /obj/structure/cable/yellow{ @@ -54376,6 +53612,20 @@ }, /turf/open/floor/iron, /area/security/courtroom) +"lRw" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced/prison, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/prison) "lRD" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -54423,6 +53673,12 @@ burnt = 1 }, /area/maintenance/central) +"lSb" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/engine/atmos) "lSe" = ( /obj/effect/turf_decal/stripes/corner, /obj/effect/turf_decal/stripes/corner{ @@ -54458,6 +53714,19 @@ }, /turf/open/floor/iron/dark, /area/crew_quarters/bar) +"lSt" = ( +/obj/machinery/door/airlock/maintenance{ + name = "command Maintenance"; + req_one_access_txt = "17;19" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/maintenance/central) "lSB" = ( /obj/effect/landmark/start/bartender, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, @@ -54486,6 +53755,23 @@ /obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall/rust, /area/maintenance/solars/starboard/fore) +"lTO" = ( +/obj/machinery/button/door{ + id = "quarantineshutters"; + name = "Quarantine Lockdown"; + req_access_txt = "39"; + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4; + color = "#439C1E" + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/disposaloutlet, +/turf/open/floor/iron/freezer, +/area/medical/virology) "lTR" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; @@ -54536,43 +53822,12 @@ }, /turf/open/floor/iron, /area/hallway/primary/fore) -"lUB" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating{ - broken = 1 - }, -/area/maintenance/starboard) "lUD" = ( /obj/structure/sign/departments/security{ pixel_x = -32 }, /turf/closed/wall, /area/hallway/primary/aft) -"lUJ" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/machinery/airalarm/directional/east, -/obj/structure/sign/warning/vacuum{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/fore) "lUS" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 4 @@ -54695,6 +53950,24 @@ }, /turf/open/floor/iron/showroomfloor, /area/medical/medbay/central) +"lXi" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/storage/belt/utility, +/obj/item/weldingtool/largetank, +/obj/item/clothing/head/utility/welding, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/engine/atmos) "lXm" = ( /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ dir = 1 @@ -54874,14 +54147,6 @@ /obj/effect/turf_decal/tile/neutral/anticorner/contrasted, /turf/open/floor/iron/dark, /area/crew_quarters/bar/atrium) -"lZK" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer, -/obj/effect/turf_decal/tile/dark/opposingcorners, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/medical/cryo) "lZN" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -54953,6 +54218,17 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/security/main) +"mbl" = ( +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/airlock/security{ + aiControlDisabled = 1; + id_tag = "prisonereducation"; + name = "Prison Access"; + req_access_txt = "2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/security/prison) "mbs" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/poster/contraband/random{ @@ -55197,14 +54473,6 @@ /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/showroomfloor, /area/engine/atmos) -"meO" = ( -/obj/item/bedsheet/medical, -/obj/structure/curtain, -/obj/structure/bed, -/obj/effect/turf_decal/tile/dark_green/anticorner/contrasted, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/showroomfloor, -/area/medical/virology) "meY" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 @@ -55291,27 +54559,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/fore) -"mgx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/iron, -/area/security/brig/aft) "mgy" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -55440,9 +54687,6 @@ /obj/effect/turf_decal/tile/neutral/anticorner/contrasted, /turf/open/floor/iron/dark, /area/crew_quarters/fitness/recreation) -"mjb" = ( -/turf/closed/mineral/random/labormineral, -/area/docking/arrival) "mjt" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -55603,21 +54847,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"mlp" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/medical/medbay/central) "mlr" = ( /obj/item/canvas/twentythree_twentythree, /obj/structure/easel, @@ -55660,10 +54889,18 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron/dark, /area/crew_quarters/bar) -"mmJ" = ( -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/wood, -/area/security/prison) +"mmC" = ( +/obj/item/bedsheet/medical, +/obj/structure/curtain, +/obj/structure/bed, +/obj/effect/turf_decal/tile/dark_green/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron/showroomfloor, +/area/medical/virology) "mmK" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -55846,14 +55083,6 @@ /obj/effect/turf_decal/tile/purple/anticorner/contrasted, /turf/open/floor/iron/showroomfloor, /area/science/shuttledock) -"mpU" = ( -/obj/structure/table/wood, -/obj/item/clothing/head/hats/bowler{ - pixel_y = 8 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/prison, -/area/security/prison) "mqm" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -56054,6 +55283,22 @@ }, /turf/open/floor/plating, /area/maintenance/port) +"muj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/machinery/camera/directional/east{ + c_tag = "Recovery Room"; + name = "medical camera"; + network = list("ss13","medical") + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/showroomfloor, +/area/medical/medbay/central) "muA" = ( /obj/structure/table, /obj/structure/sign/poster/official/random{ @@ -56061,6 +55306,13 @@ }, /turf/open/floor/iron/dark, /area/science/shuttledock) +"muD" = ( +/obj/machinery/door/airlock/maintenance{ + name = "bar Maintenance"; + req_access_txt = "25" + }, +/turf/open/floor/iron/dark, +/area/maintenance/central) "muP" = ( /obj/effect/spawner/randomvend/snack, /obj/machinery/light, @@ -56069,21 +55321,6 @@ }, /turf/open/floor/iron/dark, /area/security/courtroom) -"mvb" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Cloning Lab"; - name = "medical camera"; - network = list("ss13","medical"); - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/medical/medbay/central) "mve" = ( /turf/open/floor/plating{ burnt = 1 @@ -56236,6 +55473,18 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) +"mxp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/security/prison) "mxS" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/yellow{ @@ -56454,22 +55703,14 @@ dir = 8 }, /area/hallway/primary/port) -"mCT" = ( +"mCS" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/maintenance{ - name = "genetics Maintenance"; - req_access_txt = "9" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 + desc = "It opens and closes. You have a terrible feeling about this room..."; + name = "Brig Closet" }, /turf/open/floor/iron/dark, -/area/medical/genetics) +/area/security/brig) "mDw" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/green/half/contrasted{ @@ -56512,6 +55753,13 @@ }, /turf/open/floor/iron, /area/security/brig/aft) +"mEf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plating, +/area/maintenance/port/aft) "mEj" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral, @@ -56635,6 +55883,10 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/warehouse) +"mFS" = ( +/obj/machinery/smartfridge/chemistry/virology/preloaded, +/turf/open/floor/iron/showroomfloor, +/area/medical/virology) "mGg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/corner, @@ -56764,6 +56016,17 @@ }, /turf/open/floor/iron/showroomfloor, /area/crew_quarters/kitchen) +"mIQ" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigfrontdoor"; + name = "Front Security Blast Door" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/brig) "mIR" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 5 @@ -57211,6 +56474,29 @@ }, /turf/open/floor/iron, /area/bridge) +"mPC" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/directional/east{ + c_tag = "Xenobiology Computers"; + name = "xenobiology camera"; + network = list("ss13","rd","xeno"); + dir = 8 + }, +/turf/open/floor/iron/showroomfloor, +/area/science/xenobiology) "mPI" = ( /obj/structure/girder, /obj/effect/decal/cleanable/dirt, @@ -57451,6 +56737,19 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) +"mUe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics"; + req_access_txt = "24" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/iron/dark, +/area/engine/atmos) "mUi" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -57473,22 +56772,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/crew_quarters/heads/cmo) -"mUk" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/item/toy/figure/atmos{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/engine/atmos) "mUy" = ( /obj/effect/turf_decal/stripes/corner, /obj/effect/turf_decal/stripes/corner{ @@ -57630,6 +56913,18 @@ burnt = 1 }, /area/quartermaster/exploration_dock) +"mXu" = ( +/obj/machinery/suit_storage_unit/atmos, +/obj/effect/turf_decal/delivery, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/engine/atmos) "mXJ" = ( /obj/item/book/manual/wiki/security_space_law, /obj/item/taperecorder{ @@ -57823,6 +57118,19 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/security/main) +"ncz" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/turf/open/floor/iron/showroomfloor, +/area/science/xenobiology) "ncE" = ( /obj/effect/turf_decal/bot, /obj/structure/rack, @@ -57955,6 +57263,21 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/storage/primary) +"nfT" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/sign/departments/minsky/medical/virology/virology1{ + pixel_x = 30 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/showroomfloor, +/area/medical/medbay/central) "nfX" = ( /obj/effect/turf_decal/bot, /obj/machinery/light{ @@ -58117,6 +57440,19 @@ broken = 1 }, /area/maintenance/starboard/aft) +"niF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/flora/grass/jungle, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "niK" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -58143,6 +57479,18 @@ }, /turf/open/floor/iron, /area/gateway) +"niR" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/iron, +/area/engine/atmos) "njd" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -58184,33 +57532,6 @@ }, /turf/open/floor/grass, /area/medical/storage) -"njU" = ( -/obj/item/kirbyplants{ - icon_state = "plant-03" - }, -/obj/machinery/camera/directional/west{ - c_tag = "Engineering Foyer"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/iron, -/area/engine/break_room) "nkb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/yellow{ @@ -58253,17 +57574,6 @@ }, /turf/open/floor/iron/dark, /area/janitor) -"nkG" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced/prison, -/turf/open/floor/plating, -/area/security/prison) "nkU" = ( /obj/structure/disposalpipe/sorting/mail/flip{ dir = 8; @@ -58393,6 +57703,10 @@ }, /turf/open/floor/iron/dark, /area/storage/tech) +"nnL" = ( +/obj/machinery/smartfridge/extract/preloaded, +/turf/open/floor/iron/dark, +/area/science/xenobiology) "nnW" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/decal/cleanable/dirt, @@ -58454,21 +57768,24 @@ }, /turf/open/floor/iron/dark, /area/science/robotics/lab) -"noF" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2"; - name = "mail belt" - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ +"now" = ( +/obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 2 +/obj/machinery/camera/autoname{ + dir = 8 }, -/turf/open/floor/iron/dark, -/area/quartermaster/sorting) +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/airalarm/server{ + dir = 8; + pixel_x = -28 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/iron/dark/telecomms, +/area/quartermaster/exploration_prep) "noJ" = ( /obj/effect/turf_decal/bot, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ @@ -58560,6 +57877,16 @@ broken = 1 }, /area/maintenance/starboard/fore) +"nqz" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/door/poddoor/shutters{ + id = "explorerstorage"; + name = "Exploration Storage Shutter" + }, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/iron, +/area/quartermaster/exploration_dock) "nqK" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -58572,6 +57899,16 @@ broken = 1 }, /area/maintenance/port/fore) +"nqQ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/bed{ + dir = 8 + }, +/obj/item/bedsheet/brown, +/turf/open/floor/prison, +/area/security/prison) "nrp" = ( /obj/machinery/door/airlock/public, /obj/effect/mapping_helpers/airlock/abandoned, @@ -58585,15 +57922,6 @@ /obj/structure/barricade/wooden, /turf/open/floor/plating, /area/quartermaster/warehouse) -"ntf" = ( -/obj/machinery/suit_storage_unit/engine, -/obj/effect/turf_decal/delivery, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/engine/engineering) "nth" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -58636,6 +57964,23 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/port/aft) +"nut" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/fun_police{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/machinery/space_heater, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light, +/turf/open/floor/iron/dark, +/area/security/execution/education) "nuy" = ( /obj/structure/cable/yellow{ icon_state = "1-8" @@ -58868,17 +58213,6 @@ }, /turf/open/floor/iron/dark, /area/hallway/primary/central) -"nyk" = ( -/obj/effect/turf_decal/bot, -/obj/structure/tank_dispenser, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/engine/atmos) "nyN" = ( /obj/machinery/modular_computer/console/preset/command, /obj/effect/turf_decal/tile/yellow/half/contrasted{ @@ -59008,6 +58342,19 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/hallway/secondary/entry) +"nAt" = ( +/obj/machinery/door/airlock/maintenance{ + name = "chapel Maintenance"; + req_one_access_txt = "22" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/chapel/main) "nAz" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 @@ -59018,19 +58365,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/hallway/primary/aft) -"nAC" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Aft Hallway Transfer Centre Doors"; - name = "aft camera" - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/hallway/primary/aft) "nBo" = ( /obj/structure/closet/emcloset/anchored, /obj/effect/turf_decal/stripes/line{ @@ -59102,20 +58436,6 @@ /obj/item/assembly/igniter, /turf/open/floor/iron/dark, /area/medical/chemistry) -"nCK" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1; - color = "#439C1E" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron/freezer, -/area/medical/virology) "nCM" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -59177,22 +58497,18 @@ }, /turf/open/floor/iron/showroomfloor, /area/science/xenobiology) -"nDD" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/obj/machinery/camera/directional/east{ - c_tag = "Recovery Room"; - name = "medical camera"; - network = list("ss13","medical") +"nDT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/medical/medbay/central) +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron/dark, +/area/medical/morgue) "nDY" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -59227,6 +58543,29 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/hallway/primary/aft) +"nEv" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron, +/area/security/main) "nEO" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_x = -30 @@ -59415,6 +58754,18 @@ }, /turf/open/floor/iron/showroomfloor, /area/science/mixing) +"nHz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "nHM" = ( /obj/structure/filingcabinet/employment, /obj/effect/turf_decal/bot_white, @@ -59430,18 +58781,17 @@ broken = 1 }, /area/maintenance/starboard/fore) -"nIh" = ( +"nIo" = ( /obj/effect/turf_decal/bot, -/obj/machinery/computer/atmos_control, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 30 +/obj/machinery/disposal/bin, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 +/obj/structure/window/reinforced, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, /turf/open/floor/iron/dark, /area/engine/atmos) "nIt" = ( @@ -59489,17 +58839,6 @@ burnt = 1 }, /area/maintenance/starboard/aft) -"nIZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/engine, -/area/engine/engineering) "nJh" = ( /obj/effect/spawner/randomvend/cola, /obj/effect/turf_decal/delivery, @@ -59537,6 +58876,50 @@ }, /turf/open/floor/iron/dark, /area/storage/tech) +"nJy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"nJH" = ( +/obj/effect/spawner/structure/window/reinforced/prison, +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/security/prison) +"nJO" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/airalarm/directional/east, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron, +/area/maintenance/disposal/incinerator) "nJS" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -59592,6 +58975,22 @@ }, /turf/open/floor/iron/dark, /area/storage/primary) +"nKo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron, +/area/quartermaster/exploration_dock) "nKp" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/stripes/line, @@ -59826,26 +59225,6 @@ }, /turf/open/floor/iron/dark, /area/teleporter) -"nOf" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/button/door{ - id = "Cabin_2"; - name = "Cabin 2 Privacy Lock"; - normaldoorcontrol = 1; - pixel_y = 24; - specialfunctions = 4 - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/landmark/start/assistant, -/obj/item/bedsheet/dorms, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood{ - broken = 1 - }, -/area/crew_quarters/locker) "nOg" = ( /obj/structure/window/reinforced{ dir = 8 @@ -59899,12 +59278,6 @@ burnt = 1 }, /area/maintenance/port/fore) -"nON" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/prison, -/area/security/prison) "nPe" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable/yellow{ @@ -59996,37 +59369,22 @@ broken = 1 }, /area/maintenance/starboard/fore) -"nQa" = ( +"nQG" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/structure/cable/yellow{ - icon_state = "1-8" + icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/obj/structure/cable/yellow{ + icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 }, -/obj/effect/turf_decal/tile/blue/opposingcorners, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, +/obj/structure/disposalpipe/segment, /turf/open/floor/iron/showroomfloor, -/area/medical/medbay/central) -"nQH" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/iron/dark, -/area/security/brig/aft) +/area/science/xenobiology) "nQJ" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -60294,6 +59652,16 @@ /obj/machinery/recharger, /turf/open/floor/iron/dark, /area/security/warden) +"nUw" = ( +/obj/machinery/light/small, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/medical/morgue) "nUI" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -60551,26 +59919,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron/dark, /area/engine/atmos) -"nYP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/engine/atmos) "nYS" = ( /obj/machinery/atmospherics/pipe/simple/yellow/visible, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ @@ -60769,19 +60117,6 @@ }, /turf/open/floor/iron, /area/bridge) -"oaV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/showroomfloor, -/area/science/xenobiology) "oaY" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -60892,6 +60227,11 @@ burnt = 1 }, /area/quartermaster/exploration_dock) +"odg" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/engine/atmos) "odh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -60981,20 +60321,6 @@ }, /turf/open/floor/iron, /area/construction/mining/aux_base) -"oet" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/showroomfloor, -/area/science/mixing/chamber) "oev" = ( /obj/machinery/computer/card{ dir = 1 @@ -61439,21 +60765,6 @@ }, /turf/open/floor/iron, /area/hallway/secondary/entry) -"omE" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/mirror{ - pixel_x = 25; - pixel_y = 4 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/freezer, -/area/security/prison) "omL" = ( /obj/structure/cable/yellow{ icon_state = "0-2" @@ -61494,6 +60805,26 @@ broken = 1 }, /area/crew_quarters/bar) +"onE" = ( +/obj/machinery/requests_console{ + department = "AI"; + departmentType = 5; + name = "AI RC"; + pixel_x = 30; + pixel_y = -30 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/box, +/obj/machinery/flasher{ + id = "AI"; + name = "Meatbag Pacifier"; + pixel_x = 24; + pixel_y = 24 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) "onN" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, @@ -61717,6 +61048,10 @@ /obj/effect/turf_decal/tile/yellow, /turf/open/floor/iron, /area/vacant_room/commissary) +"orr" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/security/prison) "orv" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ @@ -61796,6 +61131,18 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/medical/genetics/cloning) +"osK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/flora/grass/jungle/b, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "otk" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ @@ -61948,6 +61295,18 @@ }, /turf/open/floor/iron/showroomfloor, /area/medical/chemistry) +"ouN" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/obj/structure/table/optable, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom{ + pixel_y = -25 + }, +/obj/machinery/light/small, +/turf/open/floor/iron/showroomfloor, +/area/security/main) "ouO" = ( /obj/effect/turf_decal/delivery, /obj/machinery/door/airlock/security{ @@ -61984,6 +61343,14 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/hallway/primary/starboard) +"ovn" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/flora/grass/jungle/b, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "ovr" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -62003,33 +61370,6 @@ }, /turf/open/floor/iron/dark, /area/medical/morgue) -"ovC" = ( -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 1; - color = "#439C1E" - }, -/obj/machinery/power/apc/auto_name/directional/north{ - name = "Virology Lab APC" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/freezer, -/area/medical/virology) -"ovF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat/atmos) "ovO" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/bot, @@ -62437,6 +61777,14 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plating, /area/maintenance/port/aft) +"oDr" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "oDs" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/dirt, @@ -62499,23 +61847,12 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) -"oDE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control"; - req_access_txt = "3" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" +"oDA" = ( +/obj/machinery/smartfridge{ + name = "Sample Storage" }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/security/warden) +/turf/open/floor/iron/showroomfloor, +/area/medical/virology) "oDX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -62785,16 +62122,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/security/checkpoint/science/research) -"oIQ" = ( -/obj/structure/bed{ - dir = 8 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/obj/item/bedsheet/dorms, -/turf/open/floor/prison, -/area/security/prison) "oJl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -62838,6 +62165,15 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) +"oJM" = ( +/obj/machinery/suit_storage_unit/ce, +/obj/effect/turf_decal/delivery, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/crew_quarters/heads/chief) "oJS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/corner, @@ -62977,6 +62313,34 @@ }, /turf/open/floor/iron/dark, /area/crew_quarters/heads/hop) +"oMW" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "quarantineshutters"; + name = "Isolation Shutters" + }, +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + name = "Virology Desk"; + req_access_txt = "39"; + dir = 4 + }, +/obj/item/storage/box/masks, +/obj/item/reagent_containers/glass/bottle/spaceacillin{ + pixel_x = 2; + pixel_y = -1 + }, +/obj/item/reagent_containers/food/drinks/bottle/virusfood{ + pixel_x = -9; + pixel_y = 5 + }, +/obj/structure/desk_bell{ + pixel_x = -8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/virology) "oNy" = ( /obj/machinery/light, /obj/machinery/light_switch{ @@ -63021,6 +62385,30 @@ name = "mainframe floor" }, /area/tcommsat/server) +"oOU" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 4; + freq = 1400; + location = "Atmospherics"; + name = "navigation beacon (Atmospherics Delivery)" + }, +/obj/machinery/door/window/southleft{ + dir = 8; + name = "Atmospherics Delivery Access"; + req_one_access_txt = "24;10" + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark, +/area/engine/atmos) "oOW" = ( /obj/effect/turf_decal/tile/red/half/contrasted, /obj/effect/turf_decal/stripes/corner, @@ -63210,19 +62598,22 @@ /obj/item/book/manual/wiki/sopsecurity, /turf/open/floor/carpet/red, /area/crew_quarters/heads/hos) -"oSs" = ( -/obj/item/kirbyplants{ - icon_state = "plant-08" +"oSr" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Brig Port Wing"; + req_one_access_txt = "1;4" }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = 24 +/obj/machinery/door/poddoor/preopen{ + id = "brigfrontdoor"; + name = "Aft Security Blast Door" }, -/turf/open/floor/iron/showroomfloor, -/area/medical/medbay/central) +/turf/open/floor/iron/dark, +/area/security/brig/aft) "oSt" = ( /obj/structure/table, /obj/item/candle/infinite{ @@ -63241,30 +62632,6 @@ burnt = 1 }, /area/maintenance/port/aft) -"oSw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "quarantineshutters"; - name = "Isolation Shutters" - }, -/obj/machinery/door/airlock/virology{ - name = "Virology Lab"; - req_access_txt = "39" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/medical/virology) "oSD" = ( /obj/effect/turf_decal/box, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, @@ -63287,6 +62654,13 @@ }, /turf/open/floor/iron/dark, /area/hydroponics) +"oSR" = ( +/obj/effect/spawner/structure/window, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/plating, +/area/science/mixing) "oSS" = ( /obj/machinery/computer/security/telescreen{ dir = 8; @@ -63398,6 +62772,11 @@ }, /turf/open/floor/plating/airless, /area/maintenance/port/aft) +"oVs" = ( +/obj/structure/railing, +/obj/structure/flora/junglebush/large, +/turf/open/floor/grass, +/area/medical/medbay/central) "oVI" = ( /obj/structure/window/reinforced{ dir = 1 @@ -63422,6 +62801,21 @@ burnt = 1 }, /area/maintenance/port/fore) +"oWx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/public/glass{ + name = "visitation Area" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/prison) "oWS" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -63522,6 +62916,16 @@ /obj/effect/turf_decal/tile/purple/half/contrasted, /turf/open/floor/iron/showroomfloor, /area/science/aft) +"oYa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance/external{ + name = "construction Zone"; + req_access_txt = "32;47;48;37" + }, +/turf/open/floor/iron/dark, +/area/construction/mining/aux_base) "oYk" = ( /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 4 @@ -63597,13 +63001,6 @@ burnt = 1 }, /area/maintenance/port/aft) -"oYH" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/engine/atmos) "oYK" = ( /obj/structure/flora/rock/pile, /turf/open/floor/plating/asteroid/airless, @@ -63652,15 +63049,6 @@ burnt = 1 }, /area/maintenance/port/aft) -"oZp" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/science/shuttledock) "oZv" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -63991,6 +63379,12 @@ }, /turf/open/floor/iron, /area/quartermaster/storage) +"peL" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "peN" = ( /obj/machinery/status_display/ai{ pixel_x = -32 @@ -64021,6 +63415,26 @@ }, /turf/open/floor/iron/dark, /area/maintenance/port/fore) +"pfe" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Departures Cargo Dock"; + name = "shuttle camera" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "pfo" = ( /obj/structure/closet/secure_closet/security/sec, /obj/effect/turf_decal/bot, @@ -64469,6 +63883,20 @@ burnt = 1 }, /area/maintenance/fore) +"pls" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/bot, +/obj/machinery/vending/wallmed/lite{ + pixel_y = 26 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/showroomfloor, +/area/security/main) "plt" = ( /obj/structure/table, /obj/machinery/cell_charger, @@ -64517,16 +63945,6 @@ /obj/structure/barricade/wooden/crude, /turf/open/floor/plating, /area/quartermaster/warehouse) -"plP" = ( -/obj/effect/turf_decal/tile/dark_green/half/contrasted, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/showroomfloor, -/area/medical/medbay/central) "plS" = ( /obj/machinery/computer/med_data{ dir = 4 @@ -64705,26 +64123,6 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"pou" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/curtain, -/obj/effect/turf_decal/delivery, -/obj/machinery/shower{ - dir = 4; - pixel_x = 8 - }, -/obj/item/radio/intercom{ - freerange = 1; - name = "Prison intercom"; - desc = "Talk through this. It looks like it has been modified to not broadcast."; - prison_radio = 1; - pixel_y = 26 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/noslip/white, -/area/security/prison) "poY" = ( /obj/effect/turf_decal/loading_area{ dir = 8 @@ -64746,6 +64144,18 @@ /obj/effect/turf_decal/tile/yellow/opposingcorners, /turf/open/floor/iron, /area/quartermaster/storage) +"ppa" = ( +/obj/machinery/door/airlock/maintenance/external{ + name = "mass Driver Intersection"; + req_access_txt = "12" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/iron/dark, +/area/maintenance/starboard) "ppb" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ @@ -65356,20 +64766,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/science/shuttledock) -"pyh" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/disposalpipe/sorting/mail/destination/virology/flip{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/medical/medbay/central) "pyo" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "detective_shutters"; @@ -65434,6 +64830,25 @@ burnt = 1 }, /area/maintenance/starboard/aft) +"pyY" = ( +/obj/machinery/door/airlock/maintenance/external{ + name = "transit Intersection"; + req_access_txt = "12" + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/maintenance/fore) "pzm" = ( /obj/machinery/conveyor{ dir = 5; @@ -65470,17 +64885,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/security/execution/education) -"pzI" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/science/mixing) "pzN" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -65587,6 +64991,18 @@ }, /turf/open/floor/iron/showroomfloor, /area/quartermaster/exploration_prep) +"pBJ" = ( +/obj/structure/sign/poster/official/no_erp{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/effect/landmark/prisonspawn, +/turf/open/floor/prison, +/area/security/prison) "pBX" = ( /obj/machinery/hydroponics/constructable, /obj/effect/turf_decal/bot, @@ -65919,16 +65335,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/science/explab) -"pHy" = ( -/obj/item/kirbyplants{ - icon_state = "plant-08" - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/science/aft) "pHO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -65969,18 +65375,6 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/science/research) -"pIb" = ( -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4; - color = "#439C1E" - }, -/obj/structure/closet/l3closet/virology, -/obj/machinery/firealarm/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/freezer, -/area/medical/virology) "pIA" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -66067,6 +65461,21 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron/dark, /area/medical/morgue) +"pJG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/showroomfloor, +/area/science/mixing) "pJN" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on, /turf/open/floor/plating{ @@ -66128,6 +65537,19 @@ /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/showroomfloor, /area/engine/atmos) +"pLx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/components/binary/valve/digital/on/layer2{ + name = "Atmospherics Cutoff Valve" + }, +/turf/open/floor/plating{ + burnt = 1 + }, +/area/maintenance/port) "pLy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, @@ -66464,6 +65886,14 @@ burnt = 1 }, /area/maintenance/port/aft) +"pSJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/turf/open/floor/plating, +/area/engine/atmos) "pTa" = ( /obj/structure/table/wood, /obj/item/paicard, @@ -66669,6 +66099,19 @@ }, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) +"pVv" = ( +/obj/machinery/door/airlock{ + id_tag = "Cell"; + name = "Cell 1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/prison) "pVw" = ( /obj/effect/turf_decal/bot, /obj/machinery/computer/security/telescreen/prison{ @@ -66734,6 +66177,18 @@ /obj/effect/turf_decal/tile/blue, /turf/open/floor/iron, /area/engine/atmos) +"pWz" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/effect/landmark/prisonspawn, +/turf/open/floor/prison, +/area/security/prison) "pWD" = ( /obj/machinery/photocopier, /obj/effect/turf_decal/tile/neutral/opposingcorners, @@ -66816,17 +66271,6 @@ }, /turf/open/floor/iron/dark, /area/medical/morgue) -"pXV" = ( -/obj/effect/turf_decal/delivery/red, -/obj/machinery/door/airlock/security{ - aiControlDisabled = 1; - id_tag = "prisonereducation"; - name = "Prison Access"; - req_access_txt = "2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/security/prison) "pYb" = ( /obj/structure/table/wood, /obj/item/clipboard, @@ -66838,22 +66282,6 @@ /obj/effect/decal/cleanable/dirt, /turf/closed/wall/r_wall, /area/quartermaster/exploration_prep) -"pYQ" = ( -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/airalarm/directional/east, -/obj/machinery/firealarm/directional/south, -/obj/machinery/camera/directional/east{ - c_tag = "Transferring Centre" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/execution/transfer) "pZb" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -67025,6 +66453,12 @@ "qbn" = ( /turf/closed/wall/r_wall/rust, /area/security/prison/shielded) +"qbu" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood, +/area/security/prison) "qbA" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/window/reinforced, @@ -67117,19 +66551,6 @@ }, /turf/open/floor/iron, /area/security/brig/aft) -"qcN" = ( -/obj/machinery/door/airlock/maintenance{ - name = "hydroponics Maintenance"; - req_access_txt = "35" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/maintenance/central) "qdr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, @@ -67206,6 +66627,9 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/gateway) +"qei" = ( +/turf/closed/mineral/random/labormineral, +/area/docking/arrival) "qem" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -67279,13 +66703,6 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/teleporter) -"qgc" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/security/main) "qgm" = ( /obj/effect/turf_decal/bot, /obj/structure/closet/secure_closet/personal, @@ -67490,6 +66907,21 @@ broken = 1 }, /area/maintenance/aft) +"qjN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/showroomfloor, +/area/medical/medbay/central) "qjZ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/event_spawn, @@ -67544,6 +66976,17 @@ }, /turf/open/floor/engine/vacuum, /area/maintenance/disposal/incinerator) +"qkz" = ( +/obj/machinery/conveyor{ + id = "NTMSLoad2"; + name = "on ramp" + }, +/obj/machinery/door/poddoor{ + id = "freight_port"; + name = "Freight Bay Blast Door" + }, +/turf/open/floor/plating, +/area/quartermaster/warehouse) "qlg" = ( /obj/effect/turf_decal/delivery, /obj/machinery/space_heater, @@ -67756,6 +67199,14 @@ }, /turf/open/floor/iron/dark, /area/science/xenobiology) +"qqe" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "qqg" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -67853,6 +67304,20 @@ }, /turf/open/floor/iron, /area/quartermaster/storage) +"qso" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron, +/area/hallway/primary/aft) "qst" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -68034,6 +67499,20 @@ }, /turf/open/floor/iron, /area/hallway/primary/fore) +"quj" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/station_alert, +/obj/machinery/requests_console{ + department = "Atmospherics"; + departmentType = 4; + name = "Atmospherics RC"; + pixel_x = 30 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/engine/atmos) "quo" = ( /obj/machinery/modular_computer/console/preset/engineering, /obj/effect/turf_decal/bot, @@ -68127,6 +67606,20 @@ }, /turf/open/floor/iron/dark, /area/chapel/main) +"qwj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/library) "qwl" = ( /obj/machinery/nanite_chamber, /obj/effect/turf_decal/bot, @@ -68165,6 +67658,20 @@ /obj/effect/turf_decal/tile/neutral/anticorner/contrasted, /turf/open/floor/iron/dark/corner, /area/hallway/primary/starboard) +"qxI" = ( +/obj/structure/sign/poster/official/help_others{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/machinery/vending/coffee, +/turf/open/floor/iron, +/area/hallway/primary/aft) "qxO" = ( /obj/effect/turf_decal/stripes/corner, /obj/structure/extinguisher_cabinet{ @@ -68274,6 +67781,26 @@ }, /turf/open/floor/plating, /area/quartermaster/warehouse) +"qze" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4; + color = "#439C1E" + }, +/obj/machinery/camera/directional/north{ + c_tag = "Virology - Testing pens"; + name = "virology camera"; + network = list("ss13","medbay") + }, +/obj/item/food/cheese/wheel{ + pixel_x = 18 + }, +/obj/item/food/cheese/wheel{ + pixel_y = -4; + pixel_x = 17 + }, +/turf/open/floor/iron/freezer, +/area/medical/virology) "qzY" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -68316,6 +67843,20 @@ }, /turf/closed/wall, /area/security/checkpoint/medical) +"qAJ" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced/prison, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/prison) "qAR" = ( /obj/item/beacon, /obj/effect/turf_decal/stripes/corner{ @@ -68376,6 +67917,15 @@ burnt = 1 }, /area/maintenance/starboard/fore) +"qBw" = ( +/obj/effect/spawner/randomvend/snack, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) "qBN" = ( /obj/effect/turf_decal/tile/red/fourcorners/contrasted, /obj/effect/turf_decal/stripes/line{ @@ -68556,20 +68106,6 @@ /obj/effect/turf_decal/tile/dark/half, /turf/open/floor/iron/dark, /area/medical/medbay/central) -"qEp" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/opposingcorners, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/security/brig/aft) "qEy" = ( /obj/item/kirbyplants, /obj/structure/extinguisher_cabinet{ @@ -68688,11 +68224,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/starboard) -"qGE" = ( -/obj/structure/railing, -/obj/structure/flora/junglebush/large, -/turf/open/floor/grass, -/area/medical/medbay/central) "qGX" = ( /obj/structure/chair/office/light{ dir = 8 @@ -68894,13 +68425,6 @@ }, /turf/open/floor/iron, /area/security/checkpoint/medical) -"qJU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/checkpoint/medical) "qKk" = ( /obj/machinery/power/smes{ capacity = 9e+006; @@ -68979,6 +68503,21 @@ }, /turf/open/floor/iron/dark, /area/hallway/primary/fore) +"qLW" = ( +/obj/structure/table/glass, +/obj/item/storage/box/monkeycubes{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = 2 + }, +/obj/item/clothing/gloves/color/latex, +/obj/effect/turf_decal/tile/dark_green/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/showroomfloor, +/area/medical/virology) "qLX" = ( /obj/effect/turf_decal/tile/blue/half/contrasted{ dir = 4 @@ -69143,6 +68682,16 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) +"qPb" = ( +/obj/machinery/door/poddoor/preopen{ + id = "transittube"; + name = "Transit Tube Blast Door" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/iron/dark, +/area/bridge) "qPA" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -69160,32 +68709,33 @@ }, /turf/open/floor/iron, /area/quartermaster/storage) -"qPH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/showroomfloor, -/area/security/warden) -"qPK" = ( -/obj/machinery/light{ +"qPF" = ( +/obj/effect/turf_decal/stripes/corner{ dir = 4 }, -/obj/item/kirbyplants{ - icon_state = "plant-08" +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/machinery/status_display/evac{ - pixel_x = 32 +/obj/structure/cable/yellow{ + icon_state = "2-8" }, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/tile/purple{ dir = 4 }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 +/obj/structure/disposalpipe/sorting/mail/destination/testing_range/flip{ + dir = 2 }, /turf/open/floor/iron/showroomfloor, -/area/medical/medbay/central) +/area/science/research) +"qPH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron/showroomfloor, +/area/security/warden) "qPL" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -69241,17 +68791,6 @@ broken = 1 }, /area/maintenance/central) -"qRo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosspace"; - name = "Space Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) "qRS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -69305,16 +68844,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/science/aft) -"qSN" = ( -/obj/machinery/door/airlock/maintenance/external{ - name = "construction Zone"; - req_access_txt = "32;47;48;37" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/construction/mining/aux_base) "qSU" = ( /obj/item/radio/intercom{ pixel_y = 22 @@ -69369,6 +68898,13 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron/showroomfloor, /area/engine/atmos) +"qUe" = ( +/obj/structure/bookcase/manuals, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/security/prison) "qUg" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -69393,6 +68929,20 @@ broken = 1 }, /area/maintenance/central) +"qUB" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light, +/obj/machinery/camera/directional/south{ + c_tag = "Arrivals Drydock Canisters"; + name = "shuttle camera" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "qUP" = ( /turf/closed/wall/r_wall, /area/security/brig/aft) @@ -69475,6 +69025,22 @@ }, /turf/open/floor/iron, /area/hallway/primary/fore) +"qWo" = ( +/obj/structure/table, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 6 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = -6 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/machinery/airalarm/directional/west{ + pixel_x = -22 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark, +/area/engine/atmos) "qWs" = ( /obj/machinery/airalarm/directional/south{ pixel_y = -22 @@ -69648,17 +69214,6 @@ }, /turf/open/floor/iron/dark, /area/chapel/main) -"raf" = ( -/obj/machinery/computer/message_monitor, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/east, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/tcommsat/computer) "rag" = ( /obj/effect/decal/cleanable/dirt, /obj/item/shard, @@ -69990,6 +69545,21 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) +"reC" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/engine, +/area/engine/engineering) "reD" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/yellow/opposingcorners, @@ -70117,23 +69687,6 @@ /obj/effect/turf_decal/tile/neutral/anticorner/contrasted, /turf/open/floor/iron/dark, /area/hallway/secondary/entry) -"rfR" = ( -/obj/effect/turf_decal/bot_white, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/crew_quarters/bar"; - name = "Bar APC"; - pixel_y = -24 - }, -/obj/structure/cable/yellow, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/obj/machinery/vending/games, -/turf/open/floor/iron/dark, -/area/crew_quarters/bar) "rfT" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -70203,31 +69756,6 @@ broken = 1 }, /area/maintenance/port) -"rhy" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/machinery/airalarm/directional/east, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/maintenance/disposal/incinerator) "rhI" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -70367,18 +69895,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/fore) -"rjd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/freezer, -/area/security/prison) "rjg" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -70621,6 +70137,21 @@ }, /turf/open/floor/iron/dark, /area/chapel/main) +"rlH" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/obj/structure/toilet{ + dir = 4 + }, +/obj/item/food/donut/apple{ + name = "forbidden toilet donut"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron/freezer, +/area/security/prison) "rmg" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -70714,17 +70245,6 @@ }, /turf/open/floor/iron/dark, /area/hallway/secondary/exit/departure_lounge) -"rnx" = ( -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/opposingcorners, -/turf/open/floor/iron, -/area/engine/atmos) "rnH" = ( /obj/structure/table, /obj/machinery/light{ @@ -70881,6 +70401,17 @@ broken = 1 }, /area/quartermaster/warehouse) +"roU" = ( +/obj/structure/table/glass, +/obj/machinery/microwave{ + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/showroomfloor, +/area/medical/medbay/central) "rpF" = ( /obj/structure/table, /obj/item/folder, @@ -70974,6 +70505,13 @@ }, /turf/open/floor/iron, /area/security/courtroom) +"rrx" = ( +/obj/machinery/door/airlock{ + id_tag = "Cell"; + name = "Cell 1" + }, +/turf/open/floor/iron/dark, +/area/security/prison) "rrF" = ( /obj/machinery/door/firedoor, /obj/structure/door_assembly/door_assembly_ext{ @@ -71094,6 +70632,20 @@ }, /turf/open/floor/iron, /area/maintenance/starboard/fore) +"rud" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/showroomfloor, +/area/science/mixing) "ruf" = ( /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ dir = 1 @@ -71167,26 +70719,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/science/explab) -"rve" = ( -/obj/item/target, -/obj/item/target/syndicate, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/structure/closet/crate/secure{ - desc = "A secure crate containing various materials for building a customised test-site."; - name = "Test Site Materials Crate"; - req_access_txt = "8" - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/iron/dark, -/area/science/mixing) "rvh" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -71293,6 +70825,28 @@ burnt = 1 }, /area/maintenance/starboard) +"rxq" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/advanced_airlock_controller{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating{ + broken = 1 + }, +/area/maintenance/solars/starboard/fore) "ryn" = ( /obj/machinery/recharge_station, /obj/effect/turf_decal/bot, @@ -71363,6 +70917,21 @@ /obj/effect/turf_decal/tile/red, /turf/open/floor/iron, /area/engine/engineering) +"rAd" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/landmark/start/assistant, +/obj/structure/chair/fancy/corp{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/iron/dark, +/area/medical/medbay/lobby) "rAu" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -71399,6 +70968,38 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/hallway/primary/starboard) +"rAA" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/stack/marker_beacon{ + anchored = 1; + icon_state = "markerburgundy-on"; + light_color = "#FA644B"; + light_power = 3; + light_range = 2; + name = "landing marker"; + picked_color = "Burgundy" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) +"rAH" = ( +/obj/machinery/rnd/production/protolathe/department/science, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/directional/east{ + c_tag = "Research Lab"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/dark, +/area/science/lab) "rAX" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -71503,24 +71104,6 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/hallway/primary/starboard) -"rCs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/science/research) "rCB" = ( /obj/machinery/light, /obj/structure/cable/yellow, @@ -71543,6 +71126,23 @@ burnt = 1 }, /area/maintenance/starboard/fore) +"rDm" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/crew_quarters/bar"; + name = "Bar APC"; + pixel_y = -24 + }, +/obj/structure/cable/yellow, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 8 + }, +/obj/machinery/vending/games, +/turf/open/floor/iron/dark, +/area/crew_quarters/bar) "rDP" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/bot, @@ -71575,6 +71175,20 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) +"rFK" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4; + color = "#439C1E" + }, +/obj/structure/closet/l3closet/virology, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/medical/virology) "rFP" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -71601,25 +71215,32 @@ }, /turf/open/floor/iron/dark, /area/maintenance/starboard/fore) -"rGy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosspace"; - name = "Space Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) +"rGx" = ( +/obj/machinery/smartfridge, +/turf/open/floor/iron/dark, +/area/crew_quarters/kitchen) "rGz" = ( /obj/effect/turf_decal/tile/red/half/contrasted, /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/hallway/primary/aft) +"rHc" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron/showroomfloor, +/area/science/mixing) "rHm" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -71658,22 +71279,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plating, /area/maintenance/port/aft) -"rHJ" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/item/radio/intercom{ - pixel_x = -28 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 1 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/science/explab) "rHR" = ( /obj/effect/turf_decal/bot, /obj/machinery/conveyor{ @@ -71719,6 +71324,15 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/engine/atmos) +"rIP" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/engine/atmos) "rJg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/yellow{ @@ -71797,21 +71411,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/hallway/primary/fore) -"rKg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/science/aft) "rKo" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=Upload"; @@ -71893,16 +71492,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"rLg" = ( -/obj/structure/curtain, -/obj/effect/turf_decal/delivery, -/obj/machinery/shower{ - dir = 4; - pixel_x = 8 - }, -/obj/item/soap/nanotrasen, -/turf/open/floor/noslip/white, -/area/security/prison) "rLs" = ( /obj/effect/turf_decal/bot_white, /obj/machinery/holopad, @@ -71928,22 +71517,17 @@ }, /turf/open/floor/iron/dark, /area/chapel/main) -"rMw" = ( -/obj/effect/turf_decal/stripes/line{ +"rMC" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/flora/grass/jungle, +/obj/machinery/light{ dir = 4 }, -/obj/item/radio/intercom{ - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" }, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron, -/area/quartermaster/exploration_dock) +/area/docking/arrival) "rME" = ( /obj/structure/sign/poster/official/random{ pixel_y = -32 @@ -72072,23 +71656,6 @@ }, /turf/open/floor/iron/dark, /area/science/xenobiology) -"rOd" = ( -/obj/machinery/door/airlock/security{ - name = "EVA Room"; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/security/execution/transfer) "rOz" = ( /obj/effect/turf_decal/bot, /obj/structure/closet/crate, @@ -72098,15 +71665,6 @@ }, /turf/open/floor/iron/dark, /area/hallway/secondary/exit/departure_lounge) -"rOB" = ( -/obj/machinery/airalarm/directional/east, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/iron, -/area/hallway/primary/aft) "rON" = ( /obj/effect/turf_decal/delivery, /obj/structure/extinguisher_cabinet{ @@ -72134,22 +71692,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, /area/medical/chemistry) -"rPx" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Recovery Room"; - name = "geneticscamera"; - network = list("ss13","medical") - }, -/turf/open/floor/iron/showroomfloor, -/area/medical/genetics) "rPz" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -72389,32 +71931,6 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/exploration_prep) -"rTs" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/window/southleft{ - name = "Cargo Disposal"; - req_access_txt = "50" - }, -/obj/machinery/conveyor_switch/oneway{ - id = "packageSort2"; - name = "mail belt"; - pixel_y = 6 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/iron, -/area/quartermaster/sorting) "rTA" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating{ @@ -72470,16 +71986,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/science/mixing) -"rUd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/science/xenobiology) "rUM" = ( /obj/structure/mirror{ pixel_y = 28 @@ -72609,18 +72115,6 @@ }, /turf/open/floor/iron, /area/gateway) -"rWi" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced/prison, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/security/prison) "rWx" = ( /obj/item/kirbyplants{ icon_state = "plant-16" @@ -72878,6 +72372,19 @@ /obj/effect/turf_decal/tile/blue/opposingcorners, /turf/open/floor/iron, /area/hydroponics) +"saJ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "kitchen Maintenance"; + req_access_txt = "28" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/maintenance/central) "saO" = ( /obj/machinery/airalarm/directional/west{ pixel_x = -23 @@ -72922,6 +72429,18 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/ai_monitored/storage/eva) +"sbw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/iron, +/area/engine/atmos) "scd" = ( /obj/effect/turf_decal/box/corners{ dir = 4 @@ -72954,6 +72473,20 @@ }, /turf/open/floor/iron/showroomfloor, /area/science/lab) +"scX" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Toxins Lab"; + req_access_txt = "8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/science/mixing) "sds" = ( /obj/structure/rack, /obj/effect/turf_decal/bot, @@ -73202,6 +72735,22 @@ burnt = 1 }, /area/maintenance/port/aft) +"sgH" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1447; + name = "Private AI Channel"; + pixel_y = -28 + }, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) "sgL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -73286,6 +72835,23 @@ broken = 1 }, /area/maintenance/port/aft) +"sip" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/security/warden) "sir" = ( /obj/structure/chair{ dir = 8 @@ -73330,28 +72896,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/crew_quarters/heads/hos) -"sjk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/east, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/table, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/machinery/cell_charger, -/obj/item/stack/cable_coil/red, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple/opposingcorners, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/quartermaster/exploration_prep) "sjv" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -73508,6 +73052,19 @@ }, /turf/open/floor/iron, /area/security/prison) +"smh" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/item/taperecorder{ + pixel_y = -15 + }, +/obj/item/flashlight/lamp{ + pixel_y = 7 + }, +/turf/open/floor/iron/dark, +/area/security/brig/aft) "smm" = ( /obj/structure/sign/departments/medbay/alt{ pixel_x = -32 @@ -73753,41 +73310,6 @@ }, /turf/open/floor/iron/dark, /area/crew_quarters/heads/hos) -"srJ" = ( -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/iron/showroomfloor, -/area/science/shuttledock) -"srP" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/engine/atmos) "ssj" = ( /obj/structure/table, /obj/item/stack/sheet/glass/fifty, @@ -74163,6 +73685,31 @@ }, /turf/open/floor/iron/dark, /area/crew_quarters/bar) +"syp" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/camera/directional/north{ + network = list("ss13", "security") + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/brig) "syz" = ( /obj/structure/chair/fancy/comfy{ buildstackamount = 0; @@ -74229,6 +73776,17 @@ burnt = 1 }, /area/maintenance/fore) +"szb" = ( +/obj/effect/spawner/randomarcade, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/security/prison) "szg" = ( /obj/structure/table/glass, /obj/item/seeds/random{ @@ -74362,29 +73920,6 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/sorting) -"sBW" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigfrontdoor"; - name = "Front Security Blast Door" - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron/dark, -/area/security/brig) "sCj" = ( /obj/structure/rack, /obj/effect/turf_decal/bot, @@ -74457,6 +73992,31 @@ }, /turf/open/floor/engine, /area/engine/engineering) +"sDu" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fernybush, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) +"sDJ" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/library) "sDM" = ( /obj/effect/turf_decal/stripes/white/line{ dir = 8 @@ -74660,22 +74220,6 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/aft) -"sIH" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1447; - name = "Private AI Channel"; - pixel_y = -28 - }, -/obj/effect/landmark/start/cyborg, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai_upload) "sIO" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -74783,20 +74327,6 @@ }, /turf/open/floor/iron/dark, /area/hallway/primary/fore) -"sJP" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced/prison, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/prison) "sKz" = ( /obj/structure/railing{ dir = 4 @@ -74861,31 +74391,6 @@ /obj/effect/turf_decal/tile/neutral/anticorner/contrasted, /turf/open/floor/iron/dark, /area/hydroponics) -"sLj" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced/prison, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/prison) -"sLo" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/hallway/primary/aft) "sLD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/grille/broken, @@ -74936,6 +74441,16 @@ }, /turf/open/floor/iron/dark, /area/gateway) +"sMG" = ( +/obj/structure/curtain, +/obj/effect/turf_decal/delivery, +/obj/machinery/shower{ + dir = 4; + pixel_x = 8 + }, +/obj/item/soap/nanotrasen, +/turf/open/floor/noslip/white, +/area/security/prison) "sMK" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ @@ -75385,26 +74900,19 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, /turf/open/floor/wood, /area/library) -"sTG" = ( -/obj/machinery/computer/cargo, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/east, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - name = "Quartermaster RC"; - pixel_y = 30 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24; - pixel_y = 28 +"sTa" = ( +/obj/structure/table/wood, +/obj/item/storage/secure/briefcase{ + pixel_x = 5; + pixel_y = 5 }, +/obj/item/storage/lockbox/medal, +/obj/machinery/airalarm/directional/east, /obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 + dir = 1 }, /turf/open/floor/iron/dark, -/area/quartermaster/qm) +/area/crew_quarters/heads/captain) "sUi" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/disposalpipe/segment, @@ -75443,39 +74951,21 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/hallway/primary/port) -"sUM" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/airalarm/directional/east, -/obj/machinery/light_switch{ - pixel_y = 24 +"sUR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/structure/disposalpipe/trunk{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/camera/autoname{ dir = 8 }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ +/obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 1 }, -/turf/open/floor/iron/dark, -/area/science/explab) -"sUX" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/cryopod{ - desc = "Suited for Cyborgs and Humanoids, the pod is a safe place for personnel affected by the Space Sleep Disorder to get some rest. If you think that this the easy way out, Nanotrasen will address your situation in a later date..."; - name = "Jail cryogenic freezer" - }, -/obj/machinery/computer/cryopod{ - pixel_y = -25 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/prison, -/area/security/prison) +/turf/open/floor/iron/showroomfloor, +/area/science/aft) "sVy" = ( /obj/structure/cable/yellow{ icon_state = "2-8" @@ -75504,19 +74994,6 @@ }, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"sVH" = ( -/obj/effect/spawner/structure/window/reinforced/prison, -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating{ - burnt = 1 - }, -/area/security/prison) "sVN" = ( /obj/machinery/vending/wardrobe/cargo_wardrobe, /obj/effect/turf_decal/bot, @@ -75624,18 +75101,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/hallway/secondary/entry) -"sWR" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/medical/genetics) "sXc" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ @@ -75756,20 +75221,6 @@ }, /turf/open/space/basic, /area/space/nearstation) -"sZf" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/spawner/structure/window/reinforced/prison, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" - }, -/turf/open/floor/plating/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/security/prison) "sZl" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -75836,6 +75287,10 @@ }, /turf/open/floor/iron/dark, /area/engine/atmos) +"sZM" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/prison, +/area/security/prison) "tab" = ( /obj/structure/chair/fancy/bench/left{ dir = 8 @@ -75870,16 +75325,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/iron, /area/security/main) -"taI" = ( -/obj/machinery/light/small, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/medical/morgue) "taJ" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -76059,6 +75504,22 @@ burnt = 1 }, /area/maintenance/port/aft) +"tep" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/showroomfloor, +/area/science/mixing) "tes" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -76394,6 +75855,26 @@ }, /turf/open/floor/iron/dark, /area/engine/atmos) +"tkh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/showroomfloor, +/area/medical/medbay/central) "tks" = ( /obj/machinery/firealarm{ dir = 4; @@ -76455,6 +75936,17 @@ /obj/effect/turf_decal/tile/red, /turf/open/floor/iron/showroomfloor, /area/crew_quarters/toilet/restrooms) +"tkT" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced/prison, +/turf/open/floor/plating, +/area/security/prison) "tkU" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -76685,6 +76177,20 @@ /obj/effect/turf_decal/tile/red, /turf/open/floor/iron, /area/crew_quarters/fitness/recreation) +"toC" = ( +/obj/machinery/conveyor{ + id = "garbage" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Disposal Exit"; + name = "disposal Exit Vent" + }, +/obj/structure/sign/warning/deathsposal{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/maintenance/disposal) "toK" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -76720,16 +76226,6 @@ /obj/effect/turf_decal/tile/blue/opposingcorners, /turf/open/floor/iron, /area/engine/atmos) -"toW" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/blue/opposingcorners, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron/showroomfloor, -/area/medical/medbay/central) "toY" = ( /obj/machinery/computer/security/labor, /obj/machinery/light_switch{ @@ -76827,14 +76323,11 @@ }, /turf/open/floor/iron/dark, /area/construction/mining/aux_base) -"trv" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron, -/area/hallway/primary/starboard) +"trb" = ( +/obj/structure/table/wood, +/obj/item/clothing/neck/tie/red, +/turf/open/floor/prison, +/area/security/prison) "trO" = ( /obj/effect/turf_decal/tile/black/fourcorners, /obj/effect/turf_decal/stripes/line{ @@ -76969,9 +76462,6 @@ burnt = 1 }, /area/maintenance/port) -"ttv" = ( -/turf/closed/wall, -/area/docking/arrival) "ttx" = ( /obj/effect/turf_decal/stripes/corner, /obj/structure/cable/yellow{ @@ -76986,6 +76476,13 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/hallway/primary/central) +"ttz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/freezer, +/area/security/prison) "ttH" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -77147,6 +76644,13 @@ }, /turf/open/floor/iron/dark, /area/crew_quarters/locker) +"twT" = ( +/obj/machinery/door/airlock/maintenance{ + name = "security Maintenance"; + req_access_txt = "4" + }, +/turf/open/floor/iron/dark, +/area/security/detectives_office) "twY" = ( /obj/structure/closet/secure_closet/quartermaster, /obj/machinery/light_switch{ @@ -77183,11 +76687,10 @@ }, /turf/open/floor/iron/dark, /area/hydroponics) -"txv" = ( -/obj/effect/spawner/structure/window, -/obj/structure/curtain/directional, -/turf/open/floor/plating, -/area/security/prison) +"txL" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/turf/open/floor/iron/dark, +/area/medical/chemistry) "txO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/yellow{ @@ -77234,6 +76737,36 @@ }, /turf/open/floor/iron/dark/corner, /area/hallway/primary/fore) +"tyw" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -9; + pixel_y = 3 + }, +/obj/item/pen{ + pixel_x = -8; + pixel_y = 3 + }, +/obj/item/storage/box/syringes{ + pixel_x = 6; + pixel_y = 11 + }, +/obj/item/reagent_containers/glass/bottle/spaceacillin{ + pixel_x = 2; + pixel_y = -1 + }, +/obj/item/reagent_containers/glass/bottle/spaceacillin{ + pixel_x = 9; + pixel_y = -7 + }, +/obj/machinery/light{ + bulb_colour = "#22bfa2"; + bulb_vacuum_colour = "#22bfa2"; + dir = 4; + nightshift_light_color = "#22bfa2" + }, +/turf/open/floor/iron/dark, +/area/medical/virology) "tyN" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -77281,14 +76814,6 @@ }, /turf/open/floor/iron/dark, /area/bridge) -"tzy" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/science/shuttledock) "tzH" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line, @@ -77319,20 +76844,6 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/science/xenobiology) -"tzO" = ( -/obj/structure/sign/poster/official/help_others{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/opposingcorners, -/obj/machinery/vending/coffee, -/turf/open/floor/iron, -/area/hallway/primary/aft) "tzZ" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -77421,6 +76932,10 @@ /obj/effect/turf_decal/tile/purple/half/contrasted, /turf/open/floor/iron/showroomfloor, /area/crew_quarters/heads/hor) +"tBH" = ( +/obj/structure/sign/warning, +/turf/closed/wall, +/area/docking/arrival) "tBO" = ( /obj/machinery/power/apc/highcap/five_k{ areastring = "/area/maintenance/port"; @@ -77439,6 +76954,17 @@ burnt = 1 }, /area/maintenance/port) +"tBR" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced/prison, +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" + }, +/turf/open/floor/plating, +/area/security/prison) "tBS" = ( /obj/structure/table, /obj/item/stack/sheet/iron/fifty, @@ -77561,36 +77087,6 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/prison, /area/security/prison) -"tFa" = ( -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -9; - pixel_y = 3 - }, -/obj/item/pen{ - pixel_x = -8; - pixel_y = 3 - }, -/obj/item/storage/box/syringes{ - pixel_x = 6; - pixel_y = 11 - }, -/obj/item/reagent_containers/glass/bottle/spaceacillin{ - pixel_x = 2; - pixel_y = -1 - }, -/obj/item/reagent_containers/glass/bottle/spaceacillin{ - pixel_x = 9; - pixel_y = -7 - }, -/obj/machinery/light{ - bulb_colour = "#22bfa2"; - bulb_vacuum_colour = "#22bfa2"; - dir = 4; - nightshift_light_color = "#22bfa2" - }, -/turf/open/floor/iron/dark, -/area/medical/virology) "tFv" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -77637,16 +77133,6 @@ }, /turf/open/floor/iron/dark, /area/engine/engineering) -"tFB" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/airalarm/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Port Hallway Chemistry Desk"; - name = "port camera" - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/port) "tFU" = ( /obj/structure/chair{ dir = 4 @@ -77686,6 +77172,17 @@ burnt = 1 }, /area/maintenance/starboard/fore) +"tGu" = ( +/obj/effect/turf_decal/bot, +/obj/structure/tank_dispenser, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/engine/atmos) "tHj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -77841,14 +77338,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) -"tKG" = ( -/obj/machinery/door/airlock/maintenance{ - name = "morgue Maintenance"; - req_access_txt = "5;6;22" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/medical/morgue) "tKN" = ( /obj/structure/girder, /obj/effect/decal/cleanable/dirt, @@ -77907,6 +77396,25 @@ burnt = 1 }, /area/maintenance/port) +"tMl" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/external{ + name = "mass Driver Intersection"; + req_access_txt = "12" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/maintenance/port/fore) "tMt" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/dirt, @@ -78119,6 +77627,39 @@ }, /turf/open/floor/iron/dark, /area/engine/atmos) +"tPO" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/light, +/obj/item/radio/intercom{ + pixel_y = -28 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/iron, +/area/engine/atmos) +"tPR" = ( +/obj/machinery/door/airlock/maintenance{ + name = "bar Maintenance"; + req_access_txt = "25" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/maintenance/central) "tPU" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/effect/decal/cleanable/dirt, @@ -78183,6 +77724,14 @@ }, /turf/open/floor/iron/showroomfloor, /area/science/robotics/lab) +"tRw" = ( +/obj/machinery/door/airlock/maintenance{ + name = "morgue Maintenance"; + req_access_txt = "5;6;22" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/medical/morgue) "tRA" = ( /obj/machinery/airalarm/directional/west{ pixel_x = -23 @@ -78196,6 +77745,20 @@ }, /turf/open/floor/iron, /area/security/checkpoint/medical) +"tRE" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/ore_box, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/advanced_airlock_controller{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark, +/area/quartermaster/miningoffice) "tRF" = ( /obj/item/kirbyplants{ icon_state = "plant-05" @@ -78271,6 +77834,20 @@ }, /turf/open/floor/iron/showroomfloor, /area/crew_quarters/heads/cmo) +"tTR" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/cryopod{ + desc = "Suited for Cyborgs and Humanoids, the pod is a safe place for personnel affected by the Space Sleep Disorder to get some rest. If you think that this the easy way out, Nanotrasen will address your situation in a later date..."; + name = "Jail cryogenic freezer" + }, +/obj/machinery/computer/cryopod{ + pixel_y = -25 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/prison, +/area/security/prison) "tUb" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/gulag_item_reclaimer{ @@ -78304,19 +77881,6 @@ }, /turf/open/floor/iron, /area/quartermaster/exploration_dock) -"tUZ" = ( -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = -20; - pixel_y = 54 - }, -/turf/open/floor/iron, -/area/engine/atmos) "tVh" = ( /obj/effect/turf_decal/bot, /obj/structure/sign/warning/nosmoking{ @@ -78351,17 +77915,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/medical/genetics/cloning) -"tVK" = ( -/obj/effect/turf_decal/tile/dark/anticorner/contrasted{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/item/storage/firstaid/regular, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/medical/medbay/central) "tWa" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -78420,28 +77973,6 @@ }, /turf/open/floor/iron/dark, /area/hydroponics) -"tXM" = ( -/obj/effect/turf_decal/tile/blue/half/contrasted, -/obj/machinery/power/apc/auto_name/directional/east{ - name = "Cloning APC" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/paper/guides/jobs/medical/cloning, -/obj/item/book/manual/wiki/medical_cloning{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/crowbar, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/iron/showroomfloor, -/area/medical/genetics/cloning) "tXU" = ( /obj/structure/cable/yellow{ icon_state = "0-2" @@ -78505,20 +78036,16 @@ }, /turf/open/floor/iron/dark, /area/crew_quarters/heads/hop) -"uag" = ( +"uah" = ( /obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced/prison, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" + id = "transittube"; + name = "Transit Tube Blast Door" }, -/turf/open/floor/plating, -/area/security/prison) +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/iron/dark, +/area/bridge) "uaG" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/tile/purple/half/contrasted{ @@ -78584,6 +78111,19 @@ /obj/effect/turf_decal/siding/white, /turf/open/floor/iron/showroomfloor, /area/crew_quarters/kitchen) +"ubP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/flora/grass/jungle/b, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "ubT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -78763,19 +78303,6 @@ burnt = 1 }, /area/maintenance/starboard) -"ueh" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/mineral/plasma{ - amount = 5 - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/storage/satellite) "uek" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -78920,21 +78447,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/medical/storage) -"ufF" = ( -/obj/structure/dresser, -/obj/machinery/button/door{ - id = "Cabin_1"; - name = "Cabin 1 Privacy Lock"; - normaldoorcontrol = 1; - pixel_y = 24; - specialfunctions = 4 - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/locker) "ufM" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -78949,6 +78461,19 @@ /obj/effect/turf_decal/tile/red, /turf/open/floor/iron, /area/engine/engineering) +"ufP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/turf/open/floor/iron/showroomfloor, +/area/engine/atmos) "ugf" = ( /obj/structure/window/reinforced{ dir = 8 @@ -79064,6 +78589,23 @@ }, /turf/open/floor/plating, /area/maintenance/port) +"uiw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "prison Processing"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/security/prison) "uja" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -79111,6 +78653,20 @@ }, /turf/open/floor/iron/showroomfloor, /area/science/aft) +"ujF" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced/prison, +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" + }, +/turf/open/floor/plating, +/area/security/prison) "ujQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/corner{ @@ -79178,21 +78734,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /turf/open/floor/iron/showroomfloor, /area/security/main) -"uli" = ( -/obj/structure/table/glass, -/obj/item/storage/box/monkeycubes{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/storage/box/monkeycubes{ - pixel_x = 2 - }, -/obj/item/clothing/gloves/color/latex, -/obj/effect/turf_decal/tile/dark_green/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/medical/virology) "ulk" = ( /obj/machinery/light, /obj/structure/disposalpipe/segment{ @@ -79210,6 +78751,17 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) +"ulA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosspace"; + name = "Space Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) "ulS" = ( /obj/machinery/status_display/supply{ pixel_x = 32; @@ -79278,6 +78830,18 @@ burnt = 1 }, /area/maintenance/fore) +"unG" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced/prison, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/security/prison) "unQ" = ( /obj/effect/turf_decal/loading_area{ dir = 1 @@ -79331,17 +78895,6 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/iron, /area/security/prison) -"uoC" = ( -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/red/opposingcorners, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/library) "uoK" = ( /turf/closed/wall/r_wall/rust, /area/security/brig) @@ -79409,6 +78962,17 @@ /obj/machinery/fax/cargo, /turf/open/floor/iron, /area/quartermaster/storage) +"upL" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced/prison, +/turf/open/floor/plating, +/area/security/prison) "upQ" = ( /obj/effect/turf_decal/delivery, /obj/structure/closet/l3closet/scientist, @@ -79418,10 +78982,6 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron/dark, /area/science/xenobiology) -"upS" = ( -/obj/machinery/airalarm/directional/east, -/turf/open/floor/engine, -/area/science/xenobiology) "uqd" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -79437,6 +78997,9 @@ burnt = 1 }, /area/maintenance/starboard/aft) +"uqf" = ( +/turf/closed/wall/rust, +/area/docking/arrival) "uqj" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -79601,6 +79164,17 @@ broken = 1 }, /area/maintenance/central) +"urT" = ( +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/red/opposingcorners, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/showroomfloor, +/area/library) "usl" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ @@ -79610,6 +79184,17 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/security/main) +"usy" = ( +/obj/item/book/manual/wiki/xenoarchaeology{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/showroomfloor, +/area/science/explab) "usN" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/stripes/line, @@ -79837,23 +79422,6 @@ broken = 1 }, /area/maintenance/port/aft) -"uwc" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/airlock/public/glass{ - name = "Medbay" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) "uwn" = ( /obj/machinery/rnd/production/techfab/department/medical, /obj/effect/turf_decal/tile/blue/half/contrasted, @@ -80066,6 +79634,17 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/chapel/office) +"uzR" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/airalarm/directional/east, +/obj/structure/sign/warning/vacuum{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/fore) "uAe" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -80109,10 +79688,22 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/iron/dark, /area/bridge) -"uAM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/r_wall, -/area/security/prison) +"uAx" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/iron, +/area/engine/atmos) "uAQ" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -80149,24 +79740,34 @@ }, /turf/open/floor/iron/showroomfloor, /area/medical/storage) -"uAW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosspace"; - name = "Space Blast Door" - }, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) "uBc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) +"uBq" = ( +/obj/structure/curtain, +/obj/effect/turf_decal/delivery, +/obj/machinery/shower{ + dir = 4; + pixel_x = 8 + }, +/obj/structure/sign/poster/official/no_erp{ + pixel_x = -32 + }, +/turf/open/floor/noslip/white, +/area/security/prison) +"uBQ" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/security/prison) "uCE" = ( /obj/structure/bookcase/random/religion, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -80263,6 +79864,16 @@ /obj/effect/turf_decal/tile/red, /turf/open/floor/iron, /area/hallway/secondary/entry) +"uEd" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/engine/atmos) "uEe" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/stripes/corner{ @@ -80296,23 +79907,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/showroomfloor, /area/medical/chemistry) -"uEl" = ( -/obj/structure/closet/secure_closet/personal{ - name = "Command Locker" - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/hallway/secondary/exit/departure_lounge) "uEB" = ( /obj/effect/decal/cleanable/cobweb, /obj/item/kirbyplants{ @@ -80335,19 +79929,6 @@ }, /turf/open/floor/iron, /area/crew_quarters/fitness/recreation) -"uFf" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/disposal/bin, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/structure/window/reinforced, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, -/turf/open/floor/iron/dark, -/area/engine/atmos) "uFh" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -80379,13 +79960,6 @@ }, /turf/open/floor/iron, /area/bridge) -"uFN" = ( -/obj/structure/bed{ - dir = 8 - }, -/obj/item/bedsheet/brown, -/turf/open/floor/prison, -/area/security/prison) "uFY" = ( /obj/structure/table/reinforced, /obj/item/storage/crayons, @@ -80409,6 +79983,14 @@ /obj/machinery/holopad, /turf/open/floor/iron/showroomfloor, /area/medical/medbay/central) +"uGy" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/grass/jungle, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "uGN" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/dirt, @@ -80874,20 +80456,6 @@ broken = 1 }, /area/maintenance/port/fore) -"uOr" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigfrontdoor"; - name = "Front Security Blast Door" - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/security/brig) -"uON" = ( -/turf/closed/wall/rust, -/area/docking/arrival) "uOX" = ( /obj/effect/turf_decal/tile/red/fourcorners/contrasted, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -81029,6 +80597,10 @@ /obj/effect/turf_decal/tile/red/opposingcorners, /turf/open/floor/iron, /area/hallway/secondary/entry) +"uRc" = ( +/obj/machinery/airalarm/directional/east, +/turf/open/floor/engine, +/area/science/xenobiology) "uRl" = ( /obj/machinery/door/airlock/maintenance{ req_one_access_txt = "12;47" @@ -81053,6 +80625,26 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/hallway/primary/fore) +"uRL" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/curtain, +/obj/effect/turf_decal/delivery, +/obj/machinery/shower{ + dir = 4; + pixel_x = 8 + }, +/obj/item/radio/intercom{ + freerange = 1; + name = "Prison intercom"; + desc = "Talk through this. It looks like it has been modified to not broadcast."; + prison_radio = 1; + pixel_y = 26 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/noslip/white, +/area/security/prison) "uSg" = ( /turf/closed/wall/r_wall, /area/quartermaster/exploration_prep) @@ -81332,6 +80924,15 @@ /obj/effect/turf_decal/tile/blue, /turf/open/floor/iron, /area/engine/atmos) +"uZr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/door/poddoor/shutters{ + id = "explorerstorage"; + name = "Exploration Storage Shutter" + }, +/turf/open/floor/iron, +/area/quartermaster/exploration_dock) "uZM" = ( /obj/effect/decal/cleanable/dirt, /obj/item/radio/intercom{ @@ -81363,13 +80964,6 @@ }, /turf/open/floor/iron/dark, /area/hallway/primary/port) -"vai" = ( -/obj/effect/spawner/structure/window, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/plating, -/area/science/mixing) "vap" = ( /obj/effect/turf_decal/tile/dark_blue/opposingcorners, /obj/structure/chair/fancy/comfy{ @@ -81477,6 +81071,25 @@ }, /turf/open/floor/iron/showroomfloor, /area/security/main) +"vbu" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance/external{ + name = "mass Driver Intersection"; + req_access_txt = "12" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/maintenance/fore) "vbG" = ( /obj/effect/decal/cleanable/dirt, /obj/item/wrench, @@ -81645,6 +81258,27 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/miningoffice) +"vec" = ( +/obj/structure/table, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/bruise_pack{ + pixel_x = 4 + }, +/obj/item/storage/firstaid/regular, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/iron/dark, +/area/medical/medbay/lobby) "vee" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -81916,25 +81550,6 @@ /obj/structure/punching_bag, /turf/open/floor/prison, /area/security/prison) -"viB" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/iron/showroomfloor, -/area/science/shuttledock) "viZ" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/tile/blue{ @@ -81978,6 +81593,23 @@ }, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) +"vji" = ( +/obj/machinery/vendor/mining, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/east, +/obj/machinery/status_display/supply{ + pixel_y = -32 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Mining Dock"; + name = "cargo camera"; + network = list("ss13","qm") + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/quartermaster/miningoffice) "vjR" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -82184,16 +81816,6 @@ burnt = 1 }, /area/maintenance/starboard) -"vmG" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/airalarm/directional/north, -/obj/machinery/space_heater, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/science/shuttledock) "vmQ" = ( /obj/structure/chair{ dir = 1 @@ -82267,6 +81889,33 @@ }, /turf/open/floor/iron/dark, /area/science/xenobiology) +"vnq" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_x = -28 + }, +/obj/machinery/camera{ + c_tag = "Recovery Room"; + dir = 8; + name = "medical camera"; + network = list("ss13","medical") + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron/showroomfloor, +/area/medical/storage) "vns" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/corner{ @@ -82467,6 +82116,12 @@ /obj/effect/turf_decal/tile/yellow/opposingcorners, /turf/open/floor/iron/showroomfloor, /area/maintenance/port/aft) +"vrt" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/engine/atmos) "vrE" = ( /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /obj/structure/cable/yellow{ @@ -82548,22 +82203,6 @@ broken = 1 }, /area/chapel/office) -"vtC" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/science/xenobiology) "vtG" = ( /obj/effect/turf_decal/stripes/corner, /obj/effect/turf_decal/stripes/corner{ @@ -82595,33 +82234,6 @@ broken = 1 }, /area/maintenance/starboard/fore) -"vtM" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/obj/item/radio/intercom{ - pixel_x = -28 - }, -/obj/machinery/camera{ - c_tag = "Recovery Room"; - dir = 8; - name = "medical camera"; - network = list("ss13","medical") - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/medical/storage) "vtR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -82703,6 +82315,21 @@ burnt = 1 }, /area/maintenance/port) +"vvs" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/iron, +/area/engine/atmos) "vvF" = ( /obj/effect/landmark/start/station_engineer, /obj/structure/cable/yellow{ @@ -82813,6 +82440,16 @@ }, /turf/open/floor/iron/showroomfloor, /area/security/main) +"vxm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/showroomfloor, +/area/science/xenobiology) "vxq" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -83032,19 +82669,6 @@ /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron/dark, /area/crew_quarters/bar) -"vzU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/showroomfloor, -/area/science/xenobiology) "vAb" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -83114,6 +82738,25 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron, /area/engine/atmos) +"vBF" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/advanced_airlock_controller{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron, +/area/hallway/secondary/exit/departure_lounge) "vCb" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -83161,20 +82804,6 @@ burnt = 1 }, /area/maintenance/starboard/fore) -"vDC" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigfrontdoor"; - name = "Front Security Blast Door" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/security/brig) "vDG" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -83193,6 +82822,18 @@ }, /turf/open/floor/iron, /area/engine/atmos) +"vDR" = ( +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "vDV" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -83204,6 +82845,27 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/hallway/primary/starboard) +"vDW" = ( +/obj/machinery/light_switch{ + pixel_x = 24; + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/structure/mirror{ + pixel_x = 26 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/camera{ + c_tag = "Recovery Room"; + name = "cloning camera"; + network = list("ss13","medical"); + dir = 4 + }, +/turf/open/floor/iron/showroomfloor, +/area/medical/genetics/cloning) "vDX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -83725,22 +83387,6 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/hallway/primary/fore) -"vKv" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the test chamber."; - dir = 8; - name = "Test Chamber Telescreen"; - network = list("toxins"); - pixel_x = 30 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/science/mixing) "vKw" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -84016,6 +83662,17 @@ }, /turf/open/floor/iron/dark, /area/janitor) +"vOK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/engine/atmos) "vPa" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/effect/turf_decal/stripes/line{ @@ -84031,6 +83688,23 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) +"vQi" = ( +/obj/machinery/door/airlock/security{ + name = "EVA Room"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/security/execution/transfer) "vQN" = ( /obj/machinery/light{ dir = 8 @@ -84118,6 +83792,25 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron/dark, /area/chapel/main) +"vRA" = ( +/obj/machinery/door/airlock/maintenance{ + name = "brig Maintenance"; + req_one_access_txt = "63" + }, +/obj/structure/sign/directions/evac{ + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron/dark, +/area/security/brig) "vRE" = ( /obj/effect/turf_decal/tile/purple/half/contrasted, /turf/open/floor/iron/showroomfloor, @@ -84163,18 +83856,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/hallway/primary/fore) -"vSX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/showroomfloor, -/area/medical/medbay/central) "vTf" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ @@ -84226,6 +83907,20 @@ /obj/effect/turf_decal/tile/neutral/anticorner/contrasted, /turf/open/floor/iron/dark, /area/hallway/primary/fore) +"vUa" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1; + color = "#439C1E" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron/freezer, +/area/medical/virology) "vUg" = ( /obj/machinery/camera/directional/north{ c_tag = "Atmospherics Tank - O2"; @@ -84320,6 +84015,25 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/hallway/primary/central) +"vWh" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-08" + }, +/obj/machinery/status_display/evac{ + pixel_x = 32 + }, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron/showroomfloor, +/area/medical/medbay/central) "vWo" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -84560,6 +84274,34 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/office) +"vZd" = ( +/obj/machinery/door/airlock/maintenance{ + name = "mech Bay Maintenance"; + req_access_txt = "29" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/iron/dark, +/area/maintenance/starboard/fore) +"vZf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/iron/showroomfloor, +/area/medical/medbay/lobby) "vZv" = ( /obj/structure/table, /obj/item/analyzer{ @@ -84696,6 +84438,21 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron/dark, /area/chapel/main) +"waU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/iron/showroomfloor, +/area/science/mixing) "wbz" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -84741,22 +84498,6 @@ }, /turf/open/floor/iron/dark, /area/science/aft) -"wcn" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ - name = "euthanization chamber freezer" - }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/science/xenobiology) "wco" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/chair/stool/bar/directional/west, @@ -85094,6 +84835,16 @@ }, /turf/open/floor/iron/dark, /area/crew_quarters/kitchen) +"wgW" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "wgX" = ( /turf/closed/wall/r_wall/rust, /area/security/main) @@ -85110,6 +84861,13 @@ /obj/item/beacon, /turf/open/floor/engine, /area/science/explab) +"whs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plating, +/area/maintenance/port/aft) "whx" = ( /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron/dark, @@ -85127,6 +84885,13 @@ }, /turf/open/floor/iron/dark, /area/science/mixing) +"whL" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/iron, +/area/engine/atmos) "whP" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -85208,6 +84973,20 @@ broken = 1 }, /area/maintenance/fore) +"wis" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigfrontdoor"; + name = "Front Security Blast Door" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/brig) "wit" = ( /obj/effect/landmark/event_spawn, /obj/structure/cable/yellow{ @@ -85382,6 +85161,13 @@ broken = 1 }, /area/maintenance/port) +"wlv" = ( +/obj/machinery/door/airlock/maintenance{ + name = "hydroponics Maintenance"; + req_access_txt = "35" + }, +/turf/open/floor/iron/dark, +/area/maintenance/central) "wly" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -85715,6 +85501,26 @@ }, /turf/open/floor/iron, /area/crew_quarters/heads/chief) +"wqp" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating{ + broken = 1 + }, +/area/maintenance/starboard) "wqu" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -85839,26 +85645,6 @@ /obj/effect/turf_decal/tile/neutral/anticorner/contrasted, /turf/open/floor/iron/dark, /area/storage/primary) -"wsz" = ( -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - network = list("ss13", "prison", "security") - }, -/turf/open/floor/iron, -/area/hallway/primary/aft) "wsH" = ( /obj/structure/bookcase/random/religion, /obj/machinery/firealarm{ @@ -85924,6 +85710,19 @@ burnt = 1 }, /area/quartermaster/warehouse) +"wtA" = ( +/obj/structure/flora/ausbushes/palebush, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "wtM" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -86101,31 +85900,6 @@ /obj/effect/turf_decal/tile/yellow, /turf/open/floor/iron, /area/hallway/primary/starboard) -"wvM" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/button/massdriver{ - id = "toxinsdriver"; - pixel_x = 24; - pixel_y = -24 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the test chamber."; - dir = 8; - name = "Test Chamber Telescreen"; - network = list("toxins"); - pixel_x = 30 - }, -/obj/machinery/light/small, -/obj/machinery/airalarm/directional/south{ - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/science/mixing) "wvO" = ( /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron, @@ -86191,6 +85965,25 @@ }, /turf/open/floor/iron, /area/ai_monitored/storage/eva) +"wwT" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "47"; + name = "science Aft Maintenance Access" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/maintenance/starboard/fore) "wxg" = ( /obj/effect/turf_decal/box, /obj/machinery/power/solar{ @@ -86294,6 +86087,41 @@ /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) +"wzl" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/radio{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/pen, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = -30 + }, +/obj/machinery/button/door{ + id = "Biohazard"; + name = "Emergency Research Lockdown"; + pixel_x = 24; + pixel_y = -24; + req_access_txt = "47" + }, +/obj/machinery/camera/directional/east{ + c_tag = "Science Security Post"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/security/checkpoint/science/research) "wzr" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/stripes/line, @@ -86349,6 +86177,22 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/engine/atmos) +"wzT" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/item/toy/figure/atmos{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/engine/atmos) "wAc" = ( /obj/machinery/holopad, /obj/effect/turf_decal/bot_white, @@ -86361,6 +86205,14 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron/dark, /area/chapel/main) +"wAf" = ( +/obj/machinery/airalarm/directional/south, +/obj/structure/table/reinforced, +/obj/machinery/camera/autoname{ + network = list("ss13", "prison") + }, +/turf/open/floor/iron/techmaint, +/area/security/prison) "wAo" = ( /obj/structure/bodycontainer/morgue{ dir = 8 @@ -86491,56 +86343,20 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"wCt" = ( -/obj/effect/spawner/structure/window/reinforced/prison, -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/security/prison) -"wCM" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/radio{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/pen, -/obj/effect/turf_decal/stripes/corner{ +"wCr" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 4 }, -/obj/machinery/airalarm/directional/east, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = -30 - }, -/obj/machinery/button/door{ - id = "Biohazard"; - name = "Emergency Research Lockdown"; - pixel_x = 24; - pixel_y = -24; - req_access_txt = "47" - }, -/obj/machinery/camera/directional/east{ - c_tag = "Science Security Post"; - name = "science camera"; - network = list("ss13","rd") +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 }, -/obj/effect/turf_decal/tile/neutral{ +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/disposalpipe/sorting/mail/destination/virology/flip{ dir = 1 }, -/turf/open/floor/iron/dark, -/area/security/checkpoint/science/research) +/turf/open/floor/iron/showroomfloor, +/area/medical/medbay/central) "wCV" = ( /obj/structure/table/wood/fancy, /obj/effect/turf_decal/stripes/corner{ @@ -86646,17 +86462,6 @@ }, /turf/open/floor/plating, /area/quartermaster/warehouse) -"wEl" = ( -/obj/structure/table/glass, -/obj/machinery/microwave{ - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/showroomfloor, -/area/medical/medbay/central) "wEQ" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, @@ -87042,26 +86847,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"wKj" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/machinery/door/window/westright{ - name = "Atmospherics Desk"; - req_access_txt = "24" - }, -/obj/item/folder/yellow{ - pixel_x = -4 - }, -/obj/structure/desk_bell{ - pixel_x = 8 - }, -/turf/open/floor/plating, -/area/engine/atmos) "wKl" = ( /obj/structure/chair/office/light{ dir = 4 @@ -87148,6 +86933,15 @@ }, /turf/open/floor/iron/freezer, /area/medical/virology) +"wLc" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "wLe" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/yellow{ @@ -87163,6 +86957,15 @@ burnt = 1 }, /area/maintenance/starboard) +"wLu" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/engine/atmos) "wLA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -87279,6 +87082,25 @@ }, /turf/open/floor/iron/dark, /area/security/brig) +"wOi" = ( +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/camera/autoname, +/turf/open/floor/iron/showroomfloor, +/area/science/shuttledock) "wOj" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -87327,6 +87149,18 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/aft) +"wOP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosspace"; + name = "Space Blast Door" + }, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) "wOS" = ( /obj/structure/rack, /obj/effect/turf_decal/bot, @@ -87374,6 +87208,21 @@ burnt = 1 }, /area/maintenance/port) +"wPI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/effect/spawner/structure/window/reinforced/prison, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" + }, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/security/prison) "wPW" = ( /obj/item/radio/intercom{ pixel_x = -28; @@ -87609,6 +87458,14 @@ }, /turf/open/floor/iron/dark, /area/engine/gravity_generator) +"wTl" = ( +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/iron/dark, +/area/quartermaster/sorting) "wTm" = ( /obj/effect/turf_decal/tile/red/anticorner/contrasted{ dir = 1 @@ -87744,6 +87601,13 @@ /obj/effect/turf_decal/tile/neutral/anticorner/contrasted, /turf/open/floor/iron/dark, /area/maintenance/central) +"wVg" = ( +/obj/structure/bed{ + dir = 8 + }, +/obj/item/bedsheet/brown, +/turf/open/floor/prison, +/area/security/prison) "wVi" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 1; @@ -87832,6 +87696,17 @@ /obj/effect/turf_decal/tile/purple/half/contrasted, /turf/open/floor/iron/showroomfloor, /area/science/aft) +"wWh" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark, +/area/security/brig/aft) "wWj" = ( /obj/machinery/holopad, /obj/effect/turf_decal/bot, @@ -87871,20 +87746,26 @@ broken = 1 }, /area/maintenance/port/aft) -"wXa" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_y = 5 +"wWR" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" }, -/obj/machinery/light{ - dir = 1 +/obj/machinery/door/window/westright{ + name = "Atmospherics Desk"; + req_access_txt = "24" }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 +/obj/item/folder/yellow{ + pixel_x = -4 }, -/turf/open/floor/iron/dark, -/area/crew_quarters/kitchen) +/obj/structure/desk_bell{ + pixel_x = 8 + }, +/turf/open/floor/plating, +/area/engine/atmos) "wXg" = ( /obj/effect/turf_decal/bot, /obj/structure/cable/yellow{ @@ -87921,27 +87802,6 @@ name = "mainframe floor" }, /area/tcommsat/server) -"wXD" = ( -/obj/structure/table, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/bruise_pack{ - pixel_x = 4 - }, -/obj/item/storage/firstaid/regular, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/dark/opposingcorners, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/iron/dark, -/area/medical/medbay/lobby) "wXN" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/room/threexthree, @@ -88134,6 +87994,18 @@ }, /turf/open/floor/iron, /area/crew_quarters/fitness/recreation) +"xan" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating/asteroid/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "xav" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ @@ -88187,6 +88059,19 @@ broken = 1 }, /area/maintenance/port/aft) +"xbm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plating/airless{ + initial_gas_mix = "o2=14;n2=23;TEMP=300" + }, +/area/docking/arrival) "xbp" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/event_spawn, @@ -88290,6 +88175,33 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/engine/engineering) +"xdl" = ( +/obj/item/kirbyplants{ + icon_state = "plant-03" + }, +/obj/machinery/camera/directional/west{ + c_tag = "Engineering Foyer"; + name = "engineering camera"; + network = list("ss13","engine") + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/iron, +/area/engine/break_room) "xdm" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ @@ -88408,6 +88320,21 @@ /obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/bridge) +"xfv" = ( +/obj/effect/spawner/structure/window/reinforced/prison, +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/security/prison) "xfw" = ( /obj/structure/table, /obj/effect/turf_decal/bot, @@ -88529,6 +88456,51 @@ broken = 1 }, /area/maintenance/starboard) +"xhI" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/button/massdriver{ + id = "toxinsdriver"; + pixel_x = 24; + pixel_y = -24 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the test chamber."; + dir = 8; + name = "Test Chamber Telescreen"; + network = list("toxins"); + pixel_x = 30 + }, +/obj/machinery/light/small, +/obj/machinery/airalarm/directional/south{ + pixel_y = -22 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/science/mixing) +"xhV" = ( +/obj/item/target, +/obj/item/target/syndicate, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/structure/closet/crate/secure{ + desc = "A secure crate containing various materials for building a customised test-site."; + name = "Test Site Materials Crate"; + req_access_txt = "8" + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/iron/dark, +/area/science/mixing) "xin" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -88652,6 +88624,22 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/fore) +"xjB" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/item/radio/intercom{ + pixel_x = -28 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 1 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/iron/showroomfloor, +/area/science/explab) "xjP" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/techstorage/security, @@ -88678,6 +88666,16 @@ }, /turf/open/floor/iron/dark, /area/crew_quarters/fitness/recreation) +"xjU" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/air, +/obj/item/wrench, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/quartermaster/miningoffice) "xkp" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -88696,6 +88694,17 @@ broken = 1 }, /area/maintenance/starboard/aft) +"xkD" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced/prison, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/prison) "xlk" = ( /obj/structure/cable/yellow{ icon_state = "1-8" @@ -88875,6 +88884,22 @@ }, /turf/open/floor/iron/showroomfloor, /area/medical/medbay/central) +"xoj" = ( +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/airalarm/directional/east, +/obj/machinery/firealarm/directional/south, +/obj/machinery/camera/directional/east{ + c_tag = "Transferring Centre" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/execution/transfer) "xoK" = ( /obj/item/beacon, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -88892,6 +88917,14 @@ }, /turf/open/floor/iron/dark, /area/crew_quarters/heads/hos) +"xoR" = ( +/obj/structure/table/wood, +/obj/item/clothing/head/hats/bowler{ + pixel_y = 8 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/prison, +/area/security/prison) "xoW" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -88994,6 +89027,22 @@ }, /turf/open/floor/iron/showroomfloor, /area/science/robotics/lab) +"xpP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/showroomfloor, +/area/science/xenobiology) "xpR" = ( /obj/effect/turf_decal/box, /obj/structure/cable/yellow{ @@ -89140,31 +89189,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/hallway/primary/fore) -"xsh" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/security/prison) -"xsk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/checkpoint/medical) "xsl" = ( /obj/structure/sign/directions/evac{ dir = 4; @@ -89225,6 +89249,26 @@ dir = 8 }, /area/hallway/primary/port) +"xtK" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/button/door{ + id = "Cabin_2"; + name = "Cabin 2 Privacy Lock"; + normaldoorcontrol = 1; + pixel_y = 24; + specialfunctions = 4 + }, +/obj/machinery/airalarm/directional/east, +/obj/effect/landmark/start/assistant, +/obj/item/bedsheet/dorms, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood{ + broken = 1 + }, +/area/crew_quarters/locker) "xtN" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -89364,6 +89408,19 @@ }, /turf/open/floor/iron/showroomfloor, /area/medical/medbay/central) +"xwp" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = -20; + pixel_y = 54 + }, +/turf/open/floor/iron, +/area/engine/atmos) "xww" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -89388,20 +89445,18 @@ }, /turf/open/floor/iron/showroomfloor, /area/science/shuttledock) -"xwK" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 +"xwX" = ( +/obj/effect/spawner/structure/window/reinforced/prison, +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 +/obj/structure/cable/yellow{ + icon_state = "0-4" }, -/obj/machinery/light{ - dir = 1 +/turf/open/floor/plating{ + burnt = 1 }, -/turf/open/floor/wood, /area/security/prison) "xxh" = ( /obj/machinery/light{ @@ -89425,6 +89480,17 @@ }, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) +"xxw" = ( +/obj/effect/turf_decal/tile/dark/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/storage/firstaid/regular, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/medical/medbay/central) "xxB" = ( /obj/structure/noticeboard{ dir = 8; @@ -89440,14 +89506,6 @@ burnt = 1 }, /area/maintenance/port/fore) -"xxT" = ( -/obj/machinery/airalarm/directional/south, -/obj/structure/table/reinforced, -/obj/machinery/camera/autoname{ - network = list("ss13", "prison") - }, -/turf/open/floor/iron/techmaint, -/area/security/prison) "xye" = ( /obj/structure/cable/yellow{ icon_state = "1-8" @@ -89556,21 +89614,6 @@ }, /turf/open/floor/grass, /area/chapel/main) -"xzV" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/iron, -/area/engine/atmos) "xAu" = ( /obj/effect/turf_decal/tile/red/fourcorners/contrasted, /obj/effect/turf_decal/stripes/line{ @@ -89580,21 +89623,6 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, /turf/open/floor/prison, /area/security/prison) -"xAA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/effect/spawner/structure/window/reinforced/prison, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" - }, -/turf/open/floor/plating/airless{ - initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/security/prison) "xAM" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -89647,6 +89675,9 @@ }, /turf/open/floor/iron/showroomfloor, /area/medical/medbay/central) +"xBC" = ( +/turf/closed/wall, +/area/security/prison) "xBV" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/external{ @@ -89689,15 +89720,6 @@ }, /turf/open/floor/iron/dark, /area/crew_quarters/locker) -"xCB" = ( -/obj/effect/spawner/structure/window/reinforced/prison, -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/security/prison) "xCZ" = ( /obj/effect/decal/cleanable/dirt, /obj/item/storage/box/lights/mixed, @@ -90044,6 +90066,15 @@ /obj/effect/turf_decal/tile/yellow, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) +"xIF" = ( +/obj/effect/turf_decal/siding/wood/end, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood{ + broken = 1 + }, +/area/crew_quarters/bar) "xIG" = ( /obj/structure/table, /obj/effect/turf_decal/tile/blue/half/contrasted, @@ -90263,6 +90294,26 @@ }, /turf/open/floor/iron/dark, /area/science/shuttledock) +"xMp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Desk"; + req_access_txt = "24" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/engine/atmos) "xNb" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -90348,19 +90399,6 @@ }, /turf/open/floor/iron/dark, /area/crew_quarters/fitness/recreation) -"xOC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/components/binary/valve/digital/on/layer2{ - name = "Atmospherics Cutoff Valve" - }, -/turf/open/floor/plating{ - burnt = 1 - }, -/area/maintenance/port) "xON" = ( /obj/machinery/computer/holodeck/prison, /obj/effect/turf_decal/stripes/line{ @@ -90490,6 +90528,14 @@ }, /turf/open/floor/iron/dark, /area/crew_quarters/heads/hor) +"xQE" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/engine/atmos) "xQJ" = ( /obj/effect/landmark/event_spawn, /obj/structure/disposalpipe/segment{ @@ -90531,6 +90577,23 @@ burnt = 1 }, /area/maintenance/starboard) +"xRy" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/airlock/public/glass{ + name = "Medbay" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) "xRF" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -90571,22 +90634,6 @@ burnt = 1 }, /area/maintenance/fore) -"xSh" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/science/mixing) "xSk" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -90743,6 +90790,15 @@ }, /turf/open/floor/iron/dark, /area/maintenance/port/aft) +"xUT" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/effect/turf_decal/delivery, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/engine/engineering) "xUV" = ( /obj/structure/cable/yellow{ icon_state = "2-4" @@ -90934,6 +90990,17 @@ }, /turf/open/floor/iron/dark, /area/medical/surgery) +"xXi" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/showroomfloor, +/area/science/mixing) "xXl" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -90947,6 +91014,21 @@ }, /turf/open/floor/iron, /area/construction/mining/aux_base) +"xXq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/showroomfloor, +/area/science/research) "xXr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -90975,26 +91057,6 @@ }, /turf/open/floor/iron, /area/hydroponics) -"xXH" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/disposalpipe/sorting/mail/destination/testing_range/flip{ - dir = 2 - }, -/turf/open/floor/iron/showroomfloor, -/area/science/research) "xXS" = ( /obj/effect/turf_decal/stripes/corner, /obj/effect/decal/cleanable/dirt, @@ -91204,6 +91266,11 @@ /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/plating, /area/maintenance/starboard/fore) +"ybB" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/iron, +/area/engine/atmos) "ybO" = ( /obj/machinery/door/window/northleft{ dir = 4; @@ -91230,25 +91297,6 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/sorting) -"ycd" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -24; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/opposingcorners, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/iron, -/area/quartermaster/sorting) "ycS" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/dirt, @@ -91611,6 +91659,18 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/storage) +"yii" = ( +/obj/structure/table, +/obj/item/aicard, +/obj/item/aiModule/reset, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/storage/tech) "yio" = ( /obj/item/kirbyplants{ icon_state = "plant-17"; @@ -91643,6 +91703,18 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/security/main) +"yiy" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "NTMSLoad"; + name = "off ramp" + }, +/obj/machinery/door/poddoor{ + id = "freight_port"; + name = "Freight Bay Blast Door" + }, +/turf/open/floor/plating, +/area/quartermaster/warehouse) "yiC" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -91695,13 +91767,6 @@ /obj/effect/turf_decal/tile/red/opposingcorners, /turf/open/floor/iron/showroomfloor, /area/crew_quarters/kitchen) -"yjg" = ( -/obj/structure/bookcase/manuals, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/wood, -/area/security/prison) "yjp" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -91711,12 +91776,6 @@ broken = 1 }, /area/maintenance/aft) -"yju" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/wood, -/area/security/prison) "yjJ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 @@ -91859,51 +91918,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/crew_quarters/cryopods) -"yld" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/camera/directional/north{ - network = list("ss13", "security") - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/brig) -"ylk" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/tile/dark_green/half/contrasted, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/medical/medbay/central) "yln" = ( /obj/structure/railing{ dir = 8 @@ -91946,28 +91960,14 @@ broken = 1 }, /area/maintenance/port) -"ylT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/loading_area{ +"ylR" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/light{ dir = 4 }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, +/obj/effect/turf_decal/tile/purple/half/contrasted, /turf/open/floor/iron, -/area/quartermaster/exploration_dock) +/area/hallway/primary/starboard) "ymb" = ( /obj/structure/closet/secure_closet/personal{ name = "Commissary Locker" @@ -105513,8 +105513,8 @@ crP gcw bJg amA -fWI -kAM +whs +mEf nTl ajd jNS @@ -106807,7 +106807,7 @@ ajd qUP rZr eVQ -nQH +wWh qUP kjI dJH @@ -107066,7 +107066,7 @@ cPT owT cTX qUP -jpl +smh tJO pgh jud @@ -107327,8 +107327,8 @@ sir wSq bvV mzE -qEp -mgx +eeQ +bMl bAr mzE kDZ @@ -107849,7 +107849,7 @@ qFB fVc pmm war -dVZ +nut cJI cTa ajd @@ -108605,9 +108605,9 @@ nQP lNO aav aav -gCu -wCt -xCB +bQy +xfv +nJH aav aav aav @@ -108875,13 +108875,13 @@ olW mzE vxa qty -kNZ +ouN exu uoK njG njG njG -lfu +vRA njG uoK njG @@ -109117,7 +109117,7 @@ awD kIZ oYy cnm -uAM +lfe qvH qvH qvH @@ -109126,11 +109126,11 @@ qvH nmY vbU eja -gCu +bQy hEG ciO dgh -fGK +pls qNA xEE agS @@ -109345,7 +109345,7 @@ aPa wmq phz iJK -vtM +vnq buk xWX aOZ @@ -109615,7 +109615,7 @@ mPI lfT vvm hyN -xOC +pLx ipG oRD xOw @@ -109641,8 +109641,8 @@ xON pTu lBQ aav -lfY -aTi +kKd +oSr mzE agS vKc @@ -109846,7 +109846,7 @@ sIg jaO aNG aNG -mCT +aCn aOL aNG aPA @@ -109896,14 +109896,14 @@ qvH qvH rfT iTH -xxT +wAf aav hxY mCw taE pjW chn -lLt +nEv agP oGA bgw @@ -110154,7 +110154,7 @@ qvH nmY fSy bnw -gCu +bQy hWi jcT cmG @@ -110172,7 +110172,7 @@ nWl sNf lYl eeZ -dZZ +mCS nWR ppz njG @@ -110619,7 +110619,7 @@ aNG iQN vsY xQJ -rPx +hAm aPA aPA dVC @@ -110660,16 +110660,16 @@ csS cBI elv aav -xwK +fYt yln yln yln -hZh +uBQ wnN uOX lFx aav -pXV +mbl aav aav dku @@ -110680,7 +110680,7 @@ ejj nxV eRb dsx -iHn +bMC gtG fll wVu @@ -110876,20 +110876,20 @@ aNG wST ykF klz -sWR +fZm aNG -lZK +fBS kQs rrL hkE aNQ -tVK +xxw dJh jdF xaJ ffb wOr -qJU +jOJ itX rMM krR @@ -110917,11 +110917,11 @@ cBv cBy pLS aav -fCh +jbm bKs bKs bKs -mmJ +orr qHm uOX qHC @@ -111146,7 +111146,7 @@ fQS lgT uvp gEs -xsk +gFI tmv qfO oNy @@ -111174,11 +111174,11 @@ cBw cBv kqj aav -iyU +gOI epb ukl izu -iAD +qbu iQT gJr irJ @@ -111204,7 +111204,7 @@ psa vEK gsI gRv -qRo +ulA aeU aeU aaa @@ -111397,7 +111397,7 @@ fbp ixg qti nfy -bru +iVR fzU xLc hJI @@ -111431,11 +111431,11 @@ cBx pdb kXQ aav -yju +jVa bKs bKs bKs -mmJ +orr ert neM oTm @@ -111461,7 +111461,7 @@ dbO oRZ rYb hNh -rGy +dPP aeU aUz aeU @@ -111686,13 +111686,13 @@ bKk bKk bKk taB -xAA +wPI aav -xsh +dnT sKz sKz sKz -erx +aNH trO wyk vid @@ -111718,7 +111718,7 @@ vre rqw czQ kVf -uAW +wOP aeU aeU aeu @@ -111914,14 +111914,14 @@ beD pat aXp aCL -qGE +oVs bLf qVp fDw mcs -nQa -hSb -toW +tkh +hwl +dyT raJ qDf hOq @@ -111939,11 +111939,11 @@ iVc bBY tkN bKo -gxd +kdV wNG cPW xPI -sJP +qAJ mlr qdE eUe @@ -112163,7 +112163,7 @@ pQP sPs iJy osy -mlp +qjN wYX uGf oBx @@ -112176,13 +112176,13 @@ eym mJm gxA hLe -pyh +wCr vAm -vSX -nDD -eKb -plP -ylk +aoU +muj +nfT +ilv +dmk fcl iwl dbX @@ -112200,7 +112200,7 @@ vGd iFD cPW oNK -fya +jCj glX vjR cOj @@ -112415,12 +112415,12 @@ lmS fCe aNL aNA -fYi -tXM +vDW +kXg qIB uwZ aNL -qPK +vWh kyF hnV uNo @@ -112435,12 +112435,12 @@ aNn aQW sQA dbg -hWT +lkt aQW afe -jWg -oSw -byA +oMW +cBi +oDA afe iPI afe @@ -112457,7 +112457,7 @@ iEh fxH cPW fxS -sJP +qAJ uFY lCW yhn @@ -112469,7 +112469,7 @@ rnM nhx oRF xIz -kGN +upL dlS mqm aVY @@ -112695,11 +112695,11 @@ xmY czN mVF afe -ovC +lmn wMy sWL bAN -uli +qLW lvi ukd wTN @@ -112714,19 +112714,19 @@ ykZ jUb cPW vIy -sZf +fqq aav -lDt -lDt -lDt -lDt -lDt -lDt +xBC +xBC +xBC +xBC +xBC +xBC knS sNl gMx uyd -ebU +ujF sZC iQE euo @@ -112952,7 +112952,7 @@ cJW swl edk afe -cpF +rFK hNA apH vlT @@ -112973,22 +112973,22 @@ cPX oYn dCd aav -edU -lDt -pou -rLg -gUQ -lDt -cuO +rlH +xBC +uRL +sMG +uBq +xBC +szb uJx gMx sgL -uag +lRw owZ fjE uft bZK -oDE +sip lAw jWP rul @@ -113185,7 +113185,7 @@ vpN nMA oBG fXg -tKG +tRw tkY sDM wdF @@ -113209,7 +113209,7 @@ bbO qoP bab aoH -pIb +azM pUY eXp vlT @@ -113230,14 +113230,14 @@ cBW cBv kqj aav -omE -hzI -jrQ -emF -rjd -lDt -yjg -mmJ +jBU +rrx +ttz +aIw +mxp +xBC +qUe +orr gUd tEI aat @@ -113437,7 +113437,7 @@ aeu aeu cwq cwp -akU +tMl cxI cwp afY @@ -113448,7 +113448,7 @@ iVk vkx fgT tKV -wEl +roU aQr pKe wdU @@ -113466,7 +113466,7 @@ vIG kwL nCn afe -foN +eTE bMi wKN bAN @@ -113487,23 +113487,23 @@ cBW cBy fHy aav -lDt -lDt -lDt -lDt -ajQ -lDt +xBC +xBC +xBC +xBC +pVv +xBC axv esa gMx eMU aav -sLj -rWi +xkD +unG bAc aat aav -yld +syp iiL pkk agS @@ -113702,11 +113702,11 @@ aWG aNC knJ jYz -iwX -taI +nDT +nUw aNn aNn -oSs +ldw nVT wqy fOp @@ -113723,10 +113723,10 @@ iVt iQX sKX afe -iuC +lTO fzk dUn -eDV +mFS cQU fAJ aPf @@ -113744,10 +113744,10 @@ bIV csN elv aav -gLj -cer -nON -fMu +sZM +pBJ +iXH +cgh xAu ptT hwI @@ -113758,7 +113758,7 @@ aav wTm uDB mHQ -lLr +iqP hAb ifn eUR @@ -113963,7 +113963,7 @@ pJy qlx cwv aNu -mvb +bKG rZd vSc bEC @@ -113973,17 +113973,17 @@ kvM uPQ iKi mnu -aRn +txL tpY uqJ udd uXo hhb soa -cJh +qze eoQ iKk -nCK +vUa uor vlT vbf @@ -114001,10 +114001,10 @@ bLu cBw elv aav -oIQ -iWQ -cdQ -txv +aXZ +trb +nqQ +dRS jkk kTb qKx @@ -114016,7 +114016,7 @@ kSJ qCJ vkG fTg -jKY +uiw cWw mMb vAv @@ -114252,23 +114252,23 @@ hKa xiQ wgm bIV -nOf +xtK buY bIV ajd kiL aav -lDt -lDt -lDt -lDt +xBC +xBC +xBC +xBC gre eNr lFx paA gCK nki -glZ +tBR uoB tML tco @@ -114465,7 +114465,7 @@ aeu aeu aeu adQ -alb +vbu cAU aWG btg @@ -114481,7 +114481,7 @@ aNn tKV aNn nYU -aGT +gyf qLX fFq pOf @@ -114492,16 +114492,16 @@ xYc agu rPd cYh -fAI +buc soa ruo drQ -tFa +tyw qyz fcE vlT -lte -meO +mmC +lOl afe qgm sNW @@ -114515,16 +114515,16 @@ bIV ljR gCf aav -gLj -iIj -nON -fMu +sZM +pWz +iXH +cgh qBN gxo -lDt -lDt -dKa -lDt +xBC +xBC +oWx +xBC aav paw fcN @@ -114738,9 +114738,9 @@ aVr bxh btA btA -wXD -iyS -iJp +vec +rAd +vZf thm xCh jTy @@ -114771,14 +114771,14 @@ bln bIV afz ucs -fXw -uFN -mpU -cdQ -txv +fxT +wVg +xoR +nqQ +dRS hrY -sUX -lDt +tTR +xBC dRC nze hNc @@ -114997,7 +114997,7 @@ sZF btA aSC aSC -uwc +xRy qLE aSC yde @@ -115023,7 +115023,7 @@ bJk bEn bIV bIV -ufF +gZP dFd bLu ouT @@ -115045,9 +115045,9 @@ fcN fcN veH aav -sBW -uOr -vDC +kFS +mIQ +wis agS kUv guj @@ -115238,7 +115238,7 @@ aiD ajy qPN alM -ank +jws vtt aqV arJ @@ -115254,7 +115254,7 @@ yjR byd vTy rja -jfo +eUz xjz lKP ubB @@ -115294,7 +115294,7 @@ ieY kTD dku ppu -lDt +xBC ppu aav fcZ @@ -115310,7 +115310,7 @@ pfo rYk myz mQS -qgc +aeI bYX jve jxr @@ -115511,7 +115511,7 @@ pZH aFV mwW nKU -eZv +fpv pFo jPV xsp @@ -115550,13 +115550,13 @@ tab oLa gqA dku -glZ +tBR aav -nkG +tkT aav aav -sVH -cFA +xwX +cZK aav aav ktV @@ -115778,7 +115778,7 @@ bih bhw qNQ wYt -tFB +iox bih bhw dgf @@ -116067,7 +116067,7 @@ omY qmk gnC dkA -amD +kVs kds hRI cnw @@ -116321,9 +116321,9 @@ svy uvY rHI ajd -tzO +qxI rGz -wsz +dUW hTB dxm nth @@ -116332,7 +116332,7 @@ wIl pZu cvL liw -nAC +knO dvt axw wfa @@ -116340,7 +116340,7 @@ gkA tKE kRW rdv -pYQ +xoj kDN lub wcp @@ -116596,7 +116596,7 @@ bFa bFa bFs eAT -rOd +vQi kDN kDN gTo @@ -116784,7 +116784,7 @@ cBf adH bsm aWG -aTf +cJQ aWG yeC qZQ @@ -116808,12 +116808,12 @@ gbc bfJ rty bgZ -bjp +fxP bjq buM bwa fTq -uoC +urT buC buC ubT @@ -117089,7 +117089,7 @@ sUJ wGz ajd bws -bNF +twT aaY leh ebh @@ -117575,9 +117575,9 @@ mMZ aHI wYK npg -hYi -aRL -ldk +xIF +qwj +auA sSM cIh bmt @@ -117832,9 +117832,9 @@ ojO ojO vXj fqQ -rfR +rDm buC -hBS +sDJ xdr uhR grj @@ -118330,7 +118330,7 @@ atE vng bwX bwX -cHl +nAt btA btA bwX @@ -119114,7 +119114,7 @@ eyW buQ btE btE -aOy +muD btE buQ buQ @@ -119377,7 +119377,7 @@ qRn btE btE aTL -lgC +tPR buQ btE urJ @@ -119575,7 +119575,7 @@ aAg aAg asZ asZ -cef +dAW asZ asZ aAg @@ -119584,7 +119584,7 @@ ceF jFZ auf mqo -ovF +gjy adZ chP chO @@ -119639,7 +119639,7 @@ bhz rkz bmI acN -ahI +aaT ajK aqQ aJl @@ -119691,7 +119691,7 @@ kBa amY aFJ qKk -rhy +nJO kkA eWq rMO @@ -119863,7 +119863,7 @@ aeo alm acm adQ -amh +pyY adH adH cGd @@ -119921,7 +119921,7 @@ bXJ myZ rjg bgv -rOB +huI eGw snf vHK @@ -119930,7 +119930,7 @@ dyM bFa ufB tQN -coh +lOO kkc cpT cqO @@ -120155,7 +120155,7 @@ lRT uKF asG lKq -gGW +ePU ipT pmV uHp @@ -120603,7 +120603,7 @@ aaH ajp cdY ced -eAH +onE ceq atB acV @@ -120667,7 +120667,7 @@ bgP cOf bjt cOf -cOi +kny wnI nwR iBC @@ -120906,7 +120906,7 @@ aNp ago aDf nFj -hpy +qBw jxm jLO tNz @@ -120921,8 +120921,8 @@ bsI bha arl bgQ -cOh -cOi +ikS +kny atP atT kDP @@ -120960,7 +120960,7 @@ bFZ jmY cKk aFM -cfH +ufP phK mwh aGz @@ -121178,7 +121178,7 @@ bza bzr cNZ bhE -cOi +kny vWv sWE qKm @@ -121405,7 +121405,7 @@ aeo alm acm adQ -amh +pyY adH adH ahh @@ -121463,7 +121463,7 @@ vZv nnC bDG jqk -foR +yii bmb bmb bCD @@ -121631,7 +121631,7 @@ asZ asZ aAg asZ -ceo +bLM asZ aAg asZ @@ -121688,11 +121688,11 @@ cdc heU byI byK -byS +djH bzk cNU bgQ -cOi +kny fSV aqc hTT @@ -121711,7 +121711,7 @@ ogJ kFU vXg bXt -aLC +dBH bVh dLv eyZ @@ -121949,7 +121949,7 @@ mYn cNV afh bgQ -cOi +kny fsE brK cce @@ -121968,7 +121968,7 @@ fOg jJL joG bRU -bTb +ann eJb jjM mqU @@ -122154,7 +122154,7 @@ cga cfY lou gaX -ueh +aYu flv cfY cfY @@ -122197,16 +122197,16 @@ wFn gGz hkq byj -sIH +sgH cdc cEW byI aZH -byU +lPJ cNW cNU bgQ -cOi +kny owk brL pNQ @@ -122225,7 +122225,7 @@ nVu pEH cEO bKI -bpU +jOP bSk pfq hwN @@ -122720,7 +122720,7 @@ bzj cNT cNU bhY -cOi +kny mKr vHq urz @@ -122960,7 +122960,7 @@ cfh pmD cfG cNS -raf +kTA cgo cfM cfM @@ -122977,8 +122977,8 @@ heq arl arl bhY -cOh -cOi +ikS +kny atP atT tyY @@ -123006,16 +123006,16 @@ bCT bDA bDe ceA -cgD +ddm vJY bGG bEV dHr aFM -ate -aCx -aCA -awI +wLu +jdh +ctK +bPd aDk dgD lPi @@ -123237,13 +123237,13 @@ bjm bfk cNY cPb -cOi +kny nyN oXz okM wxy lwx -gZW +lDd woU bnQ atj @@ -123269,12 +123269,12 @@ aFM aFM aIG aFM -aCk -auS -aBQ -aCr +xQE +lSb +ybB +vrt aDk -fcg +mXu eju hlb odW @@ -123480,7 +123480,7 @@ ago eux lVe fsl -lUJ +uzR aox aeD aox @@ -123523,13 +123523,13 @@ oof bmc chg aFM -crV -llQ -uFf -aCl -aBV -aBW -gcA +cbC +qWo +nIo +deO +odg +hOJ +jsd bxm ksl lEY @@ -123753,7 +123753,7 @@ cOc bcq vcN auw -akb +eXX pvh asx eMN @@ -123780,13 +123780,13 @@ bmc bmc chh aIG -nIh -tUZ -jSl -srP -xzV -kuW -gUp +jSh +xwp +hCR +uAx +iWX +niR +tPO aDk syb vYq @@ -124010,7 +124010,7 @@ cOc uJN gTT agZ -gJj +qPb saw avg iUN @@ -124020,7 +124020,7 @@ bzT bEe aui aui -bKz +lSt aup aui aui @@ -124036,15 +124036,15 @@ uji cbW qdR ftJ -aCg -hKu -rnx -kcT -oYH -cmN -iGF -gqa -cqM +pSJ +cMP +hIf +iMp +whL +vvs +dvl +sbw +mUe kbc vkX iCW @@ -124264,10 +124264,10 @@ ajt bib apX cOc -eXN +eox qhn auZ -kiE +uah hMz apA cIt @@ -124293,14 +124293,14 @@ sGC sGC pek xye -aCg -bUv -mUk -kCN -lGT -nYP -ixr -nyk +pSJ +quj +wzT +rIP +uEd +cLG +lXi +tGu aDk ssj rkQ @@ -124509,7 +124509,7 @@ hXI uDA aGh aGh -aSQ +daD chu aGh ajt @@ -124552,12 +124552,12 @@ glf gZD aFM aFM -bHq -wKj -bqD -cmX +vOK +wWR +oOU +xMp aFM -cpd +lfi aFM aDj aKw @@ -124774,7 +124774,7 @@ aLa bnr boT beM -bhd +gWv bie aox aHX @@ -124809,11 +124809,11 @@ qqg dey hVt aCc -hYV +igu etx fIq nNg -njU +xdl hYs awH nVG @@ -125298,7 +125298,7 @@ buJ bxA bwk asx -fij +sTa vYb xNL joi @@ -125333,7 +125333,7 @@ ckh gju tmK pbK -bCB +bqT awH aJm juH @@ -125547,12 +125547,12 @@ bqe beP ajt ajt -blc +saJ ajt aZd aZd bmM -qcN +hZG aZd asx asx @@ -126023,11 +126023,11 @@ aeu cDD cDC bTj -qSN +dtG cDR cDD cDR -fku +oYa cEx cDC cDD @@ -126075,7 +126075,7 @@ cIA bnT uGS bmM -byi +wlv bew aZd aox @@ -126297,7 +126297,7 @@ fps vlq axf urk -azL +vZd fCo eog iPw @@ -126571,7 +126571,7 @@ ucI kLS eeK ohZ -iKB +dsr fKZ nPI xQc @@ -126804,7 +126804,7 @@ cDD rFY cFm uOm -cuM +kjO cFC hqp dYk @@ -126855,12 +126855,12 @@ jaX ftX awq nKk -bjH +ibO hfV pUj gEf auE -sLo +qso mqR jfO awN @@ -127343,12 +127343,12 @@ wou cYd qjA ajt -wXa +dxY wgS gWu yjf hjG -bnj +dcu mUE gNS pmM @@ -127387,7 +127387,7 @@ cox oaH axb rtm -fXx +fGh tjF cKX axS @@ -127400,8 +127400,8 @@ cgQ cgQ cgQ axT -cMq -czs +hdY +reC axW aBz azw @@ -127601,7 +127601,7 @@ rtn gPB bwi ajt -bmA +rGx bph bmS bmZ @@ -128387,7 +128387,7 @@ gLz dKn dKn pjV -fvY +gBt eVE bnv bnv @@ -128627,7 +128627,7 @@ wqu mhL mab mab -trv +ylR wvq wSl sIh @@ -128644,7 +128644,7 @@ wvK bnv bjX tjm -bOv +hrb bHQ bjW uYK @@ -128901,7 +128901,7 @@ blf blf gVP jSx -ycd +laT iQK bjW pfF @@ -128920,18 +128920,18 @@ tAL awX awX awX -brV +oJM ckB bOz awX rON -ntf +xUT jJS tFw aLL pgl cPo -nIZ +aaP aGq cvv cwd @@ -129105,19 +129105,19 @@ mWk jeg vaM saO -wcn +flc ecC aWR tzL ybO iaZ -cqw +efV ejm ybO ame alB ctJ -hNj +wwT aWY cxX peN @@ -129158,7 +129158,7 @@ kwl blf sGp pTC -rTs +fba nSS bjW bAz @@ -129187,7 +129187,7 @@ axS axa axa axa -cnk +cqd axS axa cvw @@ -129198,7 +129198,7 @@ cwe cwI sDt cyN -iDr +nJy cyV cAJ axa @@ -129362,13 +129362,13 @@ lsq dHf bfP swV -oaV -vzU -agz -dxi -rUd +eCD +jsE +goY +xpP +vxm nJt -bZM +mPC nJt uZV rpF @@ -129415,10 +129415,10 @@ vgW blg wjE uzu -lbW -noF -bhL -bOl +hnM +lsO +wTl +dlm bJT bLZ fto @@ -129624,7 +129624,7 @@ eyM uhy fbn bUR -vtC +nQG klM nZk mUy @@ -129646,7 +129646,7 @@ iao fTU hIs fTU -xXH +qPF aZo aZV scm @@ -129655,10 +129655,10 @@ ulW sdt qsx run -bgr +fjO nes bhf -biq +cIY eXR fob msH @@ -129723,9 +129723,9 @@ cnu coQ cqv csn -bPi +toC bPW -cvP +cnz acK acK aaa @@ -129882,7 +129882,7 @@ alk vNw heR jSv -jNT +ncz xji rMJ wDF @@ -129890,7 +129890,7 @@ afp ycZ auV aWY -sUM +cEy mjx wqz rnc @@ -129903,7 +129903,7 @@ pHY hYK lLA vxV -ikT +xXq imY aZi hot @@ -130139,10 +130139,10 @@ aWR jMp lvG pJP -bgF +nnL tuZ lvG -fUL +aHW alB akf xsl @@ -130160,7 +130160,7 @@ lGG whx mvL fMI -ikT +xXq fdW aYe iOn @@ -130382,7 +130382,7 @@ aeu aeu alB bfq -upS +uRc bft alB nTy @@ -130417,13 +130417,13 @@ kBS hAT whx syF -ikT +xXq fdW aYe jzn rLd rSj -flQ +rAH fnJ nhw aYd @@ -130468,15 +130468,15 @@ ntG wXN bSr bOC -aIY -bQT -bSd -bSd -fZD -bSd -bUt -bQT -bUA +jRT +nHz +wLc +wLc +pfe +wLc +xbm +nHz +bfT bEg bOC cju @@ -130674,7 +130674,7 @@ aVJ kBS wKl fMI -rCs +jns fZO aDI aDI @@ -130725,17 +130725,17 @@ dzY cAc bWT bPJ -bPP -bUN -bUN -bUN -cll -bUN -bUN -bUN -bUB -mjb -mjb +ovn +fkv +fkv +fkv +jlQ +fkv +fkv +fkv +niF +qei +qei akn iud miq @@ -130931,7 +130931,7 @@ aVJ aVJ oYW twI -ikT +xXq lMh baU uUP @@ -130959,7 +130959,7 @@ bGn gyg qPA qPA -bLe +kbt tkV bEg bnv @@ -130982,17 +130982,17 @@ var cAE bSr bPJ -bPQ -bUN -bUN -bUN -bUN -bUN -bUN -bUN -bUC -mjb -mjb +rMC +fkv +fkv +fkv +fkv +fkv +fkv +fkv +osK +qei +qei cju cwJ cxB @@ -131188,7 +131188,7 @@ uvH aVJ anx fGE -rCs +jns aPl aQf vyv @@ -131240,16 +131240,16 @@ bSL bWT bSr bQa -bUN -bUN -bUN -bUN -bUN -bUN -bUN -bUD -bUE -mjb +fkv +fkv +fkv +fkv +fkv +fkv +fkv +xan +goJ +qei bzG cjo bzG @@ -131445,19 +131445,19 @@ fvp llr amV bfr -aNo +scX aTU bcD cXb sga vga -wCM +wzl bbb bdN bfm pcc aCb -sTG +hCT dVx ivw hsZ @@ -131497,16 +131497,16 @@ uRb cKe cbu cKv -bUN -bUN -bUN -bUN -bUN -bUN -bUN -bUJ -bUn -mjb +fkv +fkv +fkv +fkv +fkv +fkv +fkv +jQu +peL +qei bzG cjB clG @@ -131702,7 +131702,7 @@ eeD niq aVJ xGo -aCU +pJG pyS bbN bba @@ -131733,14 +131733,14 @@ bjF bMJ lNU bGi -bQl +eeh bLa emm bQL bPe -jBB +abl yfq -lig +frR bPe jOv kkG @@ -131754,16 +131754,16 @@ tmm bUf bUf bUf -bUN -bUN -bUN -bUN -bUN -bUN -bUN -cic -bUo -mjb +fkv +fkv +fkv +fkv +fkv +fkv +fkv +wgW +tBH +qei bzG dQm wvA @@ -131939,13 +131939,13 @@ cOA yfO xUe elK -rKg +sUR qPL ssS lKE ujx blN -cEu +cSG mUZ fVR uPR @@ -131959,7 +131959,7 @@ aXf aVJ aVJ uff -aCU +pJG hXA tcS bxn @@ -132003,24 +132003,24 @@ wzg vQX pqo wZh -uEl +dIF bPe ddG nAs dwp nmj bUf -bPR -bUN -bUN -bUN -bUN -bUN -bUN -bUN -bUD -ttv -mjb +ckV +fkv +fkv +fkv +fkv +fkv +fkv +fkv +xan +ktZ +qei cjo kyr clE @@ -132183,7 +132183,7 @@ acm aWY aWY rkT -dEt +usy ruI iZp tmh @@ -132200,7 +132200,7 @@ vRE qkg qVX mAB -pHy +alA mQQ nMi cGJ @@ -132216,7 +132216,7 @@ vsJ ocg ldu uLL -aCU +pJG hXA kHg baY @@ -132267,17 +132267,17 @@ vko fNh bUh aGc -bPT -bUN -bUN -bUN -bUN -bUN -bUN -bUN -heu -ttv -mjb +lGS +fkv +fkv +fkv +fkv +fkv +fkv +fkv +con +ktZ +qei cjo wTd gPs @@ -132438,7 +132438,7 @@ acm acm acm aWY -rHJ +xjB pHv epJ wZU @@ -132455,7 +132455,7 @@ cEm xqW xqW weE -akY +lnX xqW cEm xqW @@ -132467,13 +132467,13 @@ bkd oaf ayl awi -gjM +bil wcU gSw xgL jFz pAl -fEU +erA aUt kfQ aZl @@ -132494,10 +132494,10 @@ bhH wzy ios hsl -fRD +lqe rHR qrU -blk +ags exE inM bhQ @@ -132524,17 +132524,17 @@ tsj uEa sWO bUf -bPX -bUN -bUN -bUN -bUN -bUN -bUN -bUN -bUB -ttv -mjb +ftV +fkv +fkv +fkv +fkv +fkv +fkv +fkv +niF +ktZ +qei bzG cjX cpD @@ -132704,7 +132704,7 @@ rVa btR agg agD -kcD +now lqU qYK dRT @@ -132730,7 +132730,7 @@ hlf gmV gEI roc -pzI +xXi tll bbN bba @@ -132782,16 +132782,16 @@ luH bUf bUf bUf -bUN -bUN -bUN -bUN -bUN -bUN -bUN -dWA -bUo -mjb +fkv +fkv +fkv +fkv +fkv +fkv +fkv +qUB +tBH +qei bzG bzG bzG @@ -132974,7 +132974,7 @@ vfS hLB cEm cGt -lUB +wqp cGU cHa cHe @@ -132987,7 +132987,7 @@ xLt pcM bce dzI -xSh +tep lwZ bbN bbT @@ -133039,16 +133039,16 @@ wqw cKe ceU cKv -bUN -bUN -bUN -bUN -bUN -bUN -bUN -cpa -mjb -mjb +fkv +fkv +fkv +fkv +fkv +fkv +fkv +wtA +qei +qei aeu aeu aeu @@ -133244,7 +133244,7 @@ gvx why bbE enu -fAa +rud hKg bcD bba @@ -133255,7 +133255,7 @@ bbc bbd bbc uGN -bhh +bsi qce aXh baI @@ -133296,16 +133296,16 @@ bWT bSr bWT bQa -bUN -bUN -bUN -bUN -bUN -bUN -bUN -crG -bUF -mjb +fkv +fkv +fkv +fkv +fkv +fkv +fkv +ubP +brX +qei aeu aeu aeu @@ -133501,7 +133501,7 @@ bbi bbi bbi sdM -aNw +hIU bcf bbN tgV @@ -133517,7 +133517,7 @@ oAK wSc pWu etV -fGT +vji bhH aaa aaa @@ -133550,19 +133550,19 @@ bPe bZC bPe bOc -mjb -mjb -bPY -bUN -bUN -bUN -bUN -bUN -bUN -bUN -crJ -ctu -mjb +qei +qei +kcs +fkv +fkv +fkv +fkv +fkv +fkv +fkv +bXf +kEh +qei aeu aeu aeU @@ -133737,7 +133737,7 @@ dSf gsv ggf uSg -sjk +dSQ ajl gYF lNZ @@ -133758,12 +133758,12 @@ bbX bbC bby itA -oet -bcg -vai -rve -eQi -fRL +hnE +eRf +oSR +xhV +waU +rHc baC sQw bcD @@ -133807,19 +133807,19 @@ aTc iOH efg bRF -mjb -bPK -bPZ -bUN -bUN -bUN -bUN -bUN -bUN -bUN -ctW -ctT -mjb +qei +sDu +gcK +fkv +fkv +fkv +fkv +fkv +fkv +fkv +jYB +fTl +qei aeu aeu aUz @@ -133990,9 +133990,9 @@ cFY cEn cEn rQx -gsd +uZr vUj -jRE +nqz pEh uSg cEm @@ -134028,7 +134028,7 @@ mnX avA acm bhW -jat +tRE bjz ePD bhW @@ -134064,19 +134064,19 @@ jol pxZ egK sOt -mjb -mjb -bTT -bUO -bUN -bUN -bUN -bUN -bUN -crK -cuQ -mjb -mjb +qei +qei +uGy +oDr +fkv +fkv +fkv +fkv +fkv +qqe +kmq +qei +qei aeu aeU aeU @@ -134245,10 +134245,10 @@ oUB skk wcu oPY -rMw +nKo dqj yax -ylT +ivI tUw qgB gSa @@ -134276,8 +134276,8 @@ lUS bof beH bbI -vKv -wvM +goF +xhI bbN cbf bbN @@ -134287,7 +134287,7 @@ acm bhW wbE iTt -lAr +xjU bhW aaQ aaa @@ -134322,17 +134322,17 @@ pst rOz bOc aeu -mjb -bkg -bks -bks -bks -bTV -bks -bks -bks -cws -mjb +qei +rAA +gwU +gwU +gwU +vDR +gwU +gwU +gwU +kpT +qei aeu aeu aeU @@ -134579,17 +134579,17 @@ qpc rnp bRF aeu -mjb -bUj -bRv -bRv -bRv -bRv -bRv -bRv -bRv -uON -mjb +qei +jhM +fBX +fBX +fBX +fBX +fBX +fBX +fBX +uqf +qei aeu aeU aeU @@ -134789,12 +134789,12 @@ cbk eeS dyN dfm -bbs +ppa qMK xRp iXy tsf -bbs +ppa wfK ava aaa @@ -135078,17 +135078,17 @@ acm acm acm bPe -bRR +dgt bRF -bUH +cnL bPe acm acm acm bPe -bRR +dgt bRF -bYB +vBF bPe acm aeu @@ -135245,9 +135245,9 @@ asJ aji aMO skC -bFG +qkz bIb -bFG +qkz aaa aaa aaa @@ -136061,9 +136061,9 @@ huf atY uoR puj -fOz +gJC atW -vmG +cwC wIP cbV qHd @@ -136273,9 +136273,9 @@ cCu aji cCP pzm -cDo +yiy cDv -cDo +yiy aaa aaa aaa @@ -136321,7 +136321,7 @@ hQn oqF fPV cFE -iod +esD mpB ktS wgr @@ -136574,12 +136574,12 @@ cEn dbd pNn atY -kEg +rxq oqF ktS oPQ sem -srJ +wOi ktS the aaa @@ -136815,7 +136815,7 @@ pCW cEn cEn cEn -akI +iZU cFY cEn iTA @@ -138634,7 +138634,7 @@ aaa aeU aeU ktS -oZp +eKG uoU ikp acm @@ -140433,8 +140433,8 @@ aaa cmU aeU ktS -hvl -viB +ktT +czW ktS ktS ktS @@ -142227,7 +142227,7 @@ aaa aeo aaa ktS -tzy +abC xqr uIH fHP @@ -150727,7 +150727,7 @@ aeu cbU cbU ccB -ccD +jFE ccO cbU cbU diff --git a/_maps/map_files/Mining/Lavaland.dmm b/_maps/map_files/Mining/Lavaland.dmm index 9a660252c5951..e7aa89ddf7918 100644 --- a/_maps/map_files/Mining/Lavaland.dmm +++ b/_maps/map_files/Mining/Lavaland.dmm @@ -237,6 +237,26 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/mine/laborcamp) +"bP" = ( +/obj/machinery/door/window/westleft{ + base_state = "right"; + icon_state = "right"; + name = "Unisex Bathroom" + }, +/obj/structure/sign/poster/official/cleanliness{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/closeup{ + dir = 1 + }, +/turf/open/floor/iron/techmaint, +/area/mine/laborcamp) "bT" = ( /obj/structure/stone_tile/surrounding_tile{ dir = 4 @@ -934,14 +954,6 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron/checker, /area/mine/living_quarters) -"gH" = ( -/obj/machinery/door/poddoor/preopen{ - id = "labor"; - name = "labor Camp Blast Door" - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/techmaint, -/area/mine/laborcamp) "gK" = ( /obj/machinery/airalarm/directional/north{ pixel_y = 22 @@ -1821,17 +1833,6 @@ }, /turf/open/floor/wood, /area/mine/living_quarters) -"me" = ( -/obj/structure/barricade/wooden/crude, -/obj/machinery/door/airlock/research{ - name = "tachyon-doppler Array Booth"; - req_access_txt = "7" - }, -/obj/effect/turf_decal/stripes/closeup{ - dir = 1 - }, -/turf/open/floor/iron/techmaint, -/area/mine/science) "mh" = ( /obj/structure/stone_tile/block, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, @@ -2000,6 +2001,17 @@ }, /turf/open/floor/iron, /area/mine/laborcamp) +"nH" = ( +/obj/structure/barricade/wooden/crude, +/obj/machinery/door/airlock/research{ + name = "tachyon-doppler Array Booth"; + req_access_txt = "7" + }, +/obj/effect/turf_decal/stripes/closeup{ + dir = 1 + }, +/turf/open/floor/iron/techmaint, +/area/mine/science) "nI" = ( /mob/living/simple_animal/turtle{ dir = 4 @@ -2306,6 +2318,14 @@ /obj/structure/flora/ausbushes/fernybush, /turf/open/floor/plating/asteroid, /area/mine/science) +"pQ" = ( +/obj/machinery/door/poddoor/preopen{ + id = "labor"; + name = "labor Camp Blast Door" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/iron/techmaint, +/area/mine/laborcamp) "pR" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/frame/machine, @@ -3353,6 +3373,17 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/carpet/red, /area/mine/living_quarters) +"yn" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "mining Relay Room"; + req_access_txt = "48" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/closeup, +/turf/open/floor/iron/techmaint, +/area/mine/maintenance) "yv" = ( /turf/closed/mineral/random/labormineral/volcanic, /area/lavaland/surface/outdoors/explored) @@ -4441,26 +4472,6 @@ }, /turf/open/floor/iron, /area/mine/production) -"Hh" = ( -/obj/machinery/door/window/westleft{ - base_state = "right"; - icon_state = "right"; - name = "Unisex Bathroom" - }, -/obj/structure/sign/poster/official/cleanliness{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/closeup{ - dir = 1 - }, -/turf/open/floor/iron/techmaint, -/area/mine/laborcamp) "Hi" = ( /obj/structure/table, /obj/machinery/reagentgrinder, @@ -5304,6 +5315,16 @@ /obj/machinery/light/small, /turf/open/floor/carpet/blue, /area/mine/living_quarters) +"Np" = ( +/obj/structure/table, +/obj/item/plate, +/obj/item/kitchen/fork, +/obj/item/reagent_containers/food/drinks/britcup{ + pixel_x = -5; + pixel_y = 1 + }, +/turf/open/floor/iron/grid/steel, +/area/mine/laborcamp) "NB" = ( /obj/structure/chair/foldable, /obj/machinery/camera/directional/north, @@ -5579,17 +5600,6 @@ /obj/structure/ore_box, /turf/open/floor/plating/lavaland, /area/lavaland/surface/outdoors/explored) -"PK" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "mining Relay Room"; - req_access_txt = "48" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/closeup, -/turf/open/floor/iron/techmaint, -/area/mine/maintenance) "PL" = ( /obj/machinery/door/airlock/research/glass{ name = "EVA Atrium"; @@ -6187,16 +6197,17 @@ /obj/structure/closet/crate/radiation, /turf/open/floor/iron, /area/mine/science) -"Uv" = ( -/obj/structure/table, -/obj/item/trash/plate, -/obj/item/kitchen/fork, -/obj/item/reagent_containers/food/drinks/britcup{ - pixel_x = -5; - pixel_y = 1 +"Us" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Radioisotope Containment Room"; + req_access_txt = "48" }, -/turf/open/floor/iron/grid/steel, -/area/mine/laborcamp) +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/closeup, +/turf/open/floor/iron/techmaint, +/area/mine/storage) "Ux" = ( /obj/structure/chair{ dir = 8 @@ -6598,17 +6609,6 @@ }, /turf/open/floor/iron/grid/steel, /area/mine/laborcamp) -"WD" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Radioisotope Containment Room"; - req_access_txt = "48" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/closeup, -/turf/open/floor/iron/techmaint, -/area/mine/storage) "WI" = ( /obj/structure/window/reinforced{ dir = 8 @@ -32528,7 +32528,7 @@ Sm Xy Qj FR -gH +pQ np NE rw @@ -33307,7 +33307,7 @@ zc Iq zc ZT -Uv +Np tM ar pj @@ -34593,7 +34593,7 @@ tQ fR Xj BZ -Hh +bP BZ BZ BZ @@ -41515,7 +41515,7 @@ YQ Mu Kj Tp -WD +Us jl zt Ve @@ -45371,7 +45371,7 @@ IJ vy br Jx -PK +yn ce FQ KD @@ -51792,7 +51792,7 @@ Zd Zd jh jh -me +nH jh lv dt diff --git a/_maps/map_files/RadStation/RadStation.dmm b/_maps/map_files/RadStation/RadStation.dmm index db7f836c18a06..fae4d59c5f01b 100644 --- a/_maps/map_files/RadStation/RadStation.dmm +++ b/_maps/map_files/RadStation/RadStation.dmm @@ -12,6 +12,25 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/tech, /area/engine/engine_room) +"aak" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 32; + pixel_y = -1 + }, +/obj/structure/closet/secure_closet/captains, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/reagent_containers/food/drinks/flask/gold{ + pixel_x = 3; + pixel_y = 8 + }, +/obj/item/pinpointer/nuke{ + pixel_y = 5 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/heads/captain/private) "aap" = ( /obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ alpha = 180; @@ -164,6 +183,14 @@ dir = 8 }, /area/science/research) +"aba" = ( +/obj/machinery/chem_dispenser, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/turf/open/floor/iron, +/area/medical/apothecary) "abg" = ( /turf/closed/wall, /area/gateway) @@ -195,32 +222,6 @@ /obj/structure/chair/office/light, /turf/open/floor/iron/grid/steel, /area/medical/virology) -"abL" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/restraints/handcuffs{ - pixel_x = 3; - pixel_y = 8 - }, -/obj/item/restraints/handcuffs{ - pixel_y = 4 - }, -/obj/item/restraints/handcuffs{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "quarantineshutters"; - name = "Isolation Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/iron/grid/steel, -/area/medical/virology) "abQ" = ( /obj/structure/chair/office/light{ dir = 1; @@ -251,6 +252,20 @@ }, /turf/open/floor/iron/white, /area/science/research) +"acc" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/light/floor{ + brightness = 15; + bulb_colour = "#FFE4CE"; + bulb_vacuum_brightness = 15; + nightshift_brightness = 10; + nightshift_light_color = "#E6EBFF" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/hallway/primary/central) "acf" = ( /obj/effect/turf_decal/tile/dark_green/half/contrasted{ dir = 4 @@ -325,6 +340,17 @@ }, /turf/open/floor/wood, /area/library) +"acW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "Engidesk"; + name = "engineering Security Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/engine/break_room) "ade" = ( /obj/effect/turf_decal/siding/wood{ dir = 10 @@ -359,18 +385,6 @@ }, /turf/open/floor/iron/dark, /area/security/checkpoint/auxiliary) -"aeh" = ( -/obj/structure/table/wood, -/obj/item/toy/figure/curator{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/pen/fountain/captain{ - pixel_x = -5; - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/library) "aem" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -388,6 +402,14 @@ }, /turf/open/floor/iron, /area/engine/engine_room) +"aeS" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/guideline/guideline_edge/red, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron, +/area/security/main) "afb" = ( /obj/machinery/door/poddoor/shutters{ id = "evashutter"; @@ -582,6 +604,17 @@ }, /turf/open/floor/iron/dark, /area/storage/primary) +"aiM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "Engidesk"; + name = "engineering Security Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/engine/engineering) "aiX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -720,17 +753,29 @@ }, /turf/open/floor/iron, /area/hallway/secondary/entry) -"alH" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 +"alu" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 4 }, -/obj/effect/turf_decal/guideline/guideline_edge/red, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/closeup{ - dir = 1 +/obj/item/folder/red{ + pixel_y = 4 }, -/turf/open/floor/iron, -/area/security/main) +/obj/item/pen{ + pixel_y = 4 + }, +/obj/item/taperecorder{ + pixel_x = -15; + pixel_y = 4 + }, +/turf/open/floor/iron/dark, +/area/security/brig) +"aly" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/engine/supermatter) "alT" = ( /obj/effect/turf_decal/tile/blue/fourcorners/contrasted, /obj/effect/spawner/lootdrop/ruinloot/medical, @@ -762,6 +807,15 @@ dir = 1 }, /area/hallway/secondary/exit/departure_lounge) +"amQ" = ( +/obj/machinery/camera/autoname/directional/west{ + c_tag = "Xenobiology Lab - Pen #3"; + network = list("ss13","rd","xeno") + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/window/reinforced, +/turf/open/floor/engine, +/area/science/xenobiology) "amY" = ( /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ dir = 1 @@ -795,6 +849,25 @@ }, /turf/open/floor/carpet/blue, /area/bridge/meeting_room) +"anx" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/main) "any" = ( /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 8 @@ -838,6 +911,12 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron, /area/hallway/primary/fore) +"aot" = ( +/obj/structure/sign/departments/medbay/alt{ + pixel_y = -32 + }, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/cmo) "aoz" = ( /obj/effect/turf_decal/tile/purple/half/contrasted, /obj/machinery/disposal/bin, @@ -865,15 +944,6 @@ }, /turf/open/floor/carpet/royalblack, /area/lawoffice) -"aoI" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/iron, -/area/science/mixing) "aoM" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/lootdrop/glowstick/lit, @@ -894,20 +964,6 @@ }, /turf/open/floor/iron, /area/medical/chemistry) -"aoS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopshutter"; - name = "Privacy Shutters" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/maintenance/department/bridge) "aoX" = ( /obj/structure/lattice/catwalk, /obj/machinery/power/apc/auto_name/directional/east, @@ -919,6 +975,13 @@ }, /turf/open/floor/engine/o2, /area/ai_monitored/turret_protected/ai) +"aps" = ( +/obj/machinery/camera/autoname/directional/north{ + c_tag = "Xenobiology Lab - Pen #1"; + network = list("ss13","rd","xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) "apC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 5 @@ -937,6 +1000,29 @@ }, /turf/open/floor/iron, /area/engine/atmospherics_engine) +"apD" = ( +/obj/machinery/door/airlock/security{ + name = "Prison Intake"; + req_access_txt = "2" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/closeup{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/security/prison) "aqc" = ( /obj/machinery/door/firedoor, /obj/machinery/button/door{ @@ -972,6 +1058,10 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/catwalk_floor, /area/maintenance/central) +"aqq" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/security/main) "aqv" = ( /obj/structure/chair/fancy/comfy{ buildstackamount = 0; @@ -1087,6 +1177,45 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/engine/engine_room) +"ash" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_y = -1 + }, +/obj/structure/filingcabinet/employment{ + pixel_x = 7 + }, +/obj/structure/filingcabinet{ + pixel_x = -5 + }, +/turf/open/floor/carpet/royalblack, +/area/lawoffice) +"asy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/box/ingredients/wildcard{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/storage/box/ingredients/fruity{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/ingredients/vegetarian{ + pixel_x = -1; + pixel_y = 4 + }, +/turf/open/floor/iron/white, +/area/crew_quarters/kitchen) "asB" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -1094,25 +1223,28 @@ /obj/effect/decal/cleanable/blood/footprints, /turf/open/floor/iron/dark, /area/security/execution/education) -"asO" = ( -/obj/structure/table, -/obj/item/restraints/handcuffs{ - pixel_x = -1; - pixel_y = -5 +"asC" = ( +/obj/effect/turf_decal/tile/green/fourcorners/contrasted, +/obj/machinery/door/airlock/virology/glass{ + name = "Virology Ward"; + req_access_txt = "39" }, -/obj/item/paper/fluff/jobs/security/beepsky_mom, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 4 +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "quarantineshutters"; + name = "Isolation Shutters" }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 8 +/obj/structure/cable/yellow{ + icon_state = "1-4" }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 +/obj/structure/cable/yellow{ + icon_state = "1-8" }, -/obj/item/key/security, -/turf/open/floor/iron/dark, -/area/security/main) +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/iron/white, +/area/medical/virology) "asP" = ( /obj/machinery/door/airlock{ name = "Hydroponics"; @@ -1159,6 +1291,16 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/office) +"ati" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/south{ + c_tag = "MiniSat Core Hallway 4"; + network = list("minisat") + }, +/turf/open/floor/plating, +/area/ai_monitored/storage/satellite) "aty" = ( /obj/structure/railing/corner{ dir = 8 @@ -1176,6 +1318,20 @@ dir = 8 }, /area/hallway/primary/central) +"atD" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/machinery/door/poddoor/preopen{ + id = "cmoprivacy"; + name = "CMO Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) "atI" = ( /obj/structure/railing{ dir = 1 @@ -1219,17 +1375,6 @@ }, /turf/open/floor/iron/dark, /area/security/courtroom) -"auq" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/hallway/primary/central) "auu" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ @@ -1286,22 +1431,6 @@ }, /turf/open/floor/wood, /area/crew_quarters/theatre/backstage) -"auT" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/tool, -/obj/effect/turf_decal/bot, -/obj/machinery/newscaster{ - pixel_y = 34 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/iron/dark, -/area/storage/primary) "auW" = ( /obj/effect/turf_decal/loading_area{ dir = 1 @@ -1354,6 +1483,27 @@ /obj/structure/window/reinforced, /turf/open/floor/engine, /area/science/xenobiology) +"avj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" + }, +/obj/machinery/door/airlock/security/glass{ + name = "Solitary Confinement"; + req_one_access_txt = "2" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/closeup{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/security/prison/shielded) "avk" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -1390,30 +1540,25 @@ }, /turf/open/floor/iron, /area/crew_quarters/dorms) -"awG" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron, -/area/security/prison) -"axg" = ( -/obj/machinery/door/airlock{ - id_tag = "Cell"; - name = "Cell 1" +"awv" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/item/clothing/glasses/hud/health{ + pixel_x = 4; + pixel_y = -2 }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 8 +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","medbay") }, -/obj/effect/turf_decal/stripes/closeup{ - dir = 1 +/obj/item/radio/intercom{ + dir = 1; + pixel_x = 1; + pixel_y = 29 }, -/turf/open/floor/prison, -/area/security/prison) +/turf/open/floor/iron/white, +/area/crew_quarters/heads/cmo) "axk" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 5 @@ -1521,12 +1666,36 @@ burnt = 1 }, /area/maintenance/port/central) -"ayA" = ( -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","engine") +"ayE" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 6; + pixel_y = 8 }, -/turf/open/floor/engine/o2, -/area/engine/atmos) +/obj/item/clothing/suit/armor/bulletproof{ + pixel_y = 7 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_y = 1 + }, +/obj/machinery/light, +/obj/structure/extinguisher_cabinet{ + pixel_y = -33 + }, +/obj/machinery/camera/motion/directional/south{ + c_tag = "Armory - Internal"; + network = list("ss13","security") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/ai_monitored/security/armory) "ayF" = ( /obj/structure/disposalpipe/segment{ dir = 1 @@ -1638,22 +1807,6 @@ }, /turf/open/floor/iron/grid/steel, /area/hydroponics) -"aAF" = ( -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - name = "Security RC"; - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/security/main) "aAK" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -1666,6 +1819,21 @@ }, /turf/open/floor/iron/dark, /area/teleporter) +"aAQ" = ( +/obj/effect/turf_decal/guideline/guideline_edge/neutral{ + alpha = 255; + dir = 8 + }, +/obj/machinery/button/door{ + id = "quarantineshutters"; + name = "Quarantine Lockdown"; + pixel_x = -25; + req_access_txt = "39" + }, +/turf/open/floor/iron/white/side{ + dir = 4 + }, +/area/medical/medbay/central) "aBd" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold4w/general/visible, @@ -1703,6 +1871,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/sepia, /area/quartermaster/warehouse) +"aBC" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/turf/open/floor/iron/dark, +/area/engine/engineering) "aBO" = ( /obj/machinery/door/airlock{ name = "Law Office"; @@ -1765,6 +1944,33 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, /area/engine/engine_room) +"aCS" = ( +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/guideline/guideline_in/blue, +/turf/open/floor/iron/white, +/area/medical/medbay/lobby) +"aCZ" = ( +/obj/effect/turf_decal/box, +/obj/machinery/door/window/westleft{ + dir = 1; + name = "plumbing Factory Duct Access"; + red_alert_access = 1; + req_one_access_txt = "5;33" + }, +/obj/machinery/door/window/westleft{ + dir = 2; + name = "plumbing Factory Duct Access"; + red_alert_access = 1; + req_one_access_txt = "5;33" + }, +/obj/machinery/plumbing/output{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/medical/chemistry) "aDq" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ dir = 8 @@ -1775,27 +1981,21 @@ /obj/structure/sign/departments/minsky/engineering/engineering, /turf/closed/wall, /area/vacant_room/commissary/commissary2) +"aDL" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor{ + id = "AIwindows"; + name = "AI View Blast Door" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) "aDN" = ( /obj/structure/lattice, /turf/open/space, /area/space/nearstation) -"aDR" = ( -/obj/effect/turf_decal/tile/red/fourcorners/contrasted, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/prison, -/area/security/prison) -"aEE" = ( -/obj/machinery/smartfridge/chemistry, -/turf/open/floor/iron, -/area/medical/apothecary) "aEI" = ( /obj/machinery/door/airlock/maintenance_hatch{ id_tag = "commissarydoor2"; @@ -1875,6 +2075,17 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/tech, /area/engine/atmos) +"aFH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopshutter"; + name = "Privacy Shutters" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hop) "aGa" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -1896,12 +2107,6 @@ }, /turf/open/floor/iron/white, /area/medical/apothecary) -"aGv" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/bot, -/obj/machinery/light, -/turf/open/floor/holofloor/wood, -/area/security/main) "aGA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/splatter, @@ -1946,6 +2151,19 @@ }, /turf/open/floor/iron, /area/engine/atmos) +"aHn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown/fourcorners/contrasted, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron, +/area/hallway/primary/port) "aHT" = ( /obj/effect/turf_decal/delivery, /obj/machinery/door/window/southleft{ @@ -2039,6 +2257,21 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/department/security) +"aJG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor{ + id = "Capoffice"; + name = "Captain Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/curtain/directional{ + dir = 4 + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/crew_quarters/heads/captain/private) "aJI" = ( /obj/docking_port/stationary{ dir = 8; @@ -2183,14 +2416,44 @@ }, /turf/open/floor/plating, /area/engine/engine_room) -"aLm" = ( -/obj/effect/turf_decal/siding/wood{ +"aLs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ dir = 5 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/carpet/green, +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/turf/open/floor/iron, /area/security/main) +"aLC" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/structure/disposalpipe/sorting/mail/destination/security{ + dir = 8 + }, +/turf/open/floor/iron, +/area/security/brig) "aLQ" = ( /obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 8 @@ -2204,6 +2467,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/engine/atmos) +"aMa" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron, +/area/hallway/primary/port) "aMd" = ( /obj/structure/sign/departments/minsky/research/research, /turf/closed/wall, @@ -2284,6 +2556,27 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron, /area/hallway/primary/aft) +"aNu" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/effect/landmark/xeno_spawn, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/iron/dark, +/area/security/brig) +"aNz" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/turf_decal/guideline/guideline_edge/blue{ + color = "#267878"; + dir = 1 + }, +/turf/open/floor/iron, +/area/crew_quarters/dorms) "aNE" = ( /obj/structure/sign/poster/random{ pixel_x = 2 @@ -2316,6 +2609,25 @@ }, /turf/open/floor/iron/dark, /area/security/execution/education) +"aOq" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/iron, +/area/security/main) "aOs" = ( /obj/structure/rack, /obj/item/clothing/glasses/meson/engine, @@ -2362,17 +2674,6 @@ dir = 4 }, /area/science/research) -"aON" = ( -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "test Chamber Blast Door" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/closeup{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/explab) "aOU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -2414,26 +2715,10 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/iron, /area/maintenance/department/security) -"aPL" = ( -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/obj/machinery/camera/autoname/directional/north{ - c_tag = "Security Post - Medbay"; - network = list("ss13","medbay") - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/obj/structure/closet/secure_closet/security/med, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/security/checkpoint/medical) +"aPU" = ( +/obj/structure/window/reinforced, +/turf/open/floor/wood, +/area/medical/exam_room) "aPX" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/tile/brown/half/contrasted{ @@ -2498,15 +2783,23 @@ /obj/machinery/atmospherics/pipe/heat_exchanging/simple, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"aRF" = ( -/obj/structure/chair{ - pixel_y = -2 +"aRk" = ( +/obj/machinery/conveyor{ + id = "MailConv" }, -/obj/structure/cable/yellow{ - icon_state = "1-2" +/obj/structure/extinguisher_cabinet{ + pixel_x = -32 }, -/turf/open/floor/prison, -/area/security/prison) +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark, +/area/quartermaster/office) +"aRy" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/brig/dock) "aRN" = ( /obj/machinery/door/poddoor/shutters{ id = "RDToxStore"; @@ -2527,6 +2820,20 @@ /obj/effect/mapping_helpers/airlock/abandoned, /turf/open/floor/plating, /area/maintenance/port/central) +"aSs" = ( +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_access_txt = "63" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/closeup, +/turf/open/floor/iron/dark, +/area/security/brig) "aSu" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 4 @@ -2595,26 +2902,6 @@ }, /turf/open/floor/iron/tech/grid, /area/engine/gravity_generator) -"aTs" = ( -/obj/machinery/door/airlock/security{ - aiControlDisabled = 1; - id_tag = "prisonereducation"; - name = "Prison Access"; - req_one_access_txt = "3" - }, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/closeup{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/security/prison) "aTw" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -2626,6 +2913,21 @@ }, /turf/open/floor/iron, /area/crew_quarters/dorms) +"aTR" = ( +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/poddoor/preopen{ + id = "brigentrance"; + name = "Brig Blast Door" + }, +/obj/machinery/turnstile, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/closeup, +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/line, +/turf/open/floor/iron/dark, +/area/security/prison) "aTS" = ( /obj/structure/table/wood, /obj/item/gavelblock{ @@ -2671,23 +2973,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"aUb" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted{ - alpha = 180 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/iron, -/area/engine/engineering) "aUd" = ( /obj/machinery/button/door{ id = "Toilet 1"; @@ -2762,6 +3047,15 @@ }, /turf/open/floor/iron/white, /area/medical/surgery) +"aUH" = ( +/obj/effect/turf_decal/guideline/guideline_edge/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/security/brig) "aUR" = ( /obj/structure/railing{ dir = 4 @@ -2787,15 +3081,6 @@ /obj/structure/chair/stool/directional/west, /turf/open/floor/carpet/royalblack, /area/library) -"aVh" = ( -/obj/machinery/door/airlock{ - id_tag = "sec Toilet 2"; - name = "Toilet Unit" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/closeup, -/turf/open/floor/iron/freezer, -/area/security/prison) "aVk" = ( /obj/machinery/light{ light_color = "#7AC3FF" @@ -2930,17 +3215,6 @@ }, /turf/open/floor/iron/dark, /area/engine/atmos) -"aXE" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/vending/snack/orange, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark/smooth_large, -/area/hallway/primary/central) "aXO" = ( /obj/machinery/atmospherics/pipe/simple/dark/visible{ dir = 4 @@ -2993,26 +3267,15 @@ }, /turf/open/floor/plating, /area/quartermaster/office) -"aYH" = ( -/obj/machinery/door/airlock/research{ - name = "Toxins Launch Room"; - req_access_txt = "8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +"aYR" = ( +/obj/structure/mirror{ + pixel_y = 35 }, -/obj/structure/disposalpipe/segment{ - dir = 8 +/obj/structure/sink{ + pixel_y = 25 }, -/turf/open/floor/iron, -/area/science/misc_lab) +/turf/open/floor/iron/white, +/area/crew_quarters/heads/captain/private) "aYW" = ( /obj/structure/bed/double/maint, /obj/effect/landmark/start/randommaint/backalley_doc, @@ -3067,6 +3330,13 @@ }, /turf/open/floor/iron/sepia, /area/quartermaster/office) +"baq" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/decal/cleanable/xenoblood/xsplatter, +/turf/open/floor/engine, +/area/science/xenobiology) "bau" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 4 @@ -3077,25 +3347,17 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/iron/dark, /area/storage/tech) -"baU" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 +"baz" = ( +/obj/machinery/smartfridge/chemistry/virology/preloaded, +/obj/machinery/button/door{ + id = "quarantineshutters"; + name = "Quarantine Lockdown"; + pixel_x = 27; + pixel_y = 8; + req_access_txt = "39" }, -/turf/open/floor/iron/dark, -/area/security/main) +/turf/open/floor/iron/grid/steel, +/area/medical/virology) "baX" = ( /obj/structure/safe, /obj/effect/turf_decal/tile/blue/opposingcorners{ @@ -3117,36 +3379,6 @@ burnt = 1 }, /area/maintenance/department/medical/morgue) -"bbs" = ( -/obj/effect/turf_decal/numbers/two_nine{ - dir = 4 - }, -/obj/machinery/shower{ - dir = 8; - name = "emergency shower"; - pixel_y = 6 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 28 - }, -/turf/open/floor/iron/grid/steel, -/area/medical/virology) -"bbP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "bridgewindows"; - name = "Bridge View Blast Door" - }, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/bridge) "bbQ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -3186,6 +3418,24 @@ }, /turf/open/floor/iron/sepia, /area/maintenance/port/central) +"bcg" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/brigdoor/southright{ + name = "evidence Chute"; + req_access_txt = "1" + }, +/obj/machinery/disposal/deliveryChute, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/prison) "bci" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/turf_decal/stripes/line, @@ -3194,6 +3444,23 @@ }, /turf/open/floor/iron/tech, /area/ai_monitored/storage/eva) +"bcm" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","security") + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) "bcq" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -3229,10 +3496,49 @@ }, /turf/open/floor/wood, /area/maintenance/central) +"bed" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + name = "Security RC"; + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/security/main) "bek" = ( /obj/machinery/space_heater, /turf/open/floor/plating, /area/maintenance/port/aft) +"bel" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/computer/communications{ + pixel_y = -3 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/keycard_auth{ + pixel_x = -32; + pixel_y = -6 + }, +/obj/machinery/button/door{ + id = "Capoffice"; + id_tag = "cmoprivacy"; + name = "Captain blast door"; + pixel_x = -32; + pixel_y = 5 + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/heads/captain) "beo" = ( /obj/item/beacon, /obj/item/toy/figure/captain{ @@ -3399,6 +3705,12 @@ /obj/machinery/light/floor, /turf/open/floor/iron/tech, /area/engine/atmos) +"bgA" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/quartermaster/exploration_prep) "bgF" = ( /obj/machinery/holopad, /obj/effect/turf_decal/stripes/line{ @@ -3469,6 +3781,25 @@ /obj/effect/turf_decal/stripes/closeup, /turf/open/floor/iron/tech, /area/engine/supermatter) +"bht" = ( +/obj/effect/turf_decal/tile/red/fourcorners/contrasted, +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + freerange = 1; + name = "Prison intercom"; + pixel_x = 25; + prison_radio = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/prison, +/area/security/prison) "bhM" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, @@ -3523,6 +3854,33 @@ /obj/machinery/disposal/bin, /turf/open/floor/iron/dark, /area/crew_quarters/heads/chief) +"biC" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/security/brig) +"biR" = ( +/obj/machinery/plumbing/output{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/door/window/westleft{ + dir = 1; + name = "plumbing Factory Duct Access"; + red_alert_access = 1; + req_one_access_txt = "5; 33" + }, +/obj/machinery/door/window/westleft{ + dir = 2; + name = "plumbing Factory Duct Access"; + red_alert_access = 1; + req_one_access_txt = "5; 33" + }, +/turf/open/floor/iron/dark, +/area/medical/chemistry) "biX" = ( /obj/structure/table/optable{ name = "Robotics Operating Table" @@ -3574,6 +3932,18 @@ /obj/structure/sign/warning/radiation_shelter, /turf/closed/wall, /area/security/brig/dock) +"bkV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopshutter"; + name = "Privacy Shutters" + }, +/turf/open/floor/engine{ + initial_gas_mix = "n2=100;TEMP=80"; + name = "mainframe floor" + }, +/area/tcommsat/server) "bkX" = ( /obj/structure/barricade/security, /obj/machinery/light/small{ @@ -3602,25 +3972,20 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/quartermaster/storage) -"blA" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" +"blB" = ( +/obj/machinery/door/poddoor/shutters{ + id = "atmosshutters"; + name = "Atmos Storage" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +/obj/effect/turf_decal/loading_area{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, /turf/open/floor/iron, -/area/security/main) +/area/engine/atmos) "blC" = ( /obj/item/radio/intercom{ pixel_x = -27 @@ -3651,28 +4016,6 @@ dir = 4 }, /area/science/research) -"blK" = ( -/obj/effect/turf_decal/guideline/guideline_in/darkblue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ - alpha = 180; - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/sorting/mail/destination/law_office/flip{ - dir = 1 - }, -/turf/open/floor/iron, -/area/hallway/primary/central) "blL" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch"; @@ -3760,6 +4103,22 @@ }, /turf/open/floor/iron/white, /area/security/brig/medbay) +"bnv" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/east, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/guideline/guideline_edge/brown{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/port) "bnE" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/ntnet_relay, @@ -3768,42 +4127,38 @@ }, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) -"bnT" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/guideline/guideline_edge/purple{ - dir = 1 +"bnK" = ( +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 }, -/turf/open/floor/iron/white/side, -/area/science/research) -"bnW" = ( -/obj/structure/window/reinforced, -/obj/effect/landmark/start/randommaint/psychiatrist, -/obj/structure/chair/office/light{ - dir = 1 +/obj/effect/turf_decal/guideline/guideline_half_edge/blue{ + color = "#267878"; + dir = 4 }, -/obj/machinery/button/door{ - id = "medpriv1"; - name = "Psycology Shutters Control"; - pixel_x = 32; - pixel_y = 1 +/obj/effect/turf_decal/guideline/guideline_half_edge/blue{ + color = "#267878"; + dir = 10 }, -/obj/machinery/camera/autoname/directional/east{ - network = list("ss13","medbay") +/obj/effect/turf_decal/guideline/guideline_edge_alt/blue{ + color = "#267878"; + dir = 8 }, -/turf/open/floor/wood, -/area/medical/exam_room) -"bod" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 +/obj/effect/turf_decal/guideline/guideline_tri/blue{ + color = "#267878" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 +/obj/machinery/light{ + dir = 4 }, -/obj/structure/cable/yellow{ - icon_state = "1-2" +/turf/open/floor/iron, +/area/hallway/secondary/entry) +"bnT" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/guideline/guideline_edge/purple{ + dir = 1 }, -/turf/open/floor/iron/tech, -/area/engine/engine_room) +/turf/open/floor/iron/white/side, +/area/science/research) "boq" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -3829,26 +4184,6 @@ /mob/living/basic/cockroach, /turf/open/floor/iron/techmaint, /area/hallway/secondary/service) -"boB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/machinery/firealarm/directional/west{ - pixel_y = -2 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/button/flasher{ - id = "monkeypen"; - pixel_x = -22; - pixel_y = 10 - }, -/obj/machinery/camera/autoname/directional/west{ - network = list("ss13","medbay") - }, -/turf/open/floor/iron/grid/steel, -/area/medical/virology) "boR" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/engine, @@ -3873,6 +4208,48 @@ }, /turf/open/floor/iron, /area/janitor) +"bpo" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/holopad, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark, +/area/security/main) +"bpF" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + dir = 2; + icon_state = "left"; + name = "Research and Development Desk"; + req_one_access_txt = "47;63" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/structure/desk_bell{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/paper_bin{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/pen{ + pixel_x = 7; + pixel_y = 3 + }, +/turf/open/floor/iron, +/area/science/lab) "bpQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 5 @@ -3893,6 +4270,26 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark, /area/bridge/meeting_room) +"bqy" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/obj/machinery/camera/autoname/directional/north{ + c_tag = "Security Post - Medbay"; + network = list("ss13","medbay") + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/obj/structure/closet/secure_closet/security/med, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/security/checkpoint/medical) "bqz" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ @@ -4077,6 +4474,29 @@ }, /turf/open/floor/iron/dark, /area/security/prison/shielded) +"bsw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/door/poddoor/preopen{ + id = "bridgedoors"; + name = "Bridge Access Blast Door" + }, +/turf/open/floor/plating, +/area/bridge) +"bsy" = ( +/obj/effect/turf_decal/tile/black/fourcorners, +/obj/machinery/hydroponics/constructable, +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/techmaint, +/area/security/prison) "bsA" = ( /obj/effect/turf_decal/guideline/guideline_edge/red{ dir = 1 @@ -4143,40 +4563,6 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/exploration_prep) -"btR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/effect/turf_decal/guideline/guideline_tri/_offset/red{ - dir = 5 - }, -/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ - alpha = 180 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/guideline/guideline_in/darkblue{ - dir = 4 - }, -/obj/effect/turf_decal/guideline/guideline_edge/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/hallway/primary/fore) -"btT" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/science/mixing) "btZ" = ( /obj/machinery/computer/nanite_cloud_controller, /obj/effect/turf_decal/stripes/line{ @@ -4184,6 +4570,10 @@ }, /turf/open/floor/iron/dark, /area/science/nanite) +"buf" = ( +/obj/machinery/smartfridge/drinks, +/turf/open/floor/iron/cafeteria, +/area/maintenance/port/aft) "bus" = ( /obj/machinery/computer/robotics{ dir = 8 @@ -4213,6 +4603,20 @@ }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) +"buA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_x = -32; + pixel_y = 3 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark, +/area/engine/engine_room) "buJ" = ( /obj/machinery/light{ light_color = "#7AC3FF" @@ -4222,6 +4626,19 @@ }, /turf/open/floor/carpet/royalblack, /area/library) +"buT" = ( +/obj/machinery/dna_scannernew, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "geneticsdesk"; + name = "Genetics Desk Shutters" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/iron, +/area/medical/genetics) "buX" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -4292,17 +4709,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/maintenance/department/security) -"bwl" = ( -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor{ - id = "AIwindows"; - name = "AI View Blast Door" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) "bws" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -4310,27 +4716,23 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/tech, /area/engine/atmos) -"bwy" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +"bwA" = ( +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","rd") }, -/obj/structure/cable/yellow{ - icon_state = "2-4" +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science RC"; + pixel_y = 30; + receive_ore_updates = 1 }, /obj/structure/disposalpipe/segment{ - dir = 8 + dir = 4 }, +/obj/effect/turf_decal/tile/purple/fourcorners/contrasted, /turf/open/floor/iron/dark, -/area/science/mixing) +/area/science/nanite) "bwB" = ( /obj/machinery/light{ dir = 1 @@ -4341,6 +4743,13 @@ }, /turf/open/floor/circuit/green/telecomms/mainframe, /area/quartermaster/exploration_prep) +"bwK" = ( +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/siding/white{ + dir = 10 + }, +/turf/open/floor/glass/reinforced, +/area/hallway/primary/central) "bwT" = ( /obj/machinery/conveyor{ dir = 10; @@ -4423,23 +4832,25 @@ }, /turf/open/floor/iron/dark, /area/security/prison/shielded) -"bzb" = ( -/turf/open/floor/iron/dark, -/area/security/prison) -"bzc" = ( -/obj/structure/sign/poster/random{ - pixel_x = 2 +"byX" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridgewindows"; + name = "Bridge View Blast Door" }, -/turf/closed/wall, -/area/security/main) -"bzm" = ( -/obj/machinery/portable_atmospherics/canister/plasma, -/obj/effect/turf_decal/delivery, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","rd") +/obj/structure/cable/yellow{ + icon_state = "0-4" }, -/turf/open/floor/iron, -/area/science/storage) +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/structure/cable/cyan, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/bridge) "bzp" = ( /mob/living/basic/mothroach, /obj/structure/sign/poster/official/moth1{ @@ -4455,6 +4866,20 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating, /area/maintenance/disposal) +"bzt" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor{ + id = "Capoffice"; + name = "Captain Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/curtain/directional{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/captain/private) "bzz" = ( /obj/structure/chair/fancy/shuttle{ dir = 8 @@ -4525,15 +4950,6 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/office) -"bBa" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "Engidesk"; - name = "engineering Security Door" - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/engine/break_room) "bBd" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -4611,6 +5027,33 @@ }, /turf/open/floor/iron, /area/medical/sleeper) +"bBO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/tile/black/fourcorners, +/obj/structure/railing{ + dir = 6 + }, +/obj/machinery/hydroponics/constructable, +/turf/open/floor/iron/techmaint, +/area/security/prison) +"bCf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridgewindows"; + name = "Bridge View Blast Door" + }, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/bridge) "bCz" = ( /obj/structure/flora/ausbushes/lavendergrass, /mob/living/simple_animal/chicken{ @@ -4660,20 +5103,6 @@ /obj/effect/landmark/start/cyborg, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat/foyer) -"bDw" = ( -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","medbay"); - view_range = 10 - }, -/obj/structure/sink{ - dir = 1; - pixel_y = 28 - }, -/turf/open/floor/iron, -/area/medical/sleeper) "bDH" = ( /obj/structure/window/reinforced, /obj/structure/cable/yellow{ @@ -4760,17 +5189,6 @@ luminosity = 2 }, /area/security/nuke_storage) -"bEM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/turf/open/floor/iron/dark, -/area/security/main) "bFC" = ( /obj/machinery/light/small{ dir = 4 @@ -4905,6 +5323,25 @@ /obj/structure/cable/yellow, /turf/open/floor/plating, /area/quartermaster/storage) +"bIp" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/main) "bIz" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -4943,12 +5380,21 @@ }, /turf/open/floor/iron, /area/hydroponics) -"bJl" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" +"bJk" = ( +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/siding/white{ + dir = 9 }, -/turf/open/floor/iron/dark, -/area/engine/engine_room) +/turf/open/floor/glass/reinforced, +/area/hallway/primary/central) +"bJo" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/maintenance/department/bridge) "bJv" = ( /obj/machinery/space_heater, /turf/open/floor/plating, @@ -5121,16 +5567,6 @@ /obj/structure/closet/crate/coffin, /turf/open/floor/iron/dark, /area/chapel/main) -"bMp" = ( -/obj/effect/turf_decal/guideline/guideline_edge/red, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/security/main) "bMC" = ( /obj/structure/window/reinforced{ dir = 1 @@ -5165,6 +5601,20 @@ }, /turf/open/floor/iron/white, /area/medical/office) +"bNn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "brigentrance"; + name = "Brig Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/brig) "bNo" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/guideline/guideline_edge_alt/red{ @@ -5190,6 +5640,27 @@ /obj/structure/girder, /turf/open/floor/iron, /area/maintenance/department/security) +"bNr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/structure/closet/secure_closet/security/sec{ + anchored = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/security/main) +"bND" = ( +/obj/machinery/door/firedoor, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/iron/techmaint, +/area/maintenance/port/central) "bNS" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -5271,51 +5742,32 @@ }, /turf/open/floor/iron/dark, /area/gateway) -"bPc" = ( -/obj/machinery/power/apc/auto_name/directional/west{ - pixel_x = -24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 +"bPj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/turf_decal/guideline/guideline_half_edge/yellow{ - dir = 6 +/obj/machinery/light{ + dir = 1 }, -/obj/effect/turf_decal/guideline/guideline_half_edge/yellow{ +/obj/effect/turf_decal/guideline/guideline_tri/red, +/obj/effect/turf_decal/guideline/guideline_edge_alt/red{ dir = 8 }, -/obj/effect/turf_decal/guideline/guideline_edge_alt/yellow{ +/obj/effect/turf_decal/guideline/guideline_half_edge/red{ dir = 4 }, -/obj/effect/turf_decal/guideline/guideline_tri/yellow{ - dir = 1 +/obj/effect/turf_decal/guideline/guideline_half_edge/red{ + dir = 10 }, -/obj/structure/disposalpipe/segment{ - dir = 2 +/obj/effect/turf_decal/tile/neutral{ + dir = 4 }, /turf/open/floor/iron, -/area/engine/engineering) +/area/security/main) "bPo" = ( /obj/structure/sign/departments/minsky/research/dorms, /turf/closed/wall, /area/hydroponics) -"bPu" = ( -/obj/machinery/camera/autoname/directional/north, -/obj/machinery/firealarm/directional/north, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark/side, -/area/hallway/primary/central) "bPy" = ( /obj/effect/turf_decal/tile/blue/fourcorners/contrasted, /obj/structure/disposalpipe/segment{ @@ -5365,6 +5817,20 @@ /obj/structure/sign/poster/random, /turf/closed/wall, /area/security/brig/medbay) +"bQj" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/effect/turf_decal/tile/purple/fourcorners/contrasted, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/iron/white, +/area/science/lobby) "bQq" = ( /obj/machinery/vending/wardrobe/chef_wardrobe, /obj/effect/turf_decal/bot, @@ -5425,6 +5891,32 @@ }, /turf/open/floor/iron, /area/hallway/primary/starboard) +"bQR" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/xenoartifact_labeler{ + pixel_y = 6 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 4; + pixel_y = 10 + }, +/obj/item/xenoartifact_labeler{ + pixel_y = 6 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 4; + pixel_y = 10 + }, +/obj/item/healthanalyzer, +/obj/item/analyzer, +/obj/item/clothing/gloves/artifact_pinchers{ + pixel_y = 3 + }, +/turf/open/floor/iron, +/area/science/explab) "bRf" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ @@ -5483,22 +5975,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"bRB" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/guideline/guideline_half_edge/yellow, -/obj/effect/turf_decal/guideline/guideline_half_edge/yellow{ - dir = 5 - }, -/obj/effect/turf_decal/guideline/guideline_edge_alt/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/guideline/guideline_tri/yellow{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron, -/area/engine/engineering) "bRH" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 1 @@ -5545,27 +6021,6 @@ }, /turf/open/floor/iron, /area/crew_quarters/cafeteria) -"bSI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/security/glass{ - name = "Gear Room"; - req_one_access_txt = "1" - }, -/obj/effect/turf_decal/stripes/closeup, -/turf/open/floor/iron, -/area/security/main) "bSZ" = ( /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /obj/structure/cable/yellow{ @@ -5579,18 +6034,6 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/miningdock) -"bTi" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","engine") - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/engine/storage) "bTm" = ( /obj/machinery/vending/job_disk, /obj/item/radio/intercom{ @@ -5600,6 +6043,10 @@ }, /turf/open/floor/wood, /area/crew_quarters/heads/hop) +"bTp" = ( +/obj/structure/sign/departments/holy, +/turf/closed/wall, +/area/chapel/main) "bTB" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -5632,13 +6079,6 @@ }, /turf/open/floor/iron/solarpanel/airless, /area/solar/port/fore) -"bTR" = ( -/obj/item/kirbyplants/random, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/quartermaster/exploration_prep) "bUf" = ( /obj/structure/chair/stool/directional/west, /obj/effect/turf_decal/siding/wood{ @@ -5714,6 +6154,30 @@ "bUS" = ( /turf/open/floor/carpet/purple, /area/chapel/main) +"bVn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/iron/dark, +/area/security/brig) +"bWj" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering Security Door" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/noslip/standard, +/area/engine/engineering) "bWl" = ( /obj/effect/turf_decal/tile/blue/half{ dir = 8 @@ -5752,13 +6216,6 @@ }, /turf/open/floor/carpet/green, /area/crew_quarters/cafeteria) -"bWU" = ( -/obj/structure/chair/office, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/security/brig) "bXk" = ( /obj/machinery/light{ dir = 1 @@ -5794,32 +6251,39 @@ }, /turf/open/floor/iron, /area/crew_quarters/cafeteria) -"bXM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/guideline/guideline_tri/red, -/obj/effect/turf_decal/guideline/guideline_edge_alt/red{ - dir = 8 +"bXU" = ( +/obj/effect/decal/cleanable/robot_debris/old, +/turf/open/space/basic, +/area/solar/port/fore) +"bYa" = ( +/obj/item/rollerbed, +/obj/item/rollerbed{ + pixel_x = 4; + pixel_y = 4 }, -/obj/effect/turf_decal/guideline/guideline_half_edge/red{ - dir = 4 +/obj/structure/closet/crate/medical, +/obj/machinery/firealarm/directional/east, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/clothing/suit/jacket/straight_jacket, +/obj/item/clothing/glasses/blindfold{ + pixel_x = -4; + pixel_y = 8 }, -/obj/effect/turf_decal/guideline/guideline_half_edge/red{ - dir = 10 +/obj/item/clothing/mask/muzzle, +/obj/item/reagent_containers/blood/OPlus, +/turf/open/floor/iron/white, +/area/security/brig/medbay) +"bYb" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 +/obj/structure/sign/poster/official/random{ + pixel_x = -32 }, /turf/open/floor/iron, -/area/security/main) -"bXU" = ( -/obj/effect/decal/cleanable/robot_debris/old, -/turf/open/space/basic, -/area/solar/port/fore) +/area/security/prison) "bYf" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ @@ -5832,6 +6296,28 @@ }, /turf/open/floor/iron, /area/crew_quarters/cafeteria) +"bYr" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + freerange = 1; + name = "Prison intercom"; + pixel_y = 25; + prison_radio = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/security/prison) "bYw" = ( /obj/effect/decal/remains/human{ pixel_x = -10; @@ -6021,6 +6507,26 @@ }, /turf/open/floor/iron, /area/crew_quarters/cafeteria) +"cbV" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/obj/machinery/door/window/northleft{ + dir = 8; + name = "Kitchen Doors"; + req_one_access_txt = "28;25;35" + }, +/turf/open/floor/iron/cafeteria, +/area/crew_quarters/kitchen) "cbX" = ( /turf/closed/wall, /area/crew_quarters/heads/hos) @@ -6071,12 +6577,6 @@ }, /turf/open/floor/engine/vacuum, /area/engine/atmospherics_engine) -"ccG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/wood, -/obj/structure/table/wood, -/turf/open/floor/carpet/green, -/area/hallway/secondary/exit/departure_lounge) "cdn" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 @@ -6138,48 +6638,6 @@ }, /turf/open/floor/iron/dark, /area/engine/atmos) -"ceM" = ( -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "outerbrign"; - name = "Brig Exterior Doors Control"; - normaldoorcontrol = 1; - pixel_x = -26; - pixel_y = 7; - req_access_txt = "1" - }, -/obj/machinery/button/door{ - id = "brigentrance"; - name = "Brig Lockdown Control"; - pixel_x = -26; - pixel_y = -5; - req_access_txt = "1" - }, -/obj/machinery/button/flasher{ - id = "brigentryaux"; - pixel_x = -36; - pixel_y = 1; - req_access_txt = "1" - }, -/obj/effect/turf_decal/guideline/guideline_tri/red{ - dir = 4 - }, -/obj/effect/turf_decal/guideline/guideline_half_edge/red{ - dir = 9 - }, -/obj/effect/turf_decal/guideline/guideline_edge_alt/red, -/obj/effect/turf_decal/guideline/guideline_half_edge/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron, -/area/security/brig) "ceW" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -6500,10 +6958,6 @@ dir = 4 }, /area/medical/medbay/central) -"ciT" = ( -/obj/structure/sign/departments/minsky/security/security, -/turf/closed/wall/r_wall, -/area/security/prison) "cjc" = ( /obj/structure/girder/reinforced, /turf/open/space/basic, @@ -6558,11 +7012,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/engine, /area/science/xenobiology) -"ckg" = ( -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/siding/white, -/turf/open/floor/glass/reinforced, -/area/hallway/primary/central) "ckl" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -6727,18 +7176,6 @@ dir = 4 }, /area/hallway/primary/central) -"cmu" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/iron/dark, -/area/security/prison) "cmw" = ( /obj/machinery/power/apc/auto_name/directional/north, /turf/closed/wall/r_wall, @@ -6751,6 +7188,18 @@ }, /turf/open/floor/carpet, /area/crew_quarters/cafeteria) +"cnx" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/extinguisher_cabinet{ + pixel_x = -32 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/quartermaster/qm) "cnK" = ( /obj/structure/chair/fancy/comfy{ buildstackamount = 0; @@ -6795,13 +7244,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/bridge) -"cnW" = ( -/obj/machinery/camera/motion/directional/south{ - c_tag = "MiniSat Exterior 3"; - network = list("minisat") - }, -/turf/open/space/basic, -/area/space) "cnX" = ( /obj/effect/turf_decal/delivery, /obj/machinery/door/window/southleft{ @@ -6834,19 +7276,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/security/brig/dock) -"coe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera/autoname/directional/west{ - c_tag = "MiniSat Core Hallway 5"; - network = list("minisat") - }, -/turf/open/floor/circuit, -/area/ai_monitored/storage/satellite) "coj" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -6952,14 +7381,6 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/engine/atmos) -"cpu" = ( -/obj/item/assembly/flash/handheld/weak{ - pixel_x = 6; - pixel_y = 11 - }, -/obj/structure/table/wood, -/turf/open/floor/carpet/green, -/area/security/main) "cpx" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -7027,29 +7448,6 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/freezer, /area/crew_quarters/toilet) -"crc" = ( -/obj/machinery/door/airlock/security{ - name = "Prison Intake"; - req_access_txt = "2" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/closeup{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/security/prison) "crh" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -7068,9 +7466,6 @@ }, /turf/open/floor/iron, /area/janitor) -"crB" = ( -/turf/closed/wall/r_wall, -/area/security/brig) "crF" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 28 @@ -7103,6 +7498,18 @@ }, /turf/open/floor/plating, /area/medical/morgue) +"csB" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/turf/open/floor/iron/dark, +/area/security/prison) "csG" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ @@ -7126,23 +7533,6 @@ /obj/structure/fans/tiny/invisible, /turf/open/floor/iron/dark, /area/quartermaster/storage) -"csX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "Engidesk"; - name = "engineering Security Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/engine/engineering) "csY" = ( /obj/effect/turf_decal/tile/yellow, /turf/open/floor/iron/white, @@ -7170,16 +7560,6 @@ }, /turf/open/floor/carpet, /area/library) -"ctk" = ( -/obj/structure/chair/fancy/sofa/old/left, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/sign/painting/library{ - pixel_y = 32 - }, -/turf/open/floor/carpet/green, -/area/security/main) "ctt" = ( /turf/closed/wall, /area/quartermaster/office) @@ -7232,6 +7612,16 @@ }, /turf/open/floor/iron, /area/hallway/secondary/entry) +"cty" = ( +/obj/machinery/cryopod{ + desc = "Suited for Cyborgs and Humanoids, the pod is a safe place for personnel affected by the Space Sleep Disorder to get some rest. If you think that this the easy way out, Nanotrasen will address your situation in a later date..."; + name = "Jail cryogenic freezer" + }, +/obj/machinery/computer/cryopod{ + pixel_y = 25 + }, +/turf/open/floor/prison, +/area/security/prison) "ctA" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, @@ -7329,6 +7719,15 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/hallway/primary/central) +"cvc" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" + }, +/obj/structure/cable/yellow, +/obj/effect/spawner/structure/window/reinforced/prison, +/turf/open/floor/plating, +/area/security/prison) "cve" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 6 @@ -7458,6 +7857,21 @@ /obj/machinery/airalarm/directional/west, /turf/open/floor/iron/dark, /area/quartermaster/office) +"cxh" = ( +/obj/structure/chair/fancy/sofa/old/right, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/item/radio/intercom{ + pixel_x = -33; + pixel_y = -1 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light_switch{ + pixel_x = -20 + }, +/turf/open/floor/carpet/green, +/area/security/main) "cxk" = ( /turf/open/floor/plating, /area/construction/mining/aux_base) @@ -7634,9 +8048,22 @@ }, /turf/open/floor/iron/large, /area/hallway/primary/central) -"cyy" = ( -/turf/closed/wall, -/area/security/main) +"cyp" = ( +/obj/machinery/processor, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom{ + dir = 1; + pixel_x = 1; + pixel_y = 23 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north{ + c_tag = "Teleporter Room" + }, +/turf/open/floor/iron/white, +/area/crew_quarters/kitchen) "cyG" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 9 @@ -7764,13 +8191,6 @@ }, /turf/open/floor/iron/dark, /area/crew_quarters/heads/chief) -"cAq" = ( -/obj/effect/turf_decal/guideline/guideline_edge/red, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/security/main) "cAC" = ( /obj/structure/lattice/catwalk, /obj/structure/marker_beacon, @@ -7786,11 +8206,28 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/catwalk_floor/iron_dark, /area/engine/engine_room) +"cBb" = ( +/obj/structure/closet/secure_closet/security/sec{ + anchored = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/security/main) "cBp" = ( /obj/effect/landmark/start/lawyer, /obj/structure/chair/office, /turf/open/floor/carpet/royalblack, /area/lawoffice) +"cBH" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron, +/area/security/prison) "cBK" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/neutral{ @@ -7901,22 +8338,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/dark, /area/vacant_room/commissary/commissary2) -"cEd" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/light_switch{ - pixel_x = 21; - pixel_y = -21 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/iron/dark, -/area/security/brig) "cEE" = ( /obj/machinery/light/small{ dir = 4 @@ -7929,14 +8350,6 @@ /mob/living/basic/cockroach, /turf/open/floor/iron/cafeteria, /area/maintenance/port/aft) -"cEU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/dark, -/area/engine/engine_room) "cFj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -8087,25 +8500,6 @@ }, /turf/open/floor/catwalk_floor, /area/maintenance/department/bridge) -"cHW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/guideline/guideline_edge_alt/red, -/obj/effect/turf_decal/guideline/guideline_half_edge/red{ - dir = 9 - }, -/obj/effect/turf_decal/guideline/guideline_half_edge/red{ - dir = 1 - }, -/obj/effect/turf_decal/guideline/guideline_tri/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/security/main) "cId" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -8116,17 +8510,6 @@ }, /turf/open/floor/plating, /area/library) -"cIe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "quarantineshutters"; - name = "Isolation Shutters" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/medical/virology) "cIf" = ( /obj/item/gun/energy/e_gun/dragnet{ pixel_x = -2; @@ -8157,23 +8540,18 @@ }, /turf/open/floor/iron/white, /area/science/lobby) -"cIF" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/northleft{ - dir = 2; - name = "Chemistry Desk"; - req_one_access_txt = "5;33" +"cIA" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters"; - name = "chemistry Shutters" +/obj/machinery/light_switch{ + pixel_y = -25 }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted, -/obj/item/folder/white, -/obj/item/folder/white, -/turf/open/floor/plating, -/area/medical/apothecary) +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/security/main) "cIJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -8226,25 +8604,6 @@ }, /turf/open/floor/iron, /area/engine/atmos) -"cJu" = ( -/obj/effect/turf_decal/tile/red/fourcorners/contrasted, -/obj/machinery/status_display/door_timer{ - id = "cell"; - name = "Solitary confinement timer"; - pixel_x = 32 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/camera/autoname/directional/east{ - network = list("ss13","prison") - }, -/turf/open/floor/prison, -/area/security/prison) "cJD" = ( /obj/machinery/telecomms/bus/preset_three, /obj/effect/turf_decal/stripes/line{ @@ -8252,13 +8611,6 @@ }, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"cJH" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/main) "cJN" = ( /obj/structure/sign/painting/library{ pixel_x = -32 @@ -8296,20 +8648,6 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron, /area/hallway/primary/fore) -"cKl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "brigentrance"; - name = "Brig Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/brig) "cKm" = ( /turf/closed/wall/rust, /area/quartermaster/qm) @@ -8331,20 +8669,6 @@ }, /turf/open/floor/catwalk_floor, /area/maintenance/starboard/aft) -"cKY" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engidesk"; - name = "engineering Security Door" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/northright{ - dir = 2; - name = "Engi Desk"; - req_one_access_txt = "32;19" - }, -/obj/machinery/modular_fabricator/autolathe, -/turf/open/floor/iron/dark, -/area/engine/engineering) "cLj" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -8457,13 +8781,22 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cMl" = ( -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/siding/white{ - dir = 10 +"cMD" = ( +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor/glass/reinforced, -/area/hallway/primary/central) +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/carpet/royalblack, +/area/library) "cME" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/stripes{ @@ -8579,13 +8912,14 @@ "cOA" = ( /turf/closed/wall/rust, /area/maintenance/port/central) -"cOB" = ( -/obj/machinery/smartfridge{ - name = "Bulk storage" +"cOF" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/turf_decal/delivery, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","rd") }, -/obj/effect/turf_decal/tile/dark_green/fourcorners/contrasted, /turf/open/floor/iron, -/area/hydroponics) +/area/science/storage) "cOL" = ( /obj/effect/turf_decal/tile/purple/fourcorners/contrasted, /obj/structure/cable/yellow{ @@ -8604,15 +8938,6 @@ }, /turf/open/floor/iron/white, /area/science/research) -"cOU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/machinery/door/poddoor/preopen{ - id = "brigentrance"; - name = "Brig Blast Door" - }, -/turf/open/floor/plating, -/area/security/prison) "cPj" = ( /obj/structure/lattice, /obj/structure/frame, @@ -8718,16 +9043,26 @@ }, /turf/open/floor/iron, /area/hallway/secondary/entry) -"cRs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/vending/wardrobe/cargo_wardrobe, -/obj/structure/railing{ +"cQP" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ dir = 8 }, -/turf/open/floor/iron/dark, -/area/quartermaster/office) +/obj/effect/turf_decal/guideline/guideline_in/blue, +/obj/machinery/light_switch{ + pixel_x = 21; + pixel_y = -21 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light{ + bulb_colour = "#22bfa2"; + bulb_vacuum_colour = "#22bfa2"; + dir = 4; + nightshift_light_color = "#22bfa2" + }, +/turf/open/floor/iron/white, +/area/medical/medbay/lobby) "cRw" = ( /obj/structure/cable/yellow{ icon_state = "2-8" @@ -8853,6 +9188,26 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/glass/reinforced, /area/crew_quarters/cafeteria) +"cTi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridgedoors"; + name = "Bridge Access Blast Door" + }, +/turf/open/floor/plating, +/area/bridge) "cTn" = ( /obj/structure/sign/barsign, /turf/closed/wall, @@ -8862,6 +9217,27 @@ /obj/machinery/modular_computer/console/preset/engineering, /turf/open/floor/iron/dark, /area/crew_quarters/heads/chief) +"cTF" = ( +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","cargo") + }, +/obj/machinery/conveyor{ + dir = 8; + id = "MailConv" + }, +/obj/structure/closet/crate, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/iron/dark, +/area/quartermaster/office) "cTJ" = ( /obj/effect/turf_decal/guideline/guideline_out_alt/brown{ dir = 4 @@ -9059,30 +9435,15 @@ }, /turf/open/floor/iron/dark, /area/crew_quarters/heads/chief) -"cXY" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/clothing/suit/utility/radiation, -/obj/item/clothing/head/utility/radiation, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/iron/dark, -/area/engine/engine_room) -"cYn" = ( +"cYg" = ( /obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ alpha = 180; color = "#DE3A3A" }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 4 }, -/turf/open/floor/iron, +/turf/open/floor/iron/dark, /area/security/main) "cYr" = ( /obj/effect/turf_decal/siding/wood{ @@ -9094,6 +9455,29 @@ }, /turf/open/floor/carpet, /area/crew_quarters/cafeteria) +"cYB" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/closeup{ + dir = 1 + }, +/turf/open/floor/iron, +/area/security/main) "cYG" = ( /obj/structure/lattice, /obj/item/stack/sheet/iron, @@ -9115,6 +9499,12 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/cafeteria, /area/crew_quarters/kitchen) +"cYS" = ( +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","engine") + }, +/turf/open/floor/engine/n2, +/area/engine/atmos) "cYW" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ alpha = 180; @@ -9171,17 +9561,6 @@ }, /turf/open/floor/catwalk_floor/iron_dark, /area/maintenance/department/medical/morgue) -"cZo" = ( -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 1; - icon_state = "left"; - name = "Security Delivery"; - req_access_txt = "1" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plating, -/area/security/brig) "daa" = ( /obj/effect/turf_decal/siding/wood, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ @@ -9203,36 +9582,18 @@ /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/maintenance/port/central) +"daC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/iron/dark, +/area/engine/engine_room) "daR" = ( /obj/machinery/light/floor, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/tech, /area/engine/atmos) -"dbb" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/camera/autoname/directional/north{ - c_tag = "Science - Toxins Mixing Lab Burn Chamber"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/dark/side{ - dir = 5 - }, -/area/science/mixing/chamber) "dbc" = ( /obj/structure/disposalpipe/segment{ dir = 8 @@ -9260,33 +9621,20 @@ }, /turf/open/floor/iron/tech, /area/engine/engine_room) +"dbk" = ( +/obj/machinery/door/poddoor/preopen{ + id = "hosprivacy"; + name = "HoS Privacy Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) "dbm" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/maintenance/port/aft) -"dbo" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/structure/disposalpipe/sorting/mail/destination/detective_office, -/turf/open/floor/iron, -/area/security/main) -"dbs" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/machinery/camera/autoname/directional/north{ - c_tag = "MiniSat Upload East"; - network = list("minisat","aiupload") - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat/foyer) "dbB" = ( /obj/structure/dresser, /obj/item/bikehorn{ @@ -9371,17 +9719,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/bridge/meeting_room) -"dcd" = ( -/obj/effect/landmark/start/ai/secondary, -/obj/machinery/door/window{ - base_state = "leftsecure"; - icon_state = "leftsecure"; - name = "Tertiary AI Core Access"; - obj_integrity = 300; - req_access_txt = "16" - }, -/turf/open/floor/engine/o2, -/area/ai_monitored/turret_protected/ai) "dcf" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /obj/machinery/newscaster{ @@ -9412,6 +9749,17 @@ }, /turf/open/floor/iron/dark/side, /area/hallway/primary/central) +"dcy" = ( +/obj/effect/landmark/start/ai/secondary, +/obj/machinery/door/window{ + base_state = "leftsecure"; + icon_state = "leftsecure"; + name = "Tertiary AI Core Access"; + obj_integrity = 300; + req_access_txt = "16" + }, +/turf/open/floor/engine/o2, +/area/ai_monitored/turret_protected/ai) "dcB" = ( /obj/machinery/ai_slipper{ uses = 10 @@ -9419,17 +9767,6 @@ /obj/effect/turf_decal/box, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) -"dcD" = ( -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "medpriv1"; - name = "privacy Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/exam_room) "dcG" = ( /turf/open/floor/iron/white, /area/medical/apothecary) @@ -9607,6 +9944,13 @@ dir = 1 }, /area/hallway/primary/central) +"dfB" = ( +/obj/machinery/camera/autoname/directional/west{ + c_tag = "Xenobiology Lab - Pen #6"; + network = list("ss13","rd","xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) "dfI" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -9635,18 +9979,6 @@ }, /turf/open/floor/iron/half, /area/hallway/primary/central) -"dgd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/sign/warning/securearea{ - pixel_y = 30 - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","engine") - }, -/turf/open/floor/iron/dark, -/area/engine/engine_room) "dgg" = ( /obj/structure/sign/poster/random, /turf/closed/wall/r_wall, @@ -9735,26 +10067,6 @@ dir = 8 }, /area/medical/sleeper) -"diB" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 8 - }, -/obj/machinery/door/window/northleft{ - dir = 8; - name = "Kitchen Doors"; - req_one_access_txt = "28;25;35" - }, -/turf/open/floor/iron/cafeteria, -/area/crew_quarters/kitchen) "diF" = ( /obj/structure/transit_tube/station/reverse{ dir = 4 @@ -9765,6 +10077,26 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat/foyer) +"diM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/tank_dispenser{ + pixel_x = -1 + }, +/obj/machinery/requests_console{ + department = "Atmospherics"; + departmentType = 3; + name = "Atmos RC"; + pixel_x = -1; + pixel_y = 30 + }, +/obj/machinery/camera/autoname/directional/north{ + c_tag = "Incinerator"; + network = list("ss13","engine") + }, +/turf/open/floor/iron/dark, +/area/engine/atmos) "diN" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/siding/wideplating/dark{ @@ -9787,21 +10119,19 @@ /obj/machinery/portable_atmospherics/scrubber/huge, /turf/open/floor/iron, /area/science/storage) -"dja" = ( -/obj/effect/turf_decal/delivery/red, -/obj/machinery/door/poddoor/preopen{ - id = "brigentrance"; - name = "Brig Blast Door" +"diT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/obj/machinery/turnstile, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/closeup, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 +/obj/machinery/door/airlock/maintenance/external{ + name = "construction Zone"; + req_one_access_txt = "32;47;48;37;29" }, -/obj/effect/turf_decal/stripes/red/line, -/turf/open/floor/iron/dark, -/area/security/prison) +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/turf/open/floor/iron, +/area/construction/mining/aux_base) "djl" = ( /turf/closed/wall{ desc = "Try setting a bomb next to it. This may destroy the wall, allowing you access to the room on the other side."; @@ -9871,6 +10201,14 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/engine, /area/engine/atmos) +"dkf" = ( +/obj/machinery/biogenerator, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/black/fourcorners, +/turf/open/floor/iron/techmaint, +/area/security/prison) "dkh" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/purple{ @@ -9879,6 +10217,16 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, /area/maintenance/department/science) +"dki" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + id_tag = "commissarydoor"; + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/barricade/wooden/crude, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plating, +/area/maintenance/port/central) "dkt" = ( /obj/structure/curtain/bounty, /turf/open/floor/plating, @@ -9928,31 +10276,6 @@ dir = 4 }, /area/hallway/secondary/exit/departure_lounge) -"dlh" = ( -/obj/machinery/recharger, -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/bottle/wine{ - pixel_x = -9; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 10; - pixel_y = 13 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 10; - pixel_y = 5 - }, -/obj/machinery/light, -/obj/machinery/computer/security/telescreen/entertainment{ - network = list("thunder","court"); - pixel_y = -32 - }, -/obj/machinery/camera/autoname/directional/south{ - network = list("ss13","rd") - }, -/turf/open/floor/carpet, -/area/quartermaster/exploration_prep) "dli" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Sec Maintenance Hatch"; @@ -9979,15 +10302,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) -"dlE" = ( -/obj/machinery/newscaster{ - pixel_y = 33 - }, -/obj/machinery/camera/autoname/directional/north, -/obj/effect/turf_decal/bot, -/obj/machinery/computer/warrant, -/turf/open/floor/carpet/royalblack, -/area/lawoffice) "dlF" = ( /obj/effect/spawner/lootdrop/maintenance/two, /obj/structure/rack, @@ -10046,6 +10360,26 @@ }, /turf/open/floor/iron, /area/quartermaster/qm) +"dmC" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted{ + alpha = 180 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/open/floor/iron, +/area/engine/engineering) "dmD" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ alpha = 180; @@ -10096,17 +10430,6 @@ }, /turf/open/floor/catwalk_floor, /area/maintenance/department/engine) -"doe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosroom"; - name = "HoS Room Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) "dom" = ( /obj/machinery/shower{ dir = 8 @@ -10159,13 +10482,6 @@ /obj/machinery/vending/dinnerware, /turf/open/floor/iron/dark, /area/vacant_room/commissary/commissary2) -"dpI" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/guideline/guideline_edge/red, -/turf/open/floor/iron, -/area/security/brig) "dqc" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 4 @@ -10290,6 +10606,14 @@ "drp" = ( /turf/closed/wall, /area/engine/atmos) +"drF" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/medical/exam_room) "drI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -10330,18 +10654,6 @@ /obj/machinery/status_display/evac, /turf/closed/wall, /area/gateway) -"dsw" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron/dark, -/area/engine/engine_room) "dsS" = ( /obj/machinery/door/airlock/maintenance_hatch{ id_tag = "commissarydoor"; @@ -10458,49 +10770,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/science) -"dvd" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/iron, -/area/security/main) -"dvk" = ( -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/item/toy/beach_ball/holoball/dodgeball{ - name = "dodgeball 2 of 5" - }, -/obj/effect/landmark/start/security_officer, -/obj/item/food/popcorn, -/obj/item/food/deadmouse, -/obj/item/trash/raisins, -/obj/item/trash/syndi_cakes, -/turf/open/floor/iron/dark, -/area/security/brig) "dvq" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -10535,6 +10804,16 @@ dir = 4 }, /area/hallway/primary/central) +"dvL" = ( +/obj/machinery/telecomms/bus/preset_exploration, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/quartermaster/exploration_prep) "dvV" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 @@ -10581,6 +10860,20 @@ /obj/machinery/atmospherics/components/unary/thermomachine/heater, /turf/open/floor/iron/tech, /area/engine/atmos) +"dwo" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/camera/autoname/directional/east{ + c_tag = "Interrogation room"; + network = list("interrogation") + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark, +/area/security/brig) "dwu" = ( /obj/structure/plasticflaps/opaque, /obj/machinery/navbeacon{ @@ -10660,6 +10953,20 @@ }, /turf/open/floor/iron/dark, /area/medical/virology) +"dxs" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosroom"; + name = "HoS Room Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) "dxu" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{ dir = 4 @@ -10805,25 +11112,6 @@ }, /turf/open/floor/iron/dark, /area/security/brig/dock) -"dzQ" = ( -/obj/item/kirbyplants/random{ - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/guideline/guideline_half_edge/brown{ - dir = 10 - }, -/obj/effect/turf_decal/guideline/guideline_half_edge/brown{ - dir = 4 - }, -/obj/effect/turf_decal/guideline/guideline_edge_alt/brown{ - dir = 8 - }, -/obj/effect/turf_decal/guideline/guideline_tri/brown, -/turf/open/floor/iron, -/area/hallway/primary/port) "dzW" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ @@ -10837,6 +11125,12 @@ }, /turf/open/floor/carpet/grimy, /area/chapel/office) +"dAa" = ( +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","engine") + }, +/turf/open/floor/engine/air, +/area/engine/atmos) "dAd" = ( /obj/structure/closet, /obj/effect/spawner/lootdrop/maintenance, @@ -10857,17 +11151,6 @@ }, /turf/open/floor/iron/half, /area/hallway/primary/central) -"dAy" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/guideline/guideline_edge/red, -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/security/brig) "dAD" = ( /obj/machinery/firealarm{ dir = 4; @@ -10931,15 +11214,6 @@ /obj/structure/table/glass, /turf/open/floor/iron, /area/medical/cryo) -"dBn" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/firealarm/directional/east, -/obj/machinery/camera/autoname/directional/east, -/turf/open/floor/iron/grid/steel, -/area/hydroponics) "dBO" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 @@ -11039,19 +11313,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/carpet/royalblack, /area/library) -"dDB" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/structure/cable/cyan{ - icon_state = "4-8" - }, -/obj/machinery/camera/autoname/directional/north{ - c_tag = "MiniSat Upload West"; - network = list("minisat","aiupload") - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat/foyer) "dDD" = ( /obj/machinery/light/floor{ brightness = 15; @@ -11082,29 +11343,6 @@ }, /turf/open/floor/iron/dark, /area/security/nuke_storage) -"dDS" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32; - pixel_y = null - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -7; - pixel_y = 5 - }, -/obj/item/pen/red{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/folder/red{ - pixel_x = 5; - pixel_y = 6 - }, -/turf/open/floor/iron/dark, -/area/security/main) "dDT" = ( /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 9 @@ -11112,6 +11350,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/engine/atmos) +"dEk" = ( +/obj/machinery/smartfridge/organ, +/turf/open/floor/iron/dark, +/area/medical/morgue) "dEo" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -11139,6 +11381,24 @@ /obj/structure/closet/secure_closet/chemical, /turf/open/floor/iron/white, /area/medical/chemistry) +"dEt" = ( +/obj/machinery/newscaster{ + pixel_y = 33 + }, +/obj/machinery/camera/autoname/directional/north, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/warrant, +/turf/open/floor/carpet/royalblack, +/area/lawoffice) +"dEF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "qm_warehouse"; + name = "warehouse Shutters" + }, +/turf/open/floor/iron/sepia, +/area/quartermaster/warehouse) "dEM" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -11370,12 +11630,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/central) -"dHF" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/xenobiology) "dHK" = ( /obj/effect/turf_decal/siding/wideplating/dark, /obj/structure/extinguisher_cabinet{ @@ -11517,13 +11771,6 @@ }, /turf/open/floor/wood, /area/library) -"dJN" = ( -/obj/structure/bodycontainer/morgue, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","medbay") - }, -/turf/open/floor/iron/dark, -/area/medical/morgue) "dJS" = ( /obj/structure/railing{ dir = 9 @@ -11594,17 +11841,6 @@ /obj/machinery/light, /turf/open/floor/circuit/green, /area/science/robotics/mechbay) -"dKO" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/guideline/guideline_edge/red, -/obj/machinery/firealarm/directional/south, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/main) "dLc" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -11696,10 +11932,62 @@ /obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/wood, /area/crew_quarters/heads/captain) +"dLB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/guideline/guideline_in/brown, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/iron, +/area/hallway/primary/port) "dMr" = ( /obj/structure/sign/warning/radiation/rad_area, /turf/closed/wall/r_wall, /area/engine/engine_room) +"dMx" = ( +/obj/machinery/camera/autoname/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/effect/turf_decal/guideline/guideline_half_edge/blue{ + color = "#267878"; + dir = 4 + }, +/obj/effect/turf_decal/guideline/guideline_half_edge/blue{ + color = "#267878"; + dir = 10 + }, +/obj/effect/turf_decal/guideline/guideline_edge_alt/blue{ + color = "#267878"; + dir = 8 + }, +/obj/effect/turf_decal/guideline/guideline_tri/blue{ + color = "#267878" + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/iron, +/area/crew_quarters/dorms) "dMD" = ( /obj/machinery/vending/tool, /obj/effect/turf_decal/bot, @@ -11873,6 +12161,15 @@ }, /turf/open/floor/iron/dark, /area/science/robotics) +"dNw" = ( +/obj/item/kirbyplants/random, +/obj/machinery/firealarm/directional/west, +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","medbay"); + view_range = 8 + }, +/turf/open/floor/iron/white, +/area/medical/cryo) "dND" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/dirt, @@ -11950,14 +12247,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/maintenance/port/aft) -"dPd" = ( -/obj/machinery/jukebox{ - dept_req_for_free = 0; - req_access = "0" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/holofloor/wood, -/area/security/main) "dPr" = ( /obj/effect/turf_decal/tile/blue/fourcorners/contrasted, /obj/structure/bed/roller, @@ -11984,31 +12273,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/engine/engine_room) -"dPG" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - alpha = 180; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/effect/turf_decal/guideline/guideline_in/yellow{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/engine/engineering) "dQv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -12032,6 +12296,23 @@ }, /turf/open/floor/iron/tech, /area/engine/atmos) +"dRc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/machinery/door/airlock/security{ + name = "Evidence Storage"; + req_one_access_txt = "1;4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/closeup, +/turf/open/floor/iron/dark, +/area/security/brig) "dRq" = ( /turf/closed/wall, /area/science/xenobiology) @@ -12062,16 +12343,6 @@ /obj/structure/sign/poster/random, /turf/closed/wall, /area/janitor) -"dRZ" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/security/main) "dSm" = ( /obj/structure/lattice/catwalk, /obj/structure/marker_beacon, @@ -12120,6 +12391,13 @@ /obj/structure/lattice/catwalk, /turf/open/space/basic, /area/space/nearstation) +"dTx" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/main) "dTz" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 1 @@ -12157,20 +12435,6 @@ }, /turf/open/floor/iron/dark, /area/engine/atmos) -"dUj" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/iron/dark, -/area/security/main) "dUk" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -12219,6 +12483,12 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) +"dUF" = ( +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","engine") + }, +/turf/open/floor/engine/airless, +/area/engine/atmos) "dUZ" = ( /obj/machinery/door/airlock/grunge{ name = "Cabin 2" @@ -12230,6 +12500,11 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/iron/white, /area/crew_quarters/kitchen) +"dVe" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark, +/area/security/prison) "dVh" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -12312,14 +12587,6 @@ }, /turf/open/floor/iron/grid/steel, /area/science/xenobiology) -"dVX" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/guideline/guideline_edge/red, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron, -/area/security/main) "dVY" = ( /obj/structure/sign/departments/restroom, /turf/closed/wall, @@ -12363,6 +12630,28 @@ /obj/structure/table/wood, /turf/open/floor/carpet/green, /area/crew_quarters/cafeteria) +"dWt" = ( +/obj/machinery/door/poddoor/preopen{ + id = "detectivewindows"; + name = "Detective Privacy Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/security/detectives_office) +"dWD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/west{ + c_tag = "MiniSat Core Hallway 5"; + network = list("minisat") + }, +/turf/open/floor/circuit, +/area/ai_monitored/storage/satellite) "dWN" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 4 @@ -12429,21 +12718,31 @@ }, /turf/open/floor/iron, /area/crew_quarters/dorms) -"dXJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +"dXE" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/bot, +/obj/machinery/light, +/turf/open/floor/holofloor/wood, +/area/security/main) +"dXN" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" }, /obj/structure/cable/yellow{ - icon_state = "4-8" + icon_state = "0-8" }, -/obj/structure/disposalpipe/segment{ - dir = 6 +/obj/structure/cable/yellow, +/obj/machinery/door/airlock/highsecurity{ + name = "AI Core"; + req_access_txt = "65" }, -/turf/open/floor/catwalk_floor, -/area/maintenance/department/engine) +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/poddoor{ + id = "AIwindows"; + name = "AI View Blast Door" + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/aisat/foyer) "dXS" = ( /obj/machinery/holopad, /obj/effect/turf_decal/box, @@ -12469,16 +12768,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /turf/open/floor/iron, /area/security/brig) -"dYk" = ( -/obj/structure/table/reinforced, -/obj/item/toy/figure/chef, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "Chefwindow"; - name = "Chef Window" - }, -/turf/open/floor/iron/white, -/area/crew_quarters/kitchen) "dYn" = ( /obj/effect/turf_decal/siding/wideplating/dark, /obj/machinery/firealarm/directional/east, @@ -12639,26 +12928,6 @@ /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/plating, /area/maintenance/port/central) -"ebP" = ( -/obj/machinery/door/airlock/command/glass{ - name = "EVA"; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopshutter"; - name = "Privacy Shutters" - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) "ech" = ( /obj/effect/turf_decal/loading_area, /obj/structure/disposalpipe/segment{ @@ -12726,17 +12995,6 @@ }, /turf/open/floor/iron/white, /area/medical/chemistry) -"edP" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/iron/dark, -/area/bridge) "een" = ( /obj/structure/chair/office/light{ dir = 4 @@ -12938,20 +13196,21 @@ }, /turf/open/floor/iron, /area/hydroponics) -"egI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 +"egH" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + id_tag = "commissarydoor"; + name = "Maintenance Hatch"; + req_access_txt = "41" }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 1 }, -/obj/item/radio/intercom{ - pixel_x = -32; - pixel_y = 3 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/dark, -/area/engine/engine_room) +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/quartermaster/qm) "ehk" = ( /obj/structure/window/reinforced{ dir = 8; @@ -13020,20 +13279,6 @@ }, /turf/open/floor/plating, /area/medical/medbay/central) -"eiI" = ( -/obj/machinery/modular_fabricator/exosuit_fab{ - output_direction = 8 - }, -/obj/machinery/status_display/evac{ - pixel_x = 32; - pixel_y = 1 - }, -/obj/machinery/ecto_sniffer{ - pixel_x = 2; - pixel_y = 7 - }, -/turf/open/floor/iron/dark, -/area/science/robotics) "eiL" = ( /turf/open/floor/engine/plasma, /area/engine/atmos) @@ -13144,16 +13389,6 @@ /obj/effect/decal/cleanable/oil, /turf/open/floor/plating, /area/quartermaster/warehouse) -"ekq" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/camera/autoname/directional/east{ - network = list("ss13","engine") - }, -/turf/open/floor/iron/dark, -/area/engine/atmos) "eku" = ( /obj/effect/turf_decal/delivery, /obj/structure/cable/yellow{ @@ -13228,15 +13463,6 @@ }, /turf/open/floor/iron/dark, /area/security/checkpoint/auxiliary) -"elO" = ( -/obj/structure/bed, -/obj/item/bedsheet/purple{ - name = "Holy bedsheet" - }, -/obj/machinery/camera/autoname/directional/north, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/wood, -/area/chapel/office) "elX" = ( /obj/structure/disposalpipe/segment{ dir = 8 @@ -13246,6 +13472,20 @@ }, /turf/open/floor/iron/cafeteria, /area/crew_quarters/kitchen) +"elY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/quartermaster/office) "emB" = ( /obj/effect/turf_decal/tile/neutral/half{ dir = 4 @@ -13259,9 +13499,6 @@ /obj/structure/reagent_dispensers/watertank/high, /turf/open/floor/iron/dark, /area/chapel/office) -"emF" = ( -/turf/closed/wall/r_wall, -/area/security/brig/dock) "emI" = ( /obj/item/cigbutt{ pixel_x = -13; @@ -13350,6 +13587,23 @@ }, /turf/open/floor/iron, /area/science/robotics) +"eof" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted{ + alpha = 180 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron, +/area/engine/engineering) "eog" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -13374,26 +13628,6 @@ }, /turf/open/floor/plating, /area/science/xenobiology) -"eoI" = ( -/obj/structure/bed/roller, -/obj/machinery/door/window/eastleft{ - dir = 1; - name = "Quarantine Pen B"; - req_access_txt = "39" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron/grid/steel, -/area/medical/virology) -"eoO" = ( -/obj/machinery/camera/autoname/directional/west{ - c_tag = "Xenobiology Lab - Pen #2"; - network = list("ss13","rd","xeno") - }, -/obj/structure/window/reinforced, -/turf/open/floor/engine, -/area/science/xenobiology) "eoQ" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -13609,30 +13843,24 @@ }, /turf/open/floor/iron/tech, /area/engine/engine_room) -"erx" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/west{ - pixel_x = -24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/item/taperecorder{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/machinery/recharger{ - pixel_x = 7; - pixel_y = 3 +"erK" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 }, -/turf/open/floor/carpet/red, -/area/crew_quarters/heads/hos) +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/security/prison) "erR" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/box/corners{ @@ -13660,6 +13888,17 @@ dir = 1 }, /area/medical/surgery) +"est" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor{ + id = "Capoffice"; + name = "Captain Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/captain) "esC" = ( /obj/structure/sign/directions/engineering{ desc = "A handy sign praising the engineering department."; @@ -13721,6 +13960,9 @@ }, /turf/open/floor/iron/dark, /area/storage/primary) +"eto" = ( +/turf/closed/wall/r_wall, +/area/security/main) "etB" = ( /obj/machinery/door/airlock/public/glass{ name = "Departures Lounge" @@ -13757,10 +13999,6 @@ }, /turf/open/floor/iron, /area/quartermaster/exploration_prep) -"eus" = ( -/obj/machinery/smartfridge, -/turf/open/floor/iron, -/area/crew_quarters/kitchen) "euH" = ( /obj/machinery/light, /obj/effect/turf_decal/guideline/guideline_edge/red, @@ -13844,14 +14082,6 @@ }, /turf/open/floor/carpet/blue, /area/crew_quarters/heads/hop) -"evJ" = ( -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "test Chamber Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/explab) "evO" = ( /obj/structure/window/reinforced{ dir = 8 @@ -13859,6 +14089,35 @@ /obj/structure/flora/ausbushes/fullgrass, /turf/open/floor/grass/no_border, /area/hallway/secondary/exit/departure_lounge) +"ewd" = ( +/obj/structure/table, +/obj/item/assembly/igniter{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/item/book/manual/wiki/toxins{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/science/mixing) "ewf" = ( /obj/machinery/atmospherics/pipe/simple/yellow/visible, /obj/structure/lattice/catwalk, @@ -13931,6 +14190,12 @@ /obj/effect/mapping_helpers/apc/discharged, /turf/open/floor/wood, /area/vacant_room/office) +"ewZ" = ( +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","engine") + }, +/turf/open/floor/engine/plasma, +/area/engine/atmos) "exh" = ( /obj/machinery/gateway{ dir = 1 @@ -13981,6 +14246,52 @@ }, /turf/open/floor/iron, /area/science/robotics) +"eyo" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 3 + }, +/obj/structure/desk_bell{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/window/westleft{ + name = "Delivery Desk"; + req_access_txt = "50" + }, +/obj/item/paper_bin{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/pen{ + pixel_x = 7; + pixel_y = 3 + }, +/turf/open/floor/iron/sepia, +/area/quartermaster/office) +"eyu" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Bridge" + }, +/turf/open/floor/iron, +/area/security/main) "eyw" = ( /obj/structure/chair/fancy/bench{ dir = 8 @@ -14265,27 +14576,6 @@ /obj/structure/sign/poster/random, /turf/closed/wall, /area/maintenance/department/medical/morgue) -"eDw" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ - alpha = 180 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "bridgedoors"; - name = "Bridge Access Blast Door" - }, -/obj/structure/sign/departments/minsky/security/command{ - pixel_x = -32 - }, -/turf/open/floor/iron, -/area/bridge) "eDx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -14343,6 +14633,23 @@ /obj/structure/bedsheetbin, /turf/open/floor/iron/dark, /area/medical/morgue) +"eEb" = ( +/obj/structure/chair/office{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron, +/area/science/misc_lab) "eEf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -14415,17 +14722,6 @@ }, /turf/open/floor/iron, /area/crew_quarters/dorms) -"eFv" = ( -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/security/brig) "eFL" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -14598,13 +14894,6 @@ /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"eId" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/iron/tech/grid, -/area/engine/gravity_generator) "eIm" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -14656,25 +14945,6 @@ }, /turf/open/floor/iron, /area/science/mixing) -"eIK" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 32; - pixel_y = -1 - }, -/obj/structure/closet/secure_closet/captains, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/reagent_containers/food/drinks/flask/gold{ - pixel_x = 3; - pixel_y = 8 - }, -/obj/item/pinpointer/nuke{ - pixel_y = 5 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/heads/captain/private) "eIN" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted, /obj/effect/turf_decal/guideline/guideline_edge/red{ @@ -14713,25 +14983,34 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/exploration_prep) -"eJN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/guideline/guideline_half_edge/red{ +"eJq" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/turf_decal/guideline/guideline_half_edge/red{ - dir = 10 - }, -/obj/effect/turf_decal/guideline/guideline_edge_alt/red{ +/obj/machinery/firealarm/directional/north, +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/washing_machine, +/obj/structure/window/reinforced{ dir = 8 }, -/obj/effect/turf_decal/guideline/guideline_tri/red, -/obj/structure/disposalpipe/segment{ +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 }, /turf/open/floor/iron, -/area/security/main) +/area/crew_quarters/dorms) +"eJO" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/science/mixing) "eJU" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable/yellow, @@ -14821,6 +15100,12 @@ /obj/machinery/firealarm/directional/north, /turf/open/floor/iron, /area/quartermaster/miningdock) +"eLs" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/hallway/primary/central) "eLF" = ( /obj/effect/turf_decal/bot, /obj/structure/cable/yellow{ @@ -14877,19 +15162,6 @@ }, /turf/open/floor/engine, /area/engine/atmos) -"eMU" = ( -/obj/effect/landmark/start/randommaint/vip, -/obj/effect/landmark/observer_start, -/obj/machinery/holopad{ - pixel_x = 16; - pixel_y = 16 - }, -/obj/item/beacon{ - pixel_x = 16; - pixel_y = 19 - }, -/turf/open/floor/glass/reinforced, -/area/hallway/primary/central) "eNe" = ( /obj/structure/table/reinforced, /obj/item/gun/ballistic/shotgun/riot{ @@ -14938,6 +15210,24 @@ }, /turf/open/floor/iron, /area/hallway/primary/fore) +"eNB" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor{ + id = "AIwindows"; + name = "AI View Blast Door" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) "eNH" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/stripes/line{ @@ -15018,6 +15308,20 @@ }, /turf/open/floor/iron/sepia, /area/quartermaster/sorting) +"eON" = ( +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side, +/area/hallway/primary/central) "ePm" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -15052,6 +15356,28 @@ "ePI" = ( /turf/closed/wall/rust, /area/quartermaster/sorting) +"ePO" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + alpha = 180; + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/guideline/guideline_edge_alt/yellow{ + dir = 5 + }, +/obj/effect/turf_decal/guideline/guideline_tri/_corner/yellow{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/iron, +/area/engine/break_room) "ePP" = ( /obj/effect/turf_decal/guideline/guideline_in/brown, /obj/structure/cable/yellow{ @@ -15069,19 +15395,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet/royalblack, /area/maintenance/port/aft) -"ePU" = ( -/obj/machinery/airalarm/directional/south, -/obj/structure/rack, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/healthanalyzer, -/obj/machinery/camera/autoname/directional/south{ - network = list("ss13","rd") - }, -/turf/open/floor/iron/white, -/area/science/explab) "eQf" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 4 @@ -15112,16 +15425,19 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/iron/dark, /area/quartermaster/office) -"eQG" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 +"eQz" = ( +/obj/machinery/status_display/evac{ + pixel_x = -31; + pixel_y = -1 }, -/obj/effect/turf_decal/guideline/guideline_edge/red, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/chair/fancy/sofa/old/left{ + dir = 1 }, -/turf/open/floor/iron, -/area/security/brig) +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/carpet/green, +/area/security/main) "eQN" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -15169,19 +15485,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/iron/techmaint, /area/storage/tech) -"eSn" = ( -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/structure/closet/secure_closet/genpop, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/bot, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/turf/open/floor/iron/dark, -/area/security/prison) "eSu" = ( /obj/structure/table, /obj/item/clipboard{ @@ -15251,6 +15554,20 @@ }, /turf/open/floor/iron/white, /area/science/lobby) +"eSH" = ( +/obj/machinery/door/poddoor/shutters{ + id = "atmosshutters"; + name = "Atmos Storage" + }, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/iron, +/area/engine/atmos) "eSK" = ( /turf/closed/wall/r_wall, /area/security/nuke_storage) @@ -15324,28 +15641,6 @@ /obj/machinery/light, /turf/open/floor/iron, /area/engine/atmos) -"eTn" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/main) "eTq" = ( /obj/effect/turf_decal/tile/green/fourcorners/contrasted, /obj/structure/cable/yellow{ @@ -15372,19 +15667,22 @@ /obj/effect/decal/cleanable/glass, /turf/open/floor/plating, /area/maintenance/port/aft) -"eTH" = ( -/obj/structure/railing{ - dir = 6 +"eUh" = ( +/obj/machinery/door/airlock/external{ + name = "Security External Airlock"; + req_access_txt = "1" }, -/obj/structure/chair/fancy/comfy{ - color = "#596479"; - dir = 1 +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 6 +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 }, -/turf/open/floor/iron/dark/smooth_large, -/area/hallway/primary/central) +/obj/effect/turf_decal/stripes/closeup{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/security/brig/dock) "eUs" = ( /obj/structure/disposalpipe/segment{ dir = 8 @@ -15404,17 +15702,6 @@ }, /turf/open/space/basic, /area/solar/port/fore) -"eUx" = ( -/obj/structure/closet/bombcloset, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/science/mixing) "eUz" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -15554,6 +15841,14 @@ }, /turf/open/floor/iron, /area/crew_quarters/cafeteria) +"eVX" = ( +/obj/machinery/shower{ + name = "emergency shower"; + pixel_y = 12 + }, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/noslip/standard, +/area/science/research) "eWe" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 8 @@ -15596,6 +15891,28 @@ }, /turf/open/floor/iron/dark, /area/security/brig/dock) +"eWH" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/hand_labeler{ + pixel_x = 4; + pixel_y = 11 + }, +/obj/item/storage/belt/utility{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/multitool{ + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/iron/dark, +/area/quartermaster/office) "eWK" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -15624,6 +15941,13 @@ "eXl" = ( /turf/closed/wall, /area/maintenance/port/central) +"eXq" = ( +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/hallway/primary/central) "eXB" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -15740,6 +16064,18 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/white, /area/crew_quarters/heads/cmo) +"eYp" = ( +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/filingcabinet{ + pixel_x = -8 + }, +/obj/structure/filingcabinet/security{ + pixel_x = 8 + }, +/turf/open/floor/iron/dark, +/area/security/brig) "eYz" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/neutral/half/contrasted, @@ -15783,17 +16119,6 @@ }, /turf/open/floor/engine, /area/engine/supermatter) -"eZJ" = ( -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/turf/open/floor/iron/dark, -/area/engine/engineering) "fan" = ( /obj/effect/landmark/start/cargo_technician, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -15871,6 +16196,14 @@ }, /turf/open/space/basic, /area/solar/starboard/fore) +"fbp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "medpriv1"; + name = "privacy Door" + }, +/turf/open/floor/plating, +/area/medical/exam_room) "fbH" = ( /obj/machinery/light/small{ dir = 8 @@ -16017,6 +16350,18 @@ /obj/machinery/suit_storage_unit/standard_unit, /turf/open/floor/iron/tech, /area/ai_monitored/storage/eva) +"fcZ" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/guideline/guideline_in/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/sorting/mail/destination/disposals/flip{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/port) "fdb" = ( /obj/effect/spawner/lootdrop/glowstick/lit, /obj/structure/cable/yellow{ @@ -16065,19 +16410,22 @@ /obj/structure/closet/crate, /turf/open/floor/iron, /area/quartermaster/storage) -"fdw" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 +"fdG" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering Security Door" }, +/obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 + dir = 1 }, -/obj/effect/turf_decal/guideline/guideline_edge/red, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, -/turf/open/floor/iron, -/area/security/main) +/turf/open/floor/iron/dark, +/area/engine/engineering) "fdM" = ( /obj/structure/table, /obj/item/radio/intercom{ @@ -16102,30 +16450,6 @@ }, /turf/open/floor/iron/grid/steel, /area/medical/virology) -"fed" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 1 - }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/dark, -/area/engine/engine_room) -"feg" = ( -/obj/structure/railing{ - dir = 10 - }, -/obj/structure/chair/fancy/comfy{ - buildstackamount = 0; - color = "#742925"; - dir = 1 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 10 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/hallway/primary/central) "fem" = ( /obj/machinery/door/airlock/maintenance_hatch{ id_tag = "commissarydoor"; @@ -16148,6 +16472,26 @@ dir = 4 }, /area/science/research) +"fez" = ( +/obj/structure/table/reinforced, +/obj/item/gun/energy/e_gun{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/gun/energy/e_gun{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/machinery/door/window/brigdoor/westleft{ + name = "energy Guns"; + req_access_txt = "3" + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/ai_monitored/security/armory) "feL" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron, @@ -16159,19 +16503,6 @@ }, /turf/open/floor/plating, /area/science/research) -"ffa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/shower{ - name = "emergency shower"; - pixel_y = 12 - }, -/obj/effect/turf_decal/loading_area/white{ - dir = 8 - }, -/turf/open/floor/noslip/standard, -/area/engine/atmos) "ffc" = ( /obj/effect/turf_decal/delivery, /obj/machinery/door/firedoor, @@ -16195,23 +16526,6 @@ }, /turf/open/floor/iron, /area/security/checkpoint/engineering) -"ffd" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -32 - }, -/obj/effect/turf_decal/guideline/guideline_edge/blue{ - color = "#267878"; - dir = 8 - }, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron, -/area/crew_quarters/dorms) "ffm" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/purple/fourcorners/contrasted, @@ -16243,40 +16557,16 @@ }, /turf/open/floor/iron/white, /area/crew_quarters/heads/cmo) -"fhb" = ( -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","cargo") - }, -/obj/machinery/conveyor{ - dir = 8; - id = "MailConv" - }, -/obj/structure/closet/crate, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/iron/dark, -/area/quartermaster/office) -"fhl" = ( -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ +"fgj" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 }, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/book/manual/wiki/sopsecurity{ - pixel_x = 6 +/obj/effect/turf_decal/guideline/guideline_edge/red, +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, -/turf/open/floor/iron/dark, +/turf/open/floor/iron, /area/security/main) "fhK" = ( /obj/effect/turf_decal/siding/wood{ @@ -16363,6 +16653,17 @@ "fiB" = ( /turf/open/floor/catwalk_floor, /area/maintenance/port/central) +"fiC" = ( +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/fax/cargo, +/turf/open/floor/iron/dark, +/area/quartermaster/office) "fiM" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -16403,18 +16704,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/hallway/primary/central) -"fiW" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/recharge_station, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","rd") - }, -/obj/effect/landmark/start/cyborg, -/turf/open/floor/circuit, -/area/science/robotics/mechbay) "fjc" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -16609,25 +16898,6 @@ }, /turf/open/floor/plating, /area/maintenance/central) -"fld" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/main) "flg" = ( /turf/closed/wall/rust, /area/quartermaster/warehouse) @@ -16743,29 +17013,6 @@ }, /turf/open/floor/iron, /area/crew_quarters/cafeteria) -"fmO" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/computer/communications{ - pixel_y = -3 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/keycard_auth{ - pixel_x = -32; - pixel_y = -6 - }, -/obj/machinery/button/door{ - id = "Capoffice"; - id_tag = "cmoprivacy"; - name = "Captain blast door"; - pixel_x = -32; - pixel_y = 5 - }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/heads/captain) "fmQ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /obj/structure/disposalpipe/segment{ @@ -16792,13 +17039,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/hallway/primary/central) -"fne" = ( -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/siding/white{ - dir = 9 - }, -/turf/open/floor/glass/reinforced, -/area/hallway/primary/central) "fnD" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -16827,19 +17067,13 @@ }, /turf/open/floor/carpet/orange, /area/quartermaster/qm) -"fnU" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","engine") +"fnR" = ( +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/siding/white{ + dir = 5 }, -/turf/open/floor/iron/tech, -/area/engine/atmos) +/turf/open/floor/glass/reinforced, +/area/hallway/primary/central) "foe" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -16895,6 +17129,18 @@ /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/plating, /area/engine/engine_room) +"foT" = ( +/obj/structure/table, +/obj/machinery/fax/sec, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/security/main) "foZ" = ( /obj/structure/railing{ dir = 8 @@ -16976,6 +17222,37 @@ }, /turf/open/floor/iron, /area/hallway/primary/port) +"fpM" = ( +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = 4; + pixel_y = -1 + }, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/machinery/door/window/northright{ + name = "Jetpack Storage"; + req_access_txt = "19" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/iron/tech, +/area/ai_monitored/storage/eva) "fpV" = ( /obj/machinery/cryopod, /obj/machinery/computer/cryopod{ @@ -17015,16 +17292,6 @@ /obj/item/toy/figure/mime, /turf/open/floor/grass, /area/hallway/primary/central) -"fqU" = ( -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/obj/structure/filingcabinet/chestdrawer{ - pixel_y = 2 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/security/prison) "frc" = ( /turf/open/floor/engine/vacuum, /area/science/mixing/chamber) @@ -17087,6 +17354,18 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating, /area/maintenance/department/medical/morgue) +"fsi" = ( +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","cargo") + }, +/obj/machinery/newscaster{ + pixel_y = 33 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/quartermaster/miningdock) "fsy" = ( /turf/closed/wall/rust, /area/vacant_room/office) @@ -17147,6 +17426,31 @@ }, /turf/open/space/basic, /area/solar/starboard/aft) +"ftC" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + alpha = 180 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/guideline/guideline_in/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/engine/engineering) +"ftQ" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/obj/machinery/computer/security/telescreen/interrogation{ + dir = 4; + pixel_x = -25 + }, +/turf/open/floor/iron, +/area/security/brig) "ftV" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 1 @@ -17201,6 +17505,23 @@ }, /turf/open/floor/iron/white/corner, /area/science/research) +"fvs" = ( +/obj/structure/window/reinforced, +/obj/effect/landmark/start/randommaint/psychiatrist, +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "medpriv1"; + name = "Psycology Shutters Control"; + pixel_x = 32; + pixel_y = 1 + }, +/obj/machinery/camera/autoname/directional/east{ + network = list("ss13","medbay") + }, +/turf/open/floor/wood, +/area/medical/exam_room) "fvE" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -17325,6 +17646,16 @@ }, /turf/open/floor/iron/white, /area/medical/sleeper) +"fxf" = ( +/obj/machinery/suit_storage_unit/security, +/obj/structure/sign/warning/radiation_shelter{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/security/brig/dock) "fxh" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; @@ -17465,6 +17796,27 @@ /obj/effect/turf_decal/tile/yellow/half, /turf/open/floor/iron/large, /area/hallway/primary/central) +"fzn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/security/glass{ + name = "Gear Room"; + req_one_access_txt = "1" + }, +/obj/effect/turf_decal/stripes/closeup, +/turf/open/floor/iron, +/area/security/main) "fzo" = ( /obj/structure/table/reinforced, /obj/item/paper_bin{ @@ -17543,11 +17895,6 @@ }, /turf/open/floor/iron/white, /area/medical/office) -"fAw" = ( -/obj/effect/spawner/structure/window, -/obj/structure/barricade/wooden/crude, -/turf/open/floor/plating, -/area/library) "fAH" = ( /obj/structure/cable/yellow{ icon_state = "0-4" @@ -17813,6 +18160,13 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/engine/storage) +"fFj" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/engine, +/area/science/xenobiology) "fFo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 5 @@ -17835,6 +18189,28 @@ "fFP" = ( /turf/closed/wall/r_wall, /area/science/mixing/chamber) +"fFX" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/main) "fGu" = ( /obj/effect/turf_decal/tile/blue/fourcorners/contrasted{ alpha = 200; @@ -17906,6 +18282,9 @@ "fHH" = ( /turf/open/space/basic, /area/solar/port/fore) +"fHK" = ( +/turf/closed/wall/r_wall, +/area/security/brig) "fHP" = ( /obj/effect/turf_decal/tile/blue/half, /obj/machinery/atmospherics/pipe/simple/general/visible{ @@ -17953,23 +18332,6 @@ /obj/effect/turf_decal/box, /turf/open/floor/iron/white, /area/security/brig/medbay) -"fIw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/door/window{ - dir = 1; - name = "Captain's Desk"; - req_access_txt = "20" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/heads/captain) "fIz" = ( /obj/effect/turf_decal/siding/wideplating/dark, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -17989,6 +18351,15 @@ }, /turf/open/floor/carpet/royalblue, /area/crew_quarters/heads/chief) +"fIB" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple{ + name = "Holy bedsheet" + }, +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/wood, +/area/chapel/office) "fIM" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 1 @@ -18018,6 +18389,16 @@ }, /turf/open/space/basic, /area/space/nearstation) +"fJM" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/main) "fJN" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -18046,6 +18427,17 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) +"fKf" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/closet/secure_closet/genpop, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/turf/open/floor/iron/dark, +/area/security/prison) "fKg" = ( /obj/machinery/door/window/northleft{ name = "Kitchen Delivery"; @@ -18081,6 +18473,14 @@ }, /turf/open/floor/wood, /area/crew_quarters/dorms) +"fKv" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/obj/structure/table, +/turf/open/floor/iron/dark, +/area/security/main) "fKy" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -18111,18 +18511,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/starboard) -"fLs" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/security/main) "fLx" = ( /obj/machinery/mech_bay_recharge_port, /obj/machinery/newscaster{ @@ -18164,15 +18552,6 @@ /obj/effect/decal/cleanable/oil, /turf/open/floor/iron/sepia, /area/quartermaster/office) -"fLW" = ( -/obj/structure/railing, -/obj/structure/chair/fancy/comfy{ - color = "#596479"; - dir = 1 - }, -/obj/effect/turf_decal/siding/wideplating/dark, -/turf/open/floor/iron/dark/side, -/area/hallway/primary/central) "fMa" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -18231,56 +18610,9 @@ }, /turf/open/floor/iron, /area/engine/engine_room) -"fMJ" = ( -/obj/machinery/power/solar_control, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera/autoname/directional/north, -/obj/machinery/power/terminal{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"fMW" = ( -/obj/machinery/door/airlock/security{ - name = "Interrogation"; - req_access_txt = "63" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/closeup, -/turf/open/floor/iron/dark, -/area/security/brig) "fNg" = ( /turf/open/floor/carpet, /area/library) -"fNq" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/main) "fNs" = ( /obj/structure/table, /obj/machinery/cell_charger, @@ -18370,6 +18702,25 @@ }, /turf/open/floor/plating, /area/engine/supermatter) +"fOm" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/spawner/randomvend/snack, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/obj/item/radio/intercom{ + pixel_x = 1; + pixel_y = 30 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","engine") + }, +/turf/open/floor/iron, +/area/engine/break_room) "fOw" = ( /obj/machinery/computer/secure_data{ dir = 1 @@ -18380,6 +18731,25 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/security/checkpoint/escape) +"fOF" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small, +/obj/machinery/status_display/door_timer{ + id = "cell"; + name = "Solitary confinement timer"; + pixel_y = 32 + }, +/obj/item/food/donut/apple{ + name = "forbidden toilet donut" + }, +/obj/item/reagent_containers/food/drinks/beer/almost_empty{ + pixel_x = -10; + pixel_y = 17 + }, +/turf/open/floor/iron/freezer, +/area/security/prison) "fOG" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -18401,18 +18771,6 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) -"fOR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/autoname/directional/north{ - c_tag = "Teleporter Room" - }, -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole/bookmanagement, -/turf/open/floor/carpet/royalblack, -/area/library) "fPe" = ( /obj/effect/landmark/xeno_spawn, /obj/machinery/light_switch{ @@ -18435,16 +18793,6 @@ }, /turf/open/floor/catwalk_floor, /area/maintenance/starboard/aft) -"fPs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/iron/freezer, -/area/security/prison) "fPx" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/bot, @@ -18453,29 +18801,6 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/exploration_prep) -"fPW" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - alpha = 180 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/engineering/glass{ - req_one_access_txt = "32" - }, -/obj/effect/turf_decal/guideline/guideline_in/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/engine/engineering) "fQg" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, @@ -18518,6 +18843,20 @@ }, /turf/open/floor/iron, /area/construction/mining/aux_base) +"fQB" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/science/mixing) "fQG" = ( /turf/open/floor/plating/rust, /area/maintenance/port/aft) @@ -18615,6 +18954,22 @@ }, /turf/open/floor/iron/tech, /area/engine/engine_room) +"fRG" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/guideline/guideline_edge/yellow{ + dir = 8 + }, +/obj/item/radio/intercom{ + pixel_x = -31; + pixel_y = -3 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron, +/area/engine/engineering) "fRH" = ( /obj/effect/decal/cleanable/plasma, /obj/effect/turf_decal/tile/purple, @@ -18675,15 +19030,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/quartermaster/storage) -"fSM" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced, -/turf/open/floor/iron/dark/smooth_large, -/area/hallway/primary/central) "fTb" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 8 @@ -18782,15 +19128,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/fore) -"fUT" = ( -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/obj/effect/turf_decal/guideline/guideline_edge/blue{ - color = "#267878"; - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/secondary/entry) "fVm" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /obj/structure/disposalpipe/segment{ @@ -18798,6 +19135,14 @@ }, /turf/open/floor/iron/sepia, /area/quartermaster/storage) +"fVq" = ( +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/iron/dark/smooth_large, +/area/hallway/primary/central) "fVw" = ( /obj/machinery/portable_atmospherics/pump, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -18974,6 +19319,13 @@ }, /turf/open/floor/catwalk_floor, /area/maintenance/starboard/aft) +"fYN" = ( +/obj/machinery/camera/motion/directional/south{ + c_tag = "MiniSat Exterior 3"; + network = list("minisat") + }, +/turf/open/space/basic, +/area/space) "fZb" = ( /obj/structure/table/wood, /obj/effect/turf_decal/siding/wood{ @@ -19001,10 +19353,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/port) -"fZk" = ( -/obj/machinery/smartfridge/sci, -/turf/open/floor/iron, -/area/science/robotics) "fZt" = ( /obj/structure/table, /obj/item/storage/box/papersack{ @@ -19046,48 +19394,23 @@ }, /turf/open/floor/iron/white, /area/crew_quarters/kitchen) -"fZJ" = ( -/obj/effect/turf_decal/stripes/line{ +"fZF" = ( +/obj/structure/window/reinforced{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron/tech, -/area/engine/engine_room) -"fZM" = ( -/obj/item/kirbyplants/random, -/obj/machinery/camera/autoname/directional/south{ - network = list("ss13","engine"); - view_range = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/guideline/guideline_half_edge/yellow{ - dir = 6 - }, -/obj/effect/turf_decal/guideline/guideline_half_edge/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/guideline/guideline_edge_alt/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/guideline/guideline_tri/yellow{ +/obj/effect/turf_decal/siding/wood{ dir = 1 }, -/obj/structure/cable/yellow{ - icon_state = "4-8" +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 9 +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/turf/open/floor/iron, -/area/engine/engineering) +/turf/open/floor/carpet/blue, +/area/crew_quarters/heads/captain) "fZQ" = ( /obj/structure/bookcase/random/religion, /obj/structure/cable/yellow{ @@ -19185,6 +19508,33 @@ }, /turf/open/floor/carpet/grimy, /area/crew_quarters/dorms) +"gba" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/guideline/guideline_edge/red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/closeup{ + dir = 1 + }, +/turf/open/floor/iron, +/area/security/main) +"gbe" = ( +/obj/machinery/newscaster{ + pixel_x = 32; + pixel_y = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/firealarm/directional/north, +/obj/machinery/fax/eng, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark, +/area/engine/engineering) "gbg" = ( /obj/structure/lattice, /obj/structure/railing{ @@ -19336,36 +19686,19 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/department/medical/morgue) -"gdY" = ( -/obj/machinery/door/airlock/public/glass{ - name = "visitation Area" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/red/fourcorners/contrasted, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/closeup, -/turf/open/floor/prison, -/area/security/prison) -"gee" = ( -/obj/item/rollerbed, -/obj/item/rollerbed{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/structure/closet/crate/medical, -/obj/machinery/firealarm/directional/east, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/clothing/suit/jacket/straight_jacket, -/obj/item/clothing/glasses/blindfold{ - pixel_x = -4; - pixel_y = 8 +"gdN" = ( +/obj/structure/table/reinforced, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1423; + listening = 0; + name = "Interrogation Intercom"; + pixel_x = -27; + pixel_y = -3 }, -/obj/item/clothing/mask/muzzle, -/obj/item/reagent_containers/blood/OPlus, -/turf/open/floor/iron/white, -/area/security/brig/medbay) +/obj/item/flashlight/lamp, +/turf/open/floor/iron/dark, +/area/security/brig) "geq" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/simple/yellow/visible{ @@ -19499,23 +19832,6 @@ }, /turf/open/floor/iron, /area/science/storage) -"gfY" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted{ - alpha = 180 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/open/floor/iron, -/area/engine/engineering) "gfZ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating{ @@ -19580,6 +19896,18 @@ initial_gas_mix = "o2=22;n2=82;TEMP=293.15" }, /area/tcommsat/computer) +"ghh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/closet/bombcloset/white, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/iron, +/area/science/explab) "ghj" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -19774,6 +20102,20 @@ }, /turf/open/floor/iron, /area/security/brig) +"gjP" = ( +/obj/machinery/modular_fabricator/exosuit_fab{ + output_direction = 8 + }, +/obj/machinery/status_display/evac{ + pixel_x = 32; + pixel_y = 1 + }, +/obj/machinery/ecto_sniffer{ + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/floor/iron/dark, +/area/science/robotics) "gjS" = ( /obj/structure/chair/office{ dir = 4 @@ -19796,15 +20138,6 @@ }, /turf/open/space/basic, /area/solar/starboard/aft) -"gky" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/hallway/primary/port) "gkB" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted, /obj/machinery/power/apc/auto_name/directional/east, @@ -19813,23 +20146,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) -"gkI" = ( -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","engine") - }, -/turf/open/floor/engine/airless, -/area/engine/atmos) -"gkK" = ( -/obj/machinery/door/poddoor/shutters{ - id = "atmosshutters"; - name = "Atmos Storage" - }, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/engine/atmos) "glm" = ( /obj/structure/lattice/catwalk, /obj/structure/chair/fancy/plastic{ @@ -19981,6 +20297,20 @@ }, /turf/open/floor/iron, /area/security/brig) +"gmj" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/obj/machinery/door/window/northright{ + dir = 8; + name = "Kitchen Doors"; + req_one_access_txt = "28;25;35" + }, +/turf/open/floor/iron/cafeteria, +/area/crew_quarters/kitchen) "gmv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -20051,14 +20381,6 @@ }, /turf/open/floor/iron, /area/science/robotics) -"gnD" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/barricade/wooden/crude, -/turf/open/floor/plating, -/area/maintenance/department/bridge) "gnE" = ( /obj/structure/closet/secure_closet/detective, /obj/item/assembly/flash/handheld, @@ -20088,6 +20410,13 @@ /obj/item/holosign_creator/security, /turf/open/floor/carpet/red, /area/security/detectives_office) +"gnN" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/brig/dock) "gnU" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 8 @@ -20107,6 +20436,26 @@ /obj/item/ammo_casing/c46x30mm, /turf/open/floor/iron, /area/maintenance/department/security) +"goC" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/westleft{ + name = "laser Guns"; + req_access_txt = "3" + }, +/obj/item/gun/energy/laser{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/gun/energy/laser{ + pixel_x = 2; + pixel_y = 1 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/ai_monitored/security/armory) "goF" = ( /obj/machinery/light/small{ brightness = 3 @@ -20158,28 +20507,6 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible, /turf/open/floor/iron/dark, /area/engine/atmos) -"gpR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/guideline/guideline_in/brown, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/iron, -/area/hallway/primary/port) "gpX" = ( /obj/machinery/door/airlock/grunge{ name = "Morgue"; @@ -20239,22 +20566,6 @@ "grc" = ( /turf/closed/wall, /area/crew_quarters/cryopods) -"grt" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Security E.V.A. Storage"; - req_access_txt = "1" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/closeup, -/turf/open/floor/iron/dark, -/area/security/brig/dock) "grE" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -20295,6 +20606,23 @@ }, /turf/open/floor/iron/half, /area/hallway/primary/central) +"gsd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridgewindows"; + name = "Bridge View Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/bridge) "gsA" = ( /obj/structure/lattice, /turf/open/space/basic, @@ -20388,16 +20716,6 @@ }, /turf/open/floor/iron/grid/steel, /area/science/xenobiology) -"gtD" = ( -/obj/machinery/cryopod{ - desc = "Suited for Cyborgs and Humanoids, the pod is a safe place for personnel affected by the Space Sleep Disorder to get some rest. If you think that this the easy way out, Nanotrasen will address your situation in a later date..."; - name = "Jail cryogenic freezer" - }, -/obj/machinery/computer/cryopod{ - pixel_y = 25 - }, -/turf/open/floor/prison, -/area/security/prison) "gtI" = ( /turf/closed/indestructible{ desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; @@ -20419,24 +20737,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet/red, /area/crew_quarters/cafeteria) -"gue" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/structure/chair/fancy/bench{ - dir = 1 - }, -/obj/machinery/camera/autoname/directional/south{ - network = list("ss13","security") - }, -/obj/effect/turf_decal/guideline/guideline_edge/red, -/obj/machinery/light_switch{ - pixel_x = 1; - pixel_y = -24 - }, -/turf/open/floor/iron, -/area/security/main) "guk" = ( /obj/effect/turf_decal/bot, /obj/machinery/light/small{ @@ -20457,18 +20757,6 @@ }, /turf/open/floor/iron/dark, /area/security/warden) -"guA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/north{ - areastring = "/area/engine/supermatter" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/iron/dark, -/area/engine/engine_room) "guB" = ( /obj/machinery/firealarm/directional/east, /obj/structure/disposalpipe/segment{ @@ -20509,6 +20797,15 @@ }, /turf/open/floor/iron, /area/engine/engineering) +"gvk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopshutter"; + name = "Privacy Shutters" + }, +/turf/open/floor/plating, +/area/maintenance/department/bridge) "gvz" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -20631,18 +20928,6 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/office) -"gwP" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/clipboard{ - name = "menu" - }, -/obj/machinery/door/poddoor/shutters{ - id = "Chefwindow"; - name = "Chef Window" - }, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) "gxo" = ( /obj/machinery/newscaster{ pixel_x = 1; @@ -20688,15 +20973,6 @@ }, /turf/open/floor/iron, /area/crew_quarters/toilet) -"gxT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "qm_warehouse"; - name = "warehouse Shutters" - }, -/turf/open/floor/iron/sepia, -/area/quartermaster/warehouse) "gyv" = ( /obj/machinery/door/airlock/external{ name = "Bridge External Access"; @@ -20742,21 +21018,6 @@ /obj/structure/closet/emcloset/anchored, /turf/open/floor/plating, /area/hallway/secondary/entry) -"gzz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/iron/dark, -/area/security/brig) "gzJ" = ( /obj/machinery/door/firedoor, /obj/effect/decal/cleanable/dirt/dust, @@ -20803,14 +21064,31 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plating/rust, /area/maintenance/port/aft) -"gAR" = ( -/obj/machinery/light/small{ - dir = 1 +"gAQ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/obj/structure/table, -/turf/open/floor/iron/dark, -/area/security/main) +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/camera/autoname/directional/north{ + c_tag = "Science - Toxins Mixing Lab Burn Chamber"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/science/mixing/chamber) "gAU" = ( /obj/machinery/vendor/mining, /obj/machinery/light{ @@ -20818,19 +21096,6 @@ }, /turf/open/floor/iron, /area/quartermaster/miningdock) -"gBk" = ( -/obj/structure/mirror{ - pixel_y = 35 - }, -/obj/structure/sink{ - pixel_y = 25 - }, -/turf/open/floor/iron/white, -/area/crew_quarters/heads/captain/private) -"gBm" = ( -/obj/machinery/smartfridge/food, -/turf/open/floor/iron/white, -/area/crew_quarters/kitchen) "gBo" = ( /obj/structure/disposalpipe/segment{ dir = 1 @@ -20883,40 +21148,6 @@ }, /turf/closed/wall/r_wall, /area/engine/supermatter) -"gCl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/closet/bombcloset/white, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/iron, -/area/science/explab) -"gCz" = ( -/obj/machinery/door/airlock/external{ - name = "Security External Airlock"; - req_access_txt = "1" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/closeup{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/security/brig/dock) "gCB" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -20948,19 +21179,19 @@ }, /turf/open/floor/iron, /area/security/checkpoint/science) -"gCQ" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 +"gCN" = ( +/obj/machinery/door/window/northright{ + name = "Library Desk Door"; + req_access_txt = "37" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/guideline/guideline_edge/yellow{ - dir = 8 +/obj/effect/turf_decal/siding/wood{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 6 +/obj/structure/cable/yellow{ + icon_state = "1-8" }, -/turf/open/floor/iron, -/area/engine/engineering) +/turf/open/floor/carpet/royalblack, +/area/library) "gCT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 1 @@ -21011,21 +21242,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/fore) -"gEo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/brig) -"gEs" = ( -/obj/machinery/biogenerator, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/black/fourcorners, -/turf/open/floor/iron/techmaint, -/area/security/prison) "gEE" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -21068,6 +21284,45 @@ }, /turf/open/floor/iron, /area/crew_quarters/dorms) +"gFt" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","cargo") + }, +/obj/machinery/button/door{ + id = "QMLoaddoor2"; + name = "Loading Doors"; + pixel_x = -25; + pixel_y = 4; + req_access_txt = "31" + }, +/obj/machinery/button/door{ + id = "QMLoaddoor"; + name = "Loading Doors"; + pixel_x = -25; + pixel_y = -5; + req_access_txt = "31" + }, +/obj/machinery/computer/cargo{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 1; + pixel_x = -40; + pixel_y = -3 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/iron, +/area/quartermaster/storage) "gFy" = ( /obj/structure/cable/yellow{ icon_state = "1-8" @@ -21079,21 +21334,6 @@ }, /turf/open/floor/iron/white, /area/science/explab) -"gFF" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/obj/effect/turf_decal/guideline/guideline_in/purple{ - dir = 1 - }, -/obj/effect/turf_decal/guideline/guideline_edge/brown{ - dir = 4 - }, -/obj/structure/disposalpipe/sorting/unsorted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/port) "gFH" = ( /obj/effect/turf_decal/tile/purple/fourcorners/contrasted, /obj/structure/cable/yellow{ @@ -21113,15 +21353,6 @@ }, /turf/open/floor/iron/white, /area/science/research) -"gFU" = ( -/obj/machinery/newscaster{ - pixel_y = 34 - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","security","court") - }, -/turf/open/floor/wood, -/area/security/courtroom) "gFW" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 @@ -21304,9 +21535,6 @@ broken = 1 }, /area/maintenance/department/medical/morgue) -"gIf" = ( -/turf/closed/wall/r_wall, -/area/security/prison) "gIh" = ( /obj/structure/window/reinforced{ dir = 1 @@ -21396,12 +21624,6 @@ }, /turf/open/floor/iron/dark, /area/medical/morgue) -"gKr" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/obj/machinery/computer/warrant, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/security/main) "gKy" = ( /turf/closed/wall, /area/quartermaster/warehouse) @@ -21422,18 +21644,6 @@ dir = 5 }, /area/medical/medbay/central) -"gKA" = ( -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","cargo") - }, -/obj/machinery/newscaster{ - pixel_y = 33 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/quartermaster/miningdock) "gKY" = ( /turf/open/floor/iron, /area/teleporter) @@ -21480,30 +21690,6 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/storage) -"gLm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/ash/large{ - pixel_x = -3; - pixel_y = -8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/item/stack/sheet/wood/ten, -/turf/open/floor/wood, -/area/library) -"gLp" = ( -/obj/structure/table/wood, -/obj/item/kirbyplants/random{ - pixel_y = 18 - }, -/obj/item/candle/infinite{ - pixel_x = 1; - pixel_y = 2 - }, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/carpet/purple, -/area/chapel/main) "gLV" = ( /obj/effect/turf_decal/bot, /obj/machinery/computer/card/minor/ce{ @@ -21515,15 +21701,6 @@ }, /turf/open/floor/iron/dark, /area/crew_quarters/heads/chief) -"gMa" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "brigentrance"; - name = "Brig Blast Door" - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/security/brig) "gMc" = ( /obj/structure/rack, /obj/item/lighter, @@ -21575,6 +21752,22 @@ }, /turf/open/floor/iron, /area/hallway/primary/starboard) +"gMw" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron/dark, +/area/engine/engine_room) "gMO" = ( /turf/closed/wall/rust, /area/library) @@ -21724,39 +21917,17 @@ /obj/structure/flora/ausbushes/sunnybush, /turf/open/floor/grass/no_border, /area/hallway/secondary/exit/departure_lounge) -"gOr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - alpha = 180 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/guideline/guideline_edge_alt/yellow{ - dir = 6 - }, -/obj/effect/turf_decal/guideline/guideline_tri/_corner/yellow{ +"gOA" = ( +/obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/engine/engineering) -"gOz" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/structure/window/reinforced{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/holopad, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/dark, -/area/security/main) +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset/full, +/turf/open/floor/iron/dark/smooth_large, +/area/hallway/primary/central) "gOK" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/decal/cleanable/dirt/dust, @@ -21845,15 +22016,6 @@ }, /turf/open/floor/iron, /area/science/xenobiology) -"gQN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/science/xenobiology) "gQP" = ( /turf/closed/wall, /area/vacant_room/commissary/commissary1) @@ -21862,6 +22024,17 @@ /obj/effect/turf_decal/tile/red/anticorner/contrasted, /turf/open/floor/iron/dark, /area/security/brig) +"gQT" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/vending/snack/orange, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/smooth_large, +/area/hallway/primary/central) "gRs" = ( /obj/structure/sign/departments/minsky/research/research, /turf/closed/wall, @@ -21877,6 +22050,45 @@ dir = 1 }, /area/medical/medbay/central) +"gRC" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ + alpha = 180 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridgedoors"; + name = "Bridge Access Blast Door" + }, +/obj/structure/sign/departments/minsky/security/command{ + pixel_x = -32 + }, +/turf/open/floor/iron, +/area/bridge) +"gRJ" = ( +/obj/machinery/telecomms/hub/preset/exploration, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/quartermaster/exploration_prep) +"gRR" = ( +/obj/machinery/camera/autoname/directional/west{ + c_tag = "Xenobiology Lab - Pen #4"; + network = list("ss13","rd","xeno") + }, +/obj/structure/window/reinforced, +/turf/open/floor/engine, +/area/science/xenobiology) "gRY" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -21919,23 +22131,19 @@ /obj/effect/turf_decal/bot, /turf/open/floor/wood, /area/vacant_room/office) -"gST" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +"gSZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 +/obj/machinery/shower{ + name = "emergency shower"; + pixel_y = 12 }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopshutter"; - name = "Privacy Shutters" +/obj/effect/turf_decal/loading_area/white{ + dir = 8 }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hop) +/turf/open/floor/noslip/standard, +/area/engine/atmos) "gTf" = ( /obj/structure/chair/fancy/plastic, /obj/structure/lattice/catwalk, @@ -21986,6 +22194,17 @@ /obj/effect/turf_decal/box, /turf/open/floor/iron, /area/science/mixing) +"gTK" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/machinery/light, +/obj/effect/turf_decal/guideline/guideline_edge/red, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/iron, +/area/security/main) "gTM" = ( /obj/effect/decal/cleanable/cobweb, /obj/structure/reagent_dispensers/watertank/high, @@ -22032,6 +22251,15 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/engine/atmos) +"gUi" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "Chefwindow"; + name = "Chef Window" + }, +/turf/open/floor/plating, +/area/crew_quarters/kitchen) "gUl" = ( /obj/structure/rack, /obj/item/storage/briefcase{ @@ -22116,17 +22344,6 @@ }, /turf/open/floor/catwalk_floor/iron_dark, /area/maintenance/disposal) -"gUK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "brigentrance"; - name = "Brig Blast Door" - }, -/turf/open/floor/plating, -/area/security/brig) "gUO" = ( /obj/effect/turf_decal/guideline/guideline_in/darkblue{ dir = 8 @@ -22147,6 +22364,45 @@ }, /turf/open/floor/iron, /area/hallway/primary/fore) +"gUW" = ( +/obj/machinery/power/apc/auto_name/directional/west{ + pixel_x = -24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/guideline/guideline_half_edge/yellow{ + dir = 6 + }, +/obj/effect/turf_decal/guideline/guideline_half_edge/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/guideline/guideline_edge_alt/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/guideline/guideline_tri/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/iron, +/area/engine/engineering) +"gVk" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridgewindows"; + name = "Bridge View Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/bridge) "gVl" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 @@ -22160,6 +22416,17 @@ /obj/effect/spawner/lootdrop/maintenance/three, /turf/open/floor/iron, /area/maintenance/department/science) +"gVo" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/guideline/guideline_edge/red, +/turf/open/floor/iron, +/area/security/main) +"gVG" = ( +/obj/effect/turf_decal/tile/black/fourcorners, +/turf/open/floor/iron/techmaint, +/area/security/prison) "gVH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -22188,17 +22455,20 @@ /obj/structure/sign/warning/electricshock, /turf/closed/wall, /area/maintenance/solars/port/aft) +"gVY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/iron/tech/grid, +/area/engine/gravity_generator) "gWo" = ( /obj/effect/decal/cleanable/blood, /obj/effect/turf_decal/tile/blue, /turf/open/floor/iron, /area/maintenance/department/medical/morgue) -"gWq" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/quartermaster/exploration_prep) "gWz" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/yellow/half/contrasted{ @@ -22236,10 +22506,33 @@ }, /turf/open/floor/carpet/blue, /area/crew_quarters/heads/captain) -"gXJ" = ( -/obj/machinery/smartfridge/chemistry/preloaded, -/turf/open/floor/iron, -/area/medical/apothecary) +"gXQ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/donkpockets{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/food/mint, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "Chefwindow"; + name = "Chef Window" + }, +/turf/open/floor/iron/white, +/area/crew_quarters/kitchen) +"gXT" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/chair/fancy/comfy{ + color = "#596479"; + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 6 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/hallway/primary/central) "gYa" = ( /obj/machinery/photocopier, /obj/effect/turf_decal/bot, @@ -22265,16 +22558,6 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/medical/chemistry) -"gZc" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/effect/turf_decal/guideline/guideline_edge/blue{ - color = "#267878"; - dir = 1 - }, -/turf/open/floor/iron, -/area/crew_quarters/dorms) "gZf" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -22312,21 +22595,6 @@ /obj/machinery/air_sensor/atmos/oxygen_tank, /turf/open/floor/engine/o2, /area/engine/atmos) -"gZP" = ( -/obj/machinery/computer/bounty{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 3 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/box, -/obj/structure/window/reinforced, -/turf/open/floor/iron/sepia, -/area/quartermaster/office) "gZQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -22354,18 +22622,6 @@ }, /turf/open/floor/iron, /area/engine/engineering) -"gZS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosroom"; - name = "HoS Room Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) "gZZ" = ( /obj/structure/sign/departments/minsky/medical/chemistry/chemical2, /turf/closed/wall, @@ -22377,6 +22633,23 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/grid/steel, /area/medical/sleeper) +"haB" = ( +/obj/machinery/door/airlock{ + id_tag = "Cell"; + name = "Cell 1" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/closeup{ + dir = 1 + }, +/turf/open/floor/prison, +/area/security/prison) "haH" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ @@ -22418,6 +22691,17 @@ "haY" = ( /turf/closed/wall/r_wall, /area/bridge) +"hbe" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 6 + }, +/obj/machinery/meter, +/obj/effect/turf_decal/bot, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron/dark, +/area/engine/engine_room) "hbo" = ( /obj/structure/sink{ dir = 1; @@ -22425,19 +22709,6 @@ }, /turf/open/floor/iron/white, /area/security/brig/medbay) -"hbw" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/item/instrument/piano_synth, -/obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 1 - }, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/wood, -/area/library) "hbH" = ( /obj/structure/sign/departments/minsky/medical/virology/virology1{ pixel_x = 32; @@ -22468,12 +22739,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/iron/tech, /area/engine/atmos) -"hcm" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/engine/supermatter) "hcr" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted, /obj/effect/turf_decal/guideline/guideline_edge/blue{ @@ -22550,6 +22815,29 @@ }, /turf/open/floor/catwalk_floor, /area/maintenance/department/engine) +"hcV" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32; + pixel_y = null + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -7; + pixel_y = 5 + }, +/obj/item/pen/red{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/folder/red{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/iron/dark, +/area/security/main) "hdp" = ( /turf/closed/wall, /area/maintenance/central) @@ -22558,15 +22846,6 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron, /area/engine/engine_room) -"hdv" = ( -/obj/machinery/camera/autoname/directional/west{ - c_tag = "Xenobiology Lab - Pen #3"; - network = list("ss13","rd","xeno") - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/window/reinforced, -/turf/open/floor/engine, -/area/science/xenobiology) "hdz" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -22595,17 +22874,29 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/dark, /area/engine/atmos) -"hen" = ( -/obj/machinery/newscaster{ - pixel_x = 28; - pixel_y = 2 +"hei" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/guideline/guideline_edge/red, +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron, +/area/security/brig) +"het" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" }, /obj/structure/cable/yellow{ - icon_state = "1-2" + icon_state = "0-2" }, -/obj/machinery/camera/autoname/directional/east, -/turf/open/floor/wood, -/area/crew_quarters/theatre) +/obj/structure/cable/yellow, +/obj/effect/spawner/structure/window/reinforced/prison, +/turf/open/floor/plating, +/area/security/prison) "heA" = ( /obj/machinery/door/airlock/public/glass{ name = "Primary Tool Storage" @@ -22626,23 +22917,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/sepia, /area/maintenance/port/central) -"heS" = ( -/obj/effect/turf_decal/tile/red/fourcorners/contrasted, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/item/radio/intercom{ - desc = "Talk through this. It looks like it has been modified to not broadcast."; - freerange = 1; - name = "Prison intercom"; - pixel_y = 25; - prison_radio = 1 - }, -/turf/open/floor/prison, -/area/security/prison) "hff" = ( /obj/item/kirbyplants/random, /obj/structure/disposalpipe/segment{ @@ -22650,6 +22924,17 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/exploration_prep) +"hfq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "chemistry Shutters" + }, +/turf/open/floor/plating, +/area/medical/apothecary) "hfs" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/glass, @@ -22665,6 +22950,25 @@ /obj/effect/mapping_helpers/airlock/abandoned, /turf/open/floor/plating, /area/vacant_room/office) +"hfG" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/main) "hfH" = ( /obj/structure/sign/poster/random{ pixel_x = 32 @@ -22725,10 +23029,6 @@ }, /turf/open/floor/iron/white/side, /area/medical/medbay/central) -"hgl" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/security/main) "hgw" = ( /obj/effect/turf_decal/tile/blue/half, /obj/machinery/atmospherics/pipe/manifold/general/visible{ @@ -22750,6 +23050,17 @@ /obj/effect/spawner/room/tenxfive, /turf/open/floor/plating, /area/maintenance/starboard/aft) +"hhq" = ( +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test Chamber Blast Door" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/closeup{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/explab) "hhv" = ( /turf/closed/wall/r_wall, /area/maintenance/department/bridge) @@ -22807,20 +23118,6 @@ }, /turf/open/space/basic, /area/space) -"hic" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera/autoname/directional/east{ - c_tag = "Xenobiology Lab - Pen #7"; - network = list("ss13","rd","xeno") - }, -/obj/machinery/sparker{ - id = "Xenobio"; - pixel_x = 25 - }, -/turf/open/floor/engine, -/area/science/xenobiology) "hig" = ( /obj/item/reagent_containers/spray/cleaner{ pixel_x = -8; @@ -22965,18 +23262,6 @@ }, /turf/open/floor/catwalk_floor, /area/maintenance/department/medical/morgue) -"hkA" = ( -/obj/machinery/stasis{ - dir = 1 - }, -/obj/machinery/defibrillator_mount{ - pixel_x = -32 - }, -/obj/machinery/camera/autoname/directional/west{ - network = list("ss13","security") - }, -/turf/open/floor/iron/white, -/area/security/brig/medbay) "hkB" = ( /turf/closed/wall/rust, /area/gateway) @@ -23002,17 +23287,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/sepia, /area/maintenance/port/central) -"hkQ" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced/prison, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/prison) "hkV" = ( /obj/structure/window/reinforced{ dir = 8 @@ -23154,6 +23428,17 @@ /obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/hallway/primary/port) +"hnx" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/hallway/primary/central) "hnM" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -23168,6 +23453,22 @@ /obj/structure/frame/machine, /turf/open/floor/iron, /area/maintenance/port/aft) +"hof" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/flasher{ + id = "aicore"; + pixel_x = -10; + pixel_y = -23 + }, +/obj/machinery/camera/autoname/directional/south{ + c_tag = "MiniSat Core Hallway 3"; + network = list("minisat") + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/aisat/foyer) "hoj" = ( /obj/machinery/vending/coffee, /obj/machinery/button/door{ @@ -23230,17 +23531,6 @@ }, /turf/open/floor/plating, /area/construction/mining/aux_base) -"hpC" = ( -/obj/machinery/camera/autoname/directional/north{ - c_tag = "Engineering - Secure Storage"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/machinery/power/emitter{ - dir = 1 - }, -/turf/open/floor/iron/tech/grid, -/area/engine/engineering) "hqd" = ( /obj/effect/turf_decal/tile/blue/fourcorners/contrasted{ alpha = 200; @@ -23305,6 +23595,13 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, /area/engine/atmos) +"hrr" = ( +/obj/item/plate, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/cigbutt, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) "hrP" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 @@ -23322,6 +23619,18 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/iron/dark, /area/crew_quarters/bar) +"hsk" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/box, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/advanced_airlock_controller/directional/west{ + pixel_x = -32; + pixel_y = 3 + }, +/turf/open/floor/iron/dark, +/area/security/brig/dock) "hsm" = ( /turf/closed/wall/r_wall, /area/crew_quarters/heads/captain) @@ -23333,22 +23642,6 @@ /obj/effect/turf_decal/box, /turf/open/floor/iron, /area/maintenance/department/science) -"hsI" = ( -/obj/machinery/camera/autoname/directional/north{ - c_tag = "Medbay - Break Room"; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/obj/structure/sign/painting/library{ - pixel_y = 32 - }, -/obj/effect/spawner/randomvend/snack, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/medical/break_room) "hsJ" = ( /obj/structure/railing/corner{ dir = 4 @@ -23359,21 +23652,6 @@ /obj/machinery/light, /turf/open/floor/iron, /area/hallway/primary/central) -"hsU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor{ - id = "Capoffice"; - name = "Captain Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/curtain/directional{ - dir = 4 - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/crew_quarters/heads/captain/private) "hsY" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -23392,6 +23670,13 @@ }, /turf/open/floor/iron/dark, /area/security/checkpoint/auxiliary) +"htl" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/turf/open/floor/iron, +/area/security/main) "htm" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/green/visible{ @@ -23420,16 +23705,6 @@ }, /turf/open/floor/iron/dark, /area/teleporter) -"htY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/camera/autoname/directional/north{ - c_tag = "Science - Toxins Mixing Lab Burn Chamber"; - name = "science camera"; - network = list("ss13","rd") - }, -/turf/open/floor/iron/dark, -/area/science/misc_lab/range) "huh" = ( /obj/structure/disposalpipe/segment{ dir = 1 @@ -23531,6 +23806,24 @@ }, /turf/open/floor/iron, /area/quartermaster/sorting) +"hvE" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/structure/chair/fancy/bench{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","security") + }, +/obj/effect/turf_decal/guideline/guideline_edge/red, +/obj/machinery/light_switch{ + pixel_x = 1; + pixel_y = -24 + }, +/turf/open/floor/iron, +/area/security/main) "hvH" = ( /obj/effect/turf_decal/tile/neutral, /obj/structure/rack, @@ -23544,6 +23837,15 @@ }, /turf/open/floor/iron/tech, /area/engine/engine_room) +"hvQ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "Chefwindow"; + name = "Chef Window" + }, +/turf/open/floor/iron/white, +/area/crew_quarters/kitchen) "hvW" = ( /turf/open/floor/carpet, /area/maintenance/port/aft) @@ -23581,6 +23883,22 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron, /area/engine/engine_room) +"hwu" = ( +/obj/machinery/computer/security{ + pixel_y = -3 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","security") + }, +/obj/machinery/computer/security/telescreen{ + network = list("ss13"); + pixel_y = 25 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet/red, +/area/security/detectives_office) "hwD" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt, @@ -23619,6 +23937,19 @@ }, /turf/open/floor/iron/techmaint, /area/science/xenobiology) +"hxo" = ( +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/structure/closet/secure_closet/genpop, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/bot, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/turf/open/floor/iron/dark, +/area/security/prison) "hxw" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -23629,6 +23960,22 @@ }, /turf/open/floor/iron/dark, /area/hallway/secondary/exit/departure_lounge) +"hxA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/quartermaster/warehouse) "hxB" = ( /obj/machinery/flasher{ id = "aicore"; @@ -23728,6 +24075,27 @@ dir = 6 }, /area/science/research) +"hyP" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/science/mixing) "hyQ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 @@ -23759,20 +24127,20 @@ "hzd" = ( /turf/open/floor/iron/grid/steel, /area/medical/virology) -"hze" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "bridgewindows"; - name = "Bridge View Blast Door" +"hzk" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" }, -/obj/structure/cable/yellow{ - icon_state = "0-4" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/structure/cable/yellow{ - icon_state = "0-8" + icon_state = "1-4" }, -/turf/open/floor/plating, -/area/bridge) +/turf/open/floor/iron/dark, +/area/security/main) "hzp" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 1; @@ -23836,36 +24204,6 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai_upload) -"hAD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/guideline/guideline_half_edge/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/guideline/guideline_half_edge/yellow{ - dir = 9 - }, -/obj/effect/turf_decal/guideline/guideline_edge_alt/yellow, -/obj/effect/turf_decal/guideline/guideline_tri/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/open/floor/iron, -/area/engine/engineering) -"hBA" = ( -/obj/structure/closet/secure_closet/security/sec{ - anchored = 1 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/security/main) "hBG" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -23878,9 +24216,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/hallway/primary/central) -"hBK" = ( -/turf/closed/wall/r_wall, -/area/security/main) "hBL" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted, /obj/machinery/airalarm/directional/east, @@ -23915,24 +24250,6 @@ }, /turf/open/floor/plating, /area/vacant_room/commissary/commissary2) -"hBT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/sepia, -/area/quartermaster/warehouse) "hBW" = ( /obj/machinery/airalarm/directional/west, /obj/effect/turf_decal/guideline/guideline_edge/purple{ @@ -23987,6 +24304,26 @@ }, /turf/open/floor/plating, /area/maintenance/department/bridge) +"hCt" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted{ + alpha = 180 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/open/floor/iron, +/area/engine/engineering) "hCu" = ( /obj/structure/flora/ausbushes/leafybush, /turf/open/floor/grass, @@ -24008,19 +24345,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/port) -"hDf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/airlock/maintenance/external{ - name = "construction Zone"; - req_one_access_txt = "32;47;48;37;29" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/turf/open/floor/iron, -/area/construction/mining/aux_base) "hDo" = ( /obj/structure/table/reinforced, /obj/item/radio/off{ @@ -24089,22 +24413,9 @@ }, /turf/open/floor/iron, /area/science/lobby) -"hFj" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/camera/autoname/directional/east, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/guideline/guideline_edge/brown{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/port) +"hFn" = ( +/turf/open/floor/iron/dark, +/area/security/prison) "hFC" = ( /obj/effect/landmark/start/station_engineer, /obj/effect/turf_decal/tile/neutral/half/contrasted, @@ -24153,6 +24464,26 @@ /obj/item/hand_labeler, /turf/open/floor/iron/grid/steel, /area/medical/virology) +"hGk" = ( +/obj/machinery/door/airlock/security{ + aiControlDisabled = 1; + id_tag = "prisonereducation"; + name = "Prison Access"; + req_one_access_txt = "3" + }, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/closeup{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/prison) "hGp" = ( /obj/effect/landmark/start/quartermaster, /obj/structure/chair/fancy/corp, @@ -24200,6 +24531,28 @@ /obj/item/folder/white, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) +"hHm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/turf_decal/guideline/guideline_tri/_offset/red{ + dir = 5 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + alpha = 180 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/guideline/guideline_in/darkblue{ + dir = 4 + }, +/obj/effect/turf_decal/guideline/guideline_edge/red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron, +/area/hallway/primary/fore) "hHo" = ( /obj/machinery/power/terminal{ dir = 4 @@ -24249,20 +24602,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) -"hIn" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/turf_decal/tile/black/fourcorners, -/obj/machinery/camera/autoname/directional/west{ - network = list("ss13","prison") - }, -/turf/open/floor/iron/techmaint, -/area/security/prison) "hIs" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -24294,6 +24633,12 @@ }, /turf/open/floor/iron/large, /area/hallway/primary/central) +"hIT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/security/brig) "hJf" = ( /obj/effect/turf_decal/stripes/closeup{ dir = 1 @@ -24307,21 +24652,20 @@ }, /turf/open/floor/catwalk_floor/iron_dark, /area/maintenance/disposal) -"hJD" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ - alpha = 180 - }, -/obj/machinery/door/window/southleft{ - dir = 8; - name = "Witness Box"; - req_one_access_txt = "63;42;38" - }, +"hJm" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, -/turf/open/floor/iron/dark, -/area/security/courtroom) +/obj/machinery/firealarm/directional/north, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","engine") + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron, +/area/engine/engine_room) "hJF" = ( /turf/open/floor/iron/dark/corner{ dir = 8 @@ -24336,13 +24680,6 @@ }, /turf/open/floor/circuit/telecomms/server, /area/science/xenobiology) -"hJK" = ( -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/siding/white{ - dir = 6 - }, -/turf/open/floor/glass/reinforced, -/area/hallway/primary/central) "hJO" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 8 @@ -24356,15 +24693,6 @@ }, /turf/open/floor/iron, /area/quartermaster/qm) -"hJW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/computer/security, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/security/main) "hKc" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, @@ -24501,6 +24829,18 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/iron/sepia, /area/maintenance/port/central) +"hLn" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/iron/dark, +/area/security/prison) "hLt" = ( /obj/effect/spawner/room/fivexthree, /obj/effect/decal/cleanable/dirt/dust, @@ -24522,6 +24862,17 @@ }, /turf/open/floor/iron/tech, /area/engine/atmos) +"hLI" = ( +/obj/machinery/camera/autoname/directional/north{ + c_tag = "Engineering - Secure Storage"; + name = "engineering camera"; + network = list("ss13","engine") + }, +/obj/machinery/power/emitter{ + dir = 1 + }, +/turf/open/floor/iron/tech/grid, +/area/engine/engineering) "hMa" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -24555,6 +24906,21 @@ }, /turf/open/floor/iron, /area/gateway) +"hMg" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/guideline/guideline_in/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/port) "hMn" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/guideline/guideline_edge/purple{ @@ -24567,6 +24933,13 @@ dir = 4 }, /area/science/research) +"hMq" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/turf/open/floor/iron/dark, +/area/security/prison) "hMs" = ( /obj/structure/closet/secure_closet/security, /obj/effect/turf_decal/tile/red/half/contrasted{ @@ -24586,14 +24959,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"hMw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosprivacy"; - name = "HoS Privacy Blast Door" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) "hMG" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 4 @@ -24683,6 +25048,23 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/white, /area/crew_quarters/heads/cmo) +"hOa" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + icon_state = "right"; + name = "Viro office"; + req_access_txt = "39" + }, +/obj/effect/turf_decal/tile/green/fourcorners/contrasted, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "quarantineshutters"; + name = "Isolation Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/medical/virology) "hOh" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet, @@ -24695,19 +25077,6 @@ }, /turf/open/floor/iron/techmaint, /area/science/misc_lab/range) -"hOz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom{ - pixel_x = 33; - pixel_y = -3 - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/dark, -/area/engine/engine_room) "hOB" = ( /obj/structure/sign/warning/vacuum, /turf/closed/wall/r_wall, @@ -24732,6 +25101,18 @@ }, /turf/open/floor/iron/dark, /area/security/courtroom) +"hOQ" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/turf/open/floor/iron/dark, +/area/engine/engine_room) "hOY" = ( /obj/effect/turf_decal/tile/blue/fourcorners/contrasted{ alpha = 200; @@ -24794,6 +25175,13 @@ /obj/machinery/light, /turf/open/floor/iron, /area/medical/sleeper) +"hPC" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark/smooth_large, +/area/hallway/primary/central) "hPE" = ( /obj/structure/closet, /obj/item/crowbar/red, @@ -24903,21 +25291,6 @@ }, /turf/open/floor/carpet/blue, /area/crew_quarters/heads/captain/private) -"hRZ" = ( -/obj/machinery/status_display/door_timer{ - id = "cell"; - name = "Solitary confinement timer"; - pixel_x = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/iron/freezer, -/area/security/prison) "hSa" = ( /obj/effect/turf_decal/tile/neutral/anticorner/contrasted, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -24932,6 +25305,34 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/iron/sepia, /area/quartermaster/storage) +"hSn" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + alpha = 180; + dir = 4 + }, +/obj/effect/turf_decal/guideline/guideline_in/yellow{ + dir = 1 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Foyer"; + req_one_access_txt = "32" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Engidesk"; + name = "engineering Security Door" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/iron, +/area/engine/break_room) "hSG" = ( /obj/structure/table/reinforced, /obj/item/paper_bin{ @@ -24970,14 +25371,19 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, /area/maintenance/department/medical/morgue) -"hTM" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ +"hTJ" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/structure/chair/fancy/bench{ dir = 1 }, -/turf/open/floor/iron/dark/smooth_large, -/area/hallway/primary/central) +/obj/machinery/newscaster{ + pixel_y = -31 + }, +/obj/effect/turf_decal/guideline/guideline_edge/red, +/turf/open/floor/iron, +/area/security/main) "hTN" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -25012,6 +25418,16 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) +"hUO" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/security/brig/dock) "hVf" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/atmos/mix_input{ dir = 8 @@ -25035,15 +25451,6 @@ }, /turf/open/floor/carpet/red, /area/crew_quarters/theatre/backstage) -"hVD" = ( -/obj/effect/turf_decal/tile/black/fourcorners, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/weightmachine/weightlifter, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/prison, -/area/security/prison) "hVF" = ( /obj/structure/flora/ausbushes/lavendergrass, /turf/open/floor/grass, @@ -25086,29 +25493,59 @@ /obj/structure/closet/bombcloset/security, /turf/open/floor/iron, /area/ai_monitored/security/armory) -"hVY" = ( -/obj/machinery/modular_fabricator/autolathe, -/obj/machinery/door/window/eastright{ - dir = 2; - name = "Research and Development Desk"; - req_one_access_txt = "47;63" +"hWe" = ( +/obj/machinery/door/poddoor/incinerator_toxmix{ + id = "tox_ESD"; + name = "Emergency Space Door" }, -/obj/structure/window/reinforced{ +/turf/open/floor/iron, +/area/science/storage) +"hWz" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 8 }, -/obj/effect/turf_decal/stripes/line{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 1 }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/iron, -/area/science/lab) +/obj/machinery/computer/card{ + pixel_y = -3 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/heads/captain) "hWH" = ( /obj/effect/turf_decal/box, /turf/open/floor/circuit/green, /area/science/robotics/mechbay) +"hWR" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/compressor{ + comp_id = "incineratorturbine"; + dir = 8; + luminosity = 2 + }, +/obj/machinery/camera/autoname/directional/north{ + c_tag = "Turbine Chamber"; + network = list("turbine") + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmospherics_engine) "hWZ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ @@ -25122,36 +25559,10 @@ "hXo" = ( /turf/closed/wall/mineral/wood, /area/hallway/primary/central) -"hXG" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/machinery/vending/wardrobe/sec_wardrobe, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/security/main) -"hYg" = ( -/obj/machinery/smartfridge/extract/preloaded, -/turf/open/floor/iron/white, -/area/science/xenobiology) "hYo" = ( /obj/machinery/space_heater, /turf/open/floor/plating, /area/maintenance/port/central) -"hYs" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/camera/autoname/directional/east{ - c_tag = "Interrogation room"; - network = list("interrogation") - }, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/dark, -/area/security/brig) "hYv" = ( /obj/structure/closet/firecloset/full, /turf/open/floor/wood, @@ -25175,17 +25586,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/port) -"hYV" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/obj/machinery/camera/autoname/directional/east{ - network = list("ss13","prison") - }, -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/turf/open/floor/iron, -/area/security/prison) "hYY" = ( /obj/machinery/vending/engivend, /obj/structure/railing{ @@ -25220,18 +25620,6 @@ /obj/machinery/meter, /turf/closed/wall/r_wall, /area/engine/supermatter) -"hZC" = ( -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/iron, -/area/hallway/primary/port) "hZF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -25418,35 +25806,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"icV" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/northleft{ - dir = 2; - name = "Atmospherics Desk"; - req_access_txt = "39" - }, -/obj/machinery/door/firedoor, -/obj/structure/desk_bell{ - pixel_x = 8; - pixel_y = 1 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "quarantineshutters"; - name = "Isolation Shutters" - }, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 2 - }, -/obj/item/pen{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron/dark, -/area/medical/virology) "idf" = ( /obj/item/radio/intercom{ dir = 8; @@ -25508,6 +25867,14 @@ /obj/structure/flora/ausbushes/sunnybush, /turf/open/floor/grass, /area/hallway/primary/central) +"iem" = ( +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test Chamber Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/explab) "ieI" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -25549,17 +25916,6 @@ }, /turf/open/floor/iron, /area/quartermaster/qm) -"ift" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/shower{ - dir = 1; - name = "emergency shower" - }, -/obj/effect/turf_decal/loading_area/white{ - dir = 8 - }, -/turf/open/floor/noslip/standard, -/area/engine/atmos) "ifv" = ( /obj/machinery/camera/autoname/directional/east{ network = list("ss13","engine") @@ -25568,6 +25924,25 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/iron, /area/engine/engine_room) +"ify" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/guideline/guideline_edge_alt/red, +/obj/effect/turf_decal/guideline/guideline_half_edge/red{ + dir = 9 + }, +/obj/effect/turf_decal/guideline/guideline_half_edge/red{ + dir = 1 + }, +/obj/effect/turf_decal/guideline/guideline_tri/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron, +/area/security/main) "ifC" = ( /turf/closed/wall/r_wall, /area/security/prison/shielded) @@ -25579,6 +25954,25 @@ /obj/machinery/atmospherics/pipe/heat_exchanging/simple, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) +"ifV" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table/glass, +/obj/item/book/manual/wiki/grenades, +/obj/item/stack/cable_coil/random, +/obj/item/clothing/glasses/science{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/screwdriver{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/machinery/light_switch{ + pixel_x = 21; + pixel_y = 22 + }, +/turf/open/floor/iron, +/area/medical/apothecary) "igf" = ( /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/preopen{ @@ -25649,6 +26043,14 @@ /obj/effect/turf_decal/tile/white/half/contrasted, /turf/open/floor/iron, /area/maintenance/department/medical/morgue) +"ihH" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/iron, +/area/engine/atmos) "iim" = ( /obj/structure/closet/l3closet/virology, /obj/effect/turf_decal/bot, @@ -25711,13 +26113,6 @@ }, /turf/open/floor/iron/white, /area/medical/medbay/lobby) -"ijs" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/turf/open/floor/iron, -/area/security/main) "ijx" = ( /obj/structure/disposaloutlet{ dir = 8 @@ -25727,26 +26122,6 @@ }, /turf/open/floor/engine, /area/science/xenobiology) -"ijC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "bridgewindows"; - name = "Bridge View Blast Door" - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/bridge) -"ijJ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Vacant Office A"; - req_access_txt = "12" - }, -/obj/structure/barricade/wooden/crude, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/iron, -/area/vacant_room/office) "ijM" = ( /obj/structure/table/wood, /obj/effect/turf_decal/siding/wood{ @@ -25839,22 +26214,10 @@ }, /turf/open/floor/carpet/purple, /area/chapel/office) -"ilD" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/science/xenobiology) -"ilH" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" - }, -/obj/structure/cable/yellow, -/obj/effect/spawner/structure/window/reinforced/prison, -/turf/open/floor/plating, -/area/security/prison) +"ilz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/iron/dark, +/area/security/brig/dock) "ilS" = ( /obj/structure/cable{ icon_state = "4-8" @@ -25924,22 +26287,6 @@ }, /turf/open/floor/plating, /area/science/xenobiology) -"inb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light, -/obj/machinery/flasher{ - id = "aicore"; - pixel_x = -10; - pixel_y = -23 - }, -/obj/machinery/camera/autoname/directional/south{ - c_tag = "MiniSat Core Hallway 3"; - network = list("minisat") - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/aisat/foyer) "inc" = ( /obj/structure/railing/corner{ dir = 1 @@ -26041,26 +26388,14 @@ }, /turf/open/floor/iron/techmaint, /area/hallway/secondary/service) -"ips" = ( -/obj/structure/table/reinforced, -/obj/item/gun/energy/e_gun{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/gun/energy/e_gun{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/machinery/door/window/brigdoor/westleft{ - name = "energy Guns"; - req_access_txt = "3" - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 8 +"ioI" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor/iron, -/area/ai_monitored/security/armory) +/turf/open/floor/iron/dark/smooth_large, +/area/hallway/primary/central) "ipw" = ( /obj/effect/turf_decal/tile/brown/fourcorners/contrasted, /obj/structure/cable/yellow{ @@ -26071,14 +26406,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/port) -"ipy" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/vending/security, -/turf/open/floor/iron/dark, -/area/security/main) "ipA" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -26105,6 +26432,18 @@ }, /turf/open/floor/iron/white, /area/medical/chemistry) +"ipR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "brigentrance"; + name = "Brig Lockdown Control"; + pixel_x = -25; + req_access_txt = "1" + }, +/turf/open/floor/iron/dark, +/area/security/main) "ipT" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -26242,20 +26581,21 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/maintenance/port/aft) -"isp" = ( -/obj/machinery/door/poddoor/preopen{ - id = "detectivewindows"; - name = "Detective Privacy Blast Door" +"isq" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ + alpha = 180 }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" +/obj/machinery/door/window/southleft{ + dir = 8; + name = "Witness Box"; + req_one_access_txt = "63;42;38" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/turf/open/floor/plating, -/area/security/detectives_office) +/turf/open/floor/iron/dark, +/area/security/courtroom) "isy" = ( /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, @@ -26264,19 +26604,17 @@ }, /turf/open/floor/iron/sepia, /area/quartermaster/office) -"isJ" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/obj/effect/turf_decal/bot, -/obj/machinery/computer/security{ - dir = 8; - network = list("security") - }, -/turf/open/floor/iron/dark, -/area/security/main) "isP" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron, /area/engine/engine_room) +"isT" = ( +/obj/machinery/smartfridge{ + name = "Bulk storage" + }, +/obj/effect/turf_decal/tile/dark_green/fourcorners/contrasted, +/turf/open/floor/iron, +/area/hydroponics) "itg" = ( /obj/effect/turf_decal/delivery, /obj/machinery/door/firedoor, @@ -26315,24 +26653,31 @@ /obj/structure/railing/corner, /turf/open/floor/iron/dark/smooth_large, /area/hallway/primary/central) -"itL" = ( -/obj/machinery/modular_fabricator/exosuit_fab{ - output_direction = 8 +"itK" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 }, -/turf/open/floor/iron/dark, -/area/science/robotics) -"itM" = ( -/obj/structure/urinal{ - pixel_y = 25 +/obj/structure/cable/yellow{ + icon_state = "1-8" }, +/obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 + dir = 9 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 +/obj/structure/cable/yellow{ + icon_state = "2-8" }, -/turf/open/floor/iron/freezer, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, /area/security/prison) +"itL" = ( +/obj/machinery/modular_fabricator/exosuit_fab{ + output_direction = 8 + }, +/turf/open/floor/iron/dark, +/area/science/robotics) "itV" = ( /obj/structure/cable/yellow{ icon_state = "1-4" @@ -26351,19 +26696,6 @@ }, /turf/open/floor/catwalk_floor, /area/maintenance/department/engine) -"iuj" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - alpha = 180; - dir = 4 - }, -/obj/effect/turf_decal/guideline/guideline_in/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/sorting/mail/destination/ce_office{ - dir = 4 - }, -/turf/open/floor/iron, -/area/engine/break_room) "iuO" = ( /obj/effect/turf_decal/tile/purple/fourcorners/contrasted, /obj/structure/disposalpipe/sorting/mail{ @@ -26378,6 +26710,22 @@ }, /turf/open/floor/iron/white, /area/science/research) +"ivz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + alpha = 180 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/guideline/guideline_in/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/engine/break_room) "ivH" = ( /obj/machinery/air_sensor/atmos/air_tank, /turf/open/floor/engine/air, @@ -26408,6 +26756,21 @@ /obj/machinery/firealarm/directional/north, /turf/open/floor/catwalk_floor/iron_dark, /area/engine/engine_room) +"iwa" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/guideline/guideline_edge/red, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/noticeboard{ + dir = 1; + name = "Evidence board"; + pixel_y = -32 + }, +/turf/open/floor/iron, +/area/security/brig) "iwt" = ( /obj/machinery/gateway, /turf/open/floor/iron/techmaint, @@ -26449,20 +26812,6 @@ /obj/structure/girder, /turf/open/floor/iron, /area/maintenance/department/security) -"ixf" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/firealarm/directional/north, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","engine") - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron, -/area/engine/engine_room) "ixk" = ( /obj/structure/closet/secure_closet/miner, /obj/machinery/requests_console{ @@ -26478,25 +26827,6 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/qm) -"ixv" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/main) "ixy" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -26517,26 +26847,6 @@ }, /turf/open/floor/iron/white, /area/crew_quarters/kitchen) -"ixK" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted{ - alpha = 180 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/open/floor/iron, -/area/engine/engineering) "ixS" = ( /obj/structure/cable{ icon_state = "4-8" @@ -26673,6 +26983,21 @@ }, /turf/open/floor/iron, /area/science/storage) +"iAj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Gear Room"; + req_one_access_txt = "1" + }, +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/effect/turf_decal/stripes/closeup{ + dir = 1 + }, +/turf/open/floor/iron, +/area/security/main) "iAu" = ( /obj/effect/turf_decal/siding/wideplating/dark/corner{ dir = 4 @@ -26698,6 +27023,20 @@ }, /turf/closed/wall/rust, /area/chapel/main) +"iAQ" = ( +/obj/structure/bed/roller, +/obj/machinery/light, +/obj/machinery/door/window/eastleft{ + dir = 1; + name = "Quarantine Pen B"; + req_access_txt = "39" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/toy/plush/slimeplushie/green, +/turf/open/floor/iron/grid/steel, +/area/medical/virology) "iBq" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted, /obj/structure/extinguisher_cabinet{ @@ -26709,6 +27048,17 @@ }, /turf/open/floor/iron, /area/hallway/primary/fore) +"iBr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "quarantineshutters"; + name = "Isolation Shutters" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/medical/virology) "iBs" = ( /obj/structure/disposalpipe/segment{ dir = 1 @@ -26744,15 +27094,6 @@ }, /turf/open/floor/iron/dark, /area/storage/primary) -"iBN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/iron/dark, -/area/engine/engine_room) "iCf" = ( /obj/effect/decal/cleanable/oil/streak, /obj/effect/decal/cleanable/dirt, @@ -26793,6 +27134,25 @@ }, /turf/open/floor/iron, /area/engine/atmos) +"iCT" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron, +/area/hallway/primary/fore) "iDw" = ( /obj/effect/turf_decal/tile/neutral/anticorner{ dir = 5 @@ -26872,13 +27232,6 @@ /obj/effect/turf_decal/siding/wideplating/dark, /turf/open/floor/carpet/blue, /area/crew_quarters/heads/hos) -"iFb" = ( -/obj/machinery/door/poddoor/incinerator_toxmix{ - id = "tox_ESD"; - name = "Emergency Space Door" - }, -/turf/open/floor/iron, -/area/science/storage) "iFD" = ( /obj/structure/closet/l3closet/virology, /obj/effect/turf_decal/bot, @@ -26901,22 +27254,6 @@ /obj/effect/turf_decal/box, /turf/open/floor/iron/dark, /area/storage/tech) -"iFM" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron/dark, -/area/engine/engine_room) "iFN" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch"; @@ -26924,35 +27261,37 @@ }, /turf/open/floor/plating, /area/crew_quarters/cafeteria) -"iGi" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/iron/dark, -/area/security/brig) "iGn" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/medical/storage) -"iGM" = ( -/turf/open/floor/iron, -/area/science/robotics) -"iGW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "quarantineshutters"; - name = "Isolation Shutters" +"iGA" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/item/screwdriver{ + pixel_y = 10 }, +/obj/effect/decal/cleanable/dirt, +/obj/item/analyzer, +/obj/item/pipe_dispenser, /obj/structure/cable/yellow{ - icon_state = "0-4" + icon_state = "4-8" }, -/turf/open/floor/plating, -/area/medical/virology) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/item/crowbar, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/science/mixing) +"iGM" = ( +/turf/open/floor/iron, +/area/science/robotics) "iHr" = ( /obj/effect/turf_decal/tile/purple{ dir = 4 @@ -27010,9 +27349,6 @@ }, /turf/open/floor/iron/tech, /area/engine/engine_room) -"iIu" = ( -/turf/closed/wall, -/area/security/prison) "iIv" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ alpha = 180; @@ -27021,20 +27357,6 @@ /obj/effect/turf_decal/guideline/guideline_in/yellow, /turf/open/floor/iron, /area/engine/engineering) -"iIy" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted{ - alpha = 180 - }, -/turf/open/floor/iron, -/area/engine/engineering) "iIE" = ( /obj/structure/cable{ icon_state = "2-8" @@ -27143,23 +27465,6 @@ /obj/structure/sign/departments/minsky/medical/chemistry/chemical2, /turf/closed/wall/rust, /area/maintenance/starboard/aft) -"iKw" = ( -/obj/structure/window/reinforced{ - dir = 8; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/light/floor{ - brightness = 15; - bulb_colour = "#FFE4CE"; - bulb_vacuum_brightness = 15; - nightshift_brightness = 10; - nightshift_light_color = "#E6EBFF" - }, -/turf/open/floor/iron/dark/smooth_large, -/area/hallway/primary/central) "iKy" = ( /obj/machinery/door/airlock{ name = "Service Hall"; @@ -27237,6 +27542,10 @@ }, /turf/open/floor/iron, /area/hallway/primary/starboard) +"iLK" = ( +/obj/structure/sign/poster/official/walk, +/turf/closed/wall/r_wall, +/area/security/prison) "iLL" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/camera/autoname/directional/south{ @@ -27247,6 +27556,16 @@ }, /turf/open/floor/iron/tech, /area/engine/engine_room) +"iLM" = ( +/obj/machinery/genpop_interface{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/table, +/turf/open/floor/iron/dark, +/area/security/prison) "iLW" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -27268,16 +27587,14 @@ }, /turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat_interior) +"iMb" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/obj/machinery/vending/coffee, +/turf/open/floor/iron, +/area/security/prison) "iMw" = ( /turf/closed/wall/rust, /area/maintenance/central) -"iMA" = ( -/obj/machinery/camera/autoname/directional/north{ - c_tag = "Xenobiology Lab - Pen #1"; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) "iMO" = ( /obj/machinery/light/small{ dir = 4 @@ -27359,6 +27676,44 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/hallway/primary/central) +"iNq" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + alpha = 180; + dir = 8 + }, +/obj/effect/turf_decal/guideline/guideline_in/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Foyer"; + req_one_access_txt = "32" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Engidesk"; + name = "engineering Security Door" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron, +/area/engine/break_room) "iNB" = ( /obj/machinery/gateway{ dir = 9 @@ -27623,6 +27978,14 @@ }, /turf/open/floor/catwalk_floor, /area/maintenance/department/medical/morgue) +"iRV" = ( +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/machinery/chem_dispenser, +/turf/open/floor/iron, +/area/medical/apothecary) "iRY" = ( /turf/closed/wall/r_wall, /area/engine/atmos) @@ -27652,12 +28015,12 @@ }, /turf/open/floor/wood, /area/security/courtroom) -"iSF" = ( -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","engine") - }, -/turf/open/floor/engine/n2o, -/area/engine/atmos) +"iSB" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/obj/machinery/computer/warrant, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/security/main) "iSN" = ( /obj/structure/cable{ icon_state = "0-8" @@ -27725,22 +28088,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"iUV" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table, -/obj/item/paper/guides/jobs/engi/gravity_gen, -/obj/item/stack/sheet/mineral/plasma/fifty, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/tech/grid, -/area/engine/gravity_generator) "iUW" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ @@ -27841,6 +28188,17 @@ }, /turf/open/floor/carpet/grimy, /area/maintenance/central) +"iWc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosroom"; + name = "HoS Room Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) "iWh" = ( /obj/structure/chair/stool/directional/west, /obj/effect/decal/cleanable/dirt, @@ -27850,17 +28208,31 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/carpet/blue, /area/crew_quarters/cafeteria) -"iXg" = ( +"iWM" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + alpha = 180; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/effect/turf_decal/guideline/guideline_in/yellow{ + dir = 1 + }, /obj/structure/cable/yellow{ - icon_state = "0-8" + icon_state = "1-4" }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor{ - id = "AIwindows"; - name = "AI View Blast Door" +/obj/structure/cable/yellow{ + icon_state = "1-8" }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron, +/area/engine/engineering) "iXm" = ( /obj/machinery/light{ dir = 8 @@ -27895,22 +28267,6 @@ dir = 8 }, /area/quartermaster/exploration_prep) -"iXL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - alpha = 180 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/guideline/guideline_in/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/engine/break_room) "iYu" = ( /obj/structure/lattice/catwalk, /obj/item/stack/cable_coil, @@ -28082,27 +28438,6 @@ }, /turf/open/floor/iron/white, /area/medical/genetics/cloning) -"jaD" = ( -/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted{ - alpha = 180 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/open/floor/iron, -/area/engine/engineering) "jaG" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -28124,36 +28459,6 @@ dir = 4 }, /area/quartermaster/exploration_prep) -"jaU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/obj/machinery/camera/autoname/directional/north, -/obj/machinery/washing_machine, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/crew_quarters/dorms) -"jbe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "brigentrance"; - name = "Brig Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/brig) "jbg" = ( /obj/structure/disposalpipe/segment{ dir = 1 @@ -28237,22 +28542,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, /area/engine/storage) -"jce" = ( -/obj/machinery/processor, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom{ - dir = 1; - pixel_x = 1; - pixel_y = 23 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/autoname/directional/north{ - c_tag = "Teleporter Room" - }, -/turf/open/floor/iron/white, -/area/crew_quarters/kitchen) "jcl" = ( /obj/effect/turf_decal/tile/dark_green/fourcorners/contrasted, /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ @@ -28278,6 +28567,19 @@ }, /turf/open/floor/iron/white, /area/medical/medbay/central) +"jcs" = ( +/obj/machinery/airalarm/directional/south, +/obj/structure/rack, +/obj/item/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/healthanalyzer, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","rd") + }, +/turf/open/floor/iron/white, +/area/science/explab) "jcv" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/light, @@ -28325,14 +28627,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) -"jcP" = ( -/obj/machinery/camera/autoname/directional/west{ - c_tag = "Xenobiology Lab - Pen #4"; - network = list("ss13","rd","xeno") - }, -/obj/structure/window/reinforced, -/turf/open/floor/engine, -/area/science/xenobiology) "jcW" = ( /turf/closed/wall/r_wall, /area/engine/engine_room) @@ -28344,10 +28638,28 @@ dir = 8 }, /area/hallway/secondary/exit/departure_lounge) -"jdh" = ( -/obj/effect/landmark/start/assistant, -/turf/open/floor/glass/reinforced, -/area/hallway/primary/central) +"jdj" = ( +/obj/machinery/computer/pod/old{ + density = 0; + icon = 'icons/obj/airlock_machines.dmi'; + icon_state = "airlock_control_standby"; + id = "chapelgun"; + name = "Mass Driver Controller"; + pixel_y = 32 + }, +/obj/structure/table/wood/fancy, +/obj/item/food/grown/flower/harebell{ + pixel_y = 3 + }, +/obj/item/candle/infinite{ + pixel_x = -8; + pixel_y = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/chapel/main) "jdn" = ( /obj/item/shovel/spade, /obj/item/storage/belt/botanical, @@ -28428,6 +28740,46 @@ /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/port/aft) +"jeg" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/restraints/handcuffs{ + pixel_x = 3; + pixel_y = 8 + }, +/obj/item/restraints/handcuffs{ + pixel_y = 4 + }, +/obj/item/restraints/handcuffs{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "quarantineshutters"; + name = "Isolation Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/iron/grid/steel, +/area/medical/virology) +"jeM" = ( +/obj/machinery/power/apc/auto_name/directional/west{ + pixel_x = -24 + }, +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/box, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/grid/steel, +/area/medical/virology) "jeN" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/power/smes{ @@ -28438,6 +28790,20 @@ initial_gas_mix = "o2=22;n2=82;TEMP=293.15" }, /area/tcommsat/computer) +"jfa" = ( +/obj/machinery/computer/cargo/request, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/box, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron, +/area/medical/storage) "jfb" = ( /obj/structure/cable{ icon_state = "4-8" @@ -28486,18 +28852,6 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) -"jfL" = ( -/obj/structure/table, -/obj/machinery/fax/sec, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/security/main) "jgz" = ( /obj/structure/railing/corner{ dir = 8 @@ -28672,10 +29026,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/maintenance/port/aft) -"jiR" = ( -/obj/structure/sign/departments/holy, -/turf/closed/wall, -/area/chapel/main) "jiS" = ( /obj/machinery/light/small{ dir = 1 @@ -28744,6 +29094,35 @@ /obj/effect/turf_decal/siding/wideplating/dark, /turf/open/floor/iron/cafeteria, /area/crew_quarters/kitchen) +"jkj" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "MailConv" + }, +/obj/machinery/button/door{ + id = "Bountydoors"; + name = "Bounty glass doors"; + normaldoorcontrol = 1; + pixel_y = 38; + req_access_txt = "31" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "QMLoaddoor2"; + name = "Loading Doors"; + pixel_y = 28; + req_access_txt = "31" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron/dark, +/area/quartermaster/office) "jkr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -28779,13 +29158,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/techmaint, /area/storage/tech) -"jkH" = ( -/obj/effect/turf_decal/siding/wood/end, -/obj/structure/railing{ - dir = 10 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) "jkM" = ( /obj/item/radio/intercom{ dir = 1; @@ -28802,6 +29174,16 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/engine, /area/science/explab) +"jlg" = ( +/obj/structure/table/reinforced, +/obj/item/toy/figure/chef, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "Chefwindow"; + name = "Chef Window" + }, +/turf/open/floor/iron/white, +/area/crew_quarters/kitchen) "jlw" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 4 @@ -28825,33 +29207,24 @@ }, /turf/open/floor/carpet/orange, /area/quartermaster/qm) -"jlZ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "quarantineshutters"; - name = "Isolation Shutters" - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/grid/steel, -/area/medical/virology) -"jmm" = ( -/obj/structure/disposalpipe/segment{ +"jlQ" = ( +/obj/effect/turf_decal/tile/blue/half{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ +/obj/machinery/light{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","medbay") + }, +/obj/machinery/airalarm/directional/north{ + pixel_y = 28 }, /obj/structure/cable/yellow{ - icon_state = "1-8" + icon_state = "4-8" }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/iron/white, +/area/medical/office) "jmw" = ( /obj/item/reagent_containers/food/drinks/drinkingglass{ pixel_x = -7; @@ -28876,6 +29249,14 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/iron/techmaint, /area/science/misc_lab/range) +"jnw" = ( +/obj/structure/chair/fancy/sofa/old/right{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/carpet/green, +/area/security/main) "jnz" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 @@ -28920,23 +29301,6 @@ }, /turf/open/floor/carpet/purple, /area/crew_quarters/heads/hor) -"jnZ" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted{ - alpha = 180 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron, -/area/engine/engineering) "jof" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -29000,38 +29364,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/security/checkpoint/auxiliary) -"joR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrign"; - name = "Brig"; - req_one_access_txt = "63;38" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/door/poddoor/preopen{ - id = "brigentrance"; - name = "Brig Blast Door" - }, -/obj/effect/turf_decal/stripes/closeup, -/turf/open/floor/iron, -/area/security/brig) "joU" = ( /obj/effect/turf_decal/guideline/guideline_edge/blue, /obj/effect/turf_decal/guideline/guideline_edge/green{ @@ -29051,21 +29383,6 @@ }, /turf/open/floor/iron, /area/quartermaster/storage) -"jpI" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/light/floor{ - brightness = 15; - bulb_emergency_brightness_mul = 2; - bulb_vacuum_brightness = 15; - nightshift_brightness = 10 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/hallway/primary/central) "jpK" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch"; @@ -29150,6 +29467,16 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) +"jrH" = ( +/obj/effect/turf_decal/tile/black/fourcorners, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/iron/techmaint, +/area/security/prison) "jrO" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 1 @@ -29297,25 +29624,6 @@ }, /turf/open/floor/iron/half, /area/hallway/primary/central) -"jth" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/iron, -/area/security/main) "jtr" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 @@ -29328,23 +29636,6 @@ dir = 1 }, /area/engine/engine_room) -"jtJ" = ( -/obj/structure/chair/office{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/science/misc_lab) "jtU" = ( /obj/structure/sign/departments/minsky/research/research, /turf/closed/wall, @@ -29544,6 +29835,28 @@ }, /turf/open/space/basic, /area/space/nearstation) +"jxl" = ( +/obj/effect/turf_decal/guideline/guideline_in/darkblue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + alpha = 180; + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/sorting/mail/destination/law_office/flip{ + dir = 1 + }, +/turf/open/floor/iron, +/area/hallway/primary/central) "jxn" = ( /obj/effect/turf_decal/tile/dark_green, /obj/effect/decal/cleanable/dirt, @@ -29556,59 +29869,34 @@ }, /turf/open/floor/iron, /area/maintenance/central) -"jxz" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space/basic, -/area/solar/starboard/aft) -"jxK" = ( -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/rack, -/obj/item/tank/jetpack/carbondioxide{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/tank/jetpack/carbondioxide{ - pixel_x = 4; - pixel_y = -1 - }, -/obj/item/tank/jetpack/carbondioxide{ - pixel_x = -4; - pixel_y = -2 +"jxw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/obj/machinery/door/window/northright{ - name = "Jetpack Storage"; - req_access_txt = "19" +/obj/effect/turf_decal/guideline/guideline_edge_alt/red{ + dir = 4 }, -/obj/structure/window/reinforced{ +/obj/effect/turf_decal/guideline/guideline_half_edge/red{ dir = 8 }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/iron/tech, -/area/ai_monitored/storage/eva) -"jxT" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Gas to Cooling Loop" +/obj/effect/turf_decal/guideline/guideline_half_edge/red{ + dir = 6 }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ +/obj/effect/turf_decal/guideline/guideline_tri/red{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable/yellow{ - icon_state = "1-2" +/obj/effect/turf_decal/tile/neutral{ + dir = 8 }, -/turf/open/floor/iron/tech, -/area/engine/engine_room) +/turf/open/floor/iron, +/area/security/main) +"jxz" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space/basic, +/area/solar/starboard/aft) "jxU" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -29904,18 +30192,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/science/storage) -"jCL" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/cable/yellow, -/obj/effect/spawner/structure/window/reinforced/prison, -/turf/open/floor/plating, -/area/security/prison) "jCR" = ( /obj/effect/turf_decal/guideline/guideline_tri/purple{ dir = 1 @@ -29933,15 +30209,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/cafeteria, /area/crew_quarters/kitchen) -"jDB" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "Chefwindow"; - name = "Chef Window" - }, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) "jDD" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2, @@ -29962,25 +30229,6 @@ }, /turf/open/floor/catwalk_floor/iron_dark, /area/engine/engine_room) -"jDF" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridgewindows"; - name = "Bridge View Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/structure/cable/cyan, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/bridge) "jDH" = ( /obj/docking_port/stationary{ dir = 4; @@ -30000,18 +30248,28 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/grid/steel, /area/science/xenobiology) -"jEe" = ( -/obj/structure/disposalpipe/segment{ +"jEi" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/yellow/anticorner_ramp/contrasted{ + alpha = 180; dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 +/obj/effect/turf_decal/guideline/guideline_ramp/yellow{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 +/obj/structure/disposalpipe/segment{ + dir = 10 }, -/turf/open/floor/iron/white, -/area/crew_quarters/kitchen) +/turf/open/floor/iron{ + dir = 8 + }, +/area/engine/engineering) "jEw" = ( /obj/structure/sign/poster/official/safety_report, /turf/closed/wall, @@ -30160,6 +30418,15 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/iron, /area/engine/engineering) +"jGH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/security/prison) "jGK" = ( /obj/structure/cable/yellow{ icon_state = "1-8" @@ -30312,23 +30579,28 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/engine/atmos) -"jJw" = ( -/obj/structure/window/reinforced{ - dir = 1 +"jIN" = ( +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","rd") }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/window/reinforced{ +/obj/effect/turf_decal/stripes/corner{ dir = 4 }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/turf/open/floor/iron, +/area/science/lobby) +"jIR" = ( +/obj/machinery/status_display/evac{ + pixel_y = 32 }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/heads/captain) +/obj/machinery/camera/autoname/directional/north{ + c_tag = "MiniSat Upload East"; + network = list("minisat","aiupload") + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/aisat/foyer) "jJz" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/chair/fancy/comfy{ @@ -30336,25 +30608,6 @@ }, /turf/open/floor/carpet/royalblack, /area/library) -"jJB" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/main) "jJC" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -30397,15 +30650,6 @@ }, /turf/open/floor/engine/vacuum, /area/engine/atmospherics_engine) -"jKm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopshutter"; - name = "Privacy Shutters" - }, -/turf/open/floor/plating, -/area/maintenance/department/bridge) "jKr" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -30433,6 +30677,31 @@ /obj/machinery/atmospherics/pipe/heat_exchanging/simple, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) +"jKN" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted{ + alpha = 180 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/open/floor/iron, +/area/engine/engineering) "jKU" = ( /obj/structure/closet/firecloset/full, /turf/open/floor/iron/sepia, @@ -30466,31 +30735,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/science) -"jMm" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - pixel_y = 1 - }, -/obj/structure/closet/firecloset/full, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark/smooth_large, -/area/hallway/primary/central) -"jMp" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/loading_area{ - pixel_y = -8 - }, -/turf/open/floor/iron, -/area/security/main) "jMC" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/stripes/line{ @@ -30531,6 +30775,13 @@ /obj/effect/spawner/lootdrop/maintenance/two, /turf/open/floor/plating, /area/maintenance/port/central) +"jNd" = ( +/obj/effect/turf_decal/tile/black/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/techmaint, +/area/security/prison) "jNm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate/miningcar, @@ -30559,6 +30810,16 @@ }, /turf/open/floor/iron/white, /area/medical/apothecary) +"jOe" = ( +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/structure/closet/secure_closet/genpop, +/obj/effect/turf_decal/bot, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/iron/dark, +/area/security/prison) "jOj" = ( /obj/structure/window/reinforced{ dir = 8 @@ -30602,6 +30863,23 @@ }, /turf/open/floor/iron/tech, /area/engine/engine_room) +"jOT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "Engidesk"; + name = "engineering Security Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/engine/engineering) "jPc" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 @@ -30662,15 +30940,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/bridge) -"jPF" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/hallway/primary/central) "jPJ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ @@ -30757,6 +31026,27 @@ }, /turf/open/floor/wood, /area/security/courtroom) +"jQM" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/main) +"jQP" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 1; + icon_state = "left"; + name = "Security Delivery"; + req_access_txt = "1" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/security/brig) "jRd" = ( /obj/machinery/light{ dir = 4 @@ -30931,6 +31221,37 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/iron/grid/steel, /area/hydroponics) +"jSI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "20" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor{ + id = "Capoffice"; + name = "Captain Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/iron/dark, +/area/crew_quarters/heads/captain) +"jSP" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/vending/security, +/turf/open/floor/iron/dark, +/area/security/main) "jSQ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ @@ -31157,6 +31478,16 @@ dir = 1 }, /area/medical/sleeper) +"jXy" = ( +/obj/machinery/light{ + bulb_colour = "#FFCEA6"; + dir = 4; + nightshift_light_color = "#FFB16E" + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) "jXI" = ( /obj/effect/turf_decal/tile/blue/half{ dir = 4 @@ -31189,32 +31520,6 @@ }, /turf/open/floor/engine/n2o, /area/engine/atmos) -"jYo" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/xenoartifact_labeler{ - pixel_y = 6 - }, -/obj/item/clothing/glasses/science{ - pixel_x = 4; - pixel_y = 10 - }, -/obj/item/xenoartifact_labeler{ - pixel_y = 6 - }, -/obj/item/clothing/glasses/science{ - pixel_x = 4; - pixel_y = 10 - }, -/obj/item/healthanalyzer, -/obj/item/analyzer, -/obj/item/clothing/gloves/artifact_pinchers{ - pixel_y = 3 - }, -/turf/open/floor/iron, -/area/science/explab) "jYx" = ( /obj/machinery/computer/camera_advanced/xenobio, /obj/effect/turf_decal/bot, @@ -31223,18 +31528,6 @@ }, /turf/open/floor/iron/grid/steel, /area/science/xenobiology) -"jZk" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/iron/dark, -/area/security/brig) "jZm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -31286,6 +31579,20 @@ }, /turf/open/floor/iron, /area/chapel/main) +"jZG" = ( +/obj/machinery/door/airlock/external{ + name = "MiniSat External Access"; + req_one_access_txt = "65;61" + }, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "AIwindows"; + name = "AI View Blast Door" + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/aisat_interior) "jZL" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 1 @@ -31313,6 +31620,13 @@ /obj/effect/turf_decal/box, /turf/open/floor/iron/grid/steel, /area/medical/virology) +"kao" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/guideline/guideline_edge/red, +/turf/open/floor/iron, +/area/security/brig) "kav" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/guideline/guideline_edge/purple{ @@ -31379,27 +31693,23 @@ }, /turf/open/floor/iron, /area/engine/storage) -"kbH" = ( -/turf/closed/wall/r_wall/rust, -/area/science/mixing) -"kch" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridgewindows"; - name = "Bridge View Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" +"kbs" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/structure/cable/yellow{ - icon_state = "0-8" + icon_state = "1-2" }, -/obj/structure/window/reinforced/spawner, -/obj/structure/window/reinforced/spawner{ - dir = 1 +/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted{ + alpha = 180 }, -/obj/structure/transit_tube, -/turf/open/floor/iron/dark, -/area/bridge) +/turf/open/floor/iron, +/area/engine/engineering) +"kbH" = ( +/turf/closed/wall/r_wall/rust, +/area/science/mixing) "kcF" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/iron/white, @@ -31410,20 +31720,6 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/exploration_prep) -"kcO" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1; - pixel_x = 15; - pixel_y = -15 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron/tech, -/area/engine/engine_room) "kcZ" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/eastright{ @@ -31491,6 +31787,18 @@ }, /turf/open/floor/iron, /area/crew_quarters/cafeteria) +"kfi" = ( +/obj/machinery/camera/autoname/directional/east{ + network = list("ss13","security") + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/iron/dark, +/area/security/brig) "kfn" = ( /obj/structure/chair/fancy/sofa/old/right{ color = "#742925"; @@ -31558,6 +31866,16 @@ }, /turf/open/floor/iron/dark, /area/engine/engine_room) +"kge" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/iron/dark, +/area/security/brig) "kgi" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -31618,6 +31936,22 @@ }, /turf/open/floor/iron, /area/crew_quarters/dorms) +"khg" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/guideline/guideline_edge/red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","security") + }, +/turf/open/floor/iron, +/area/security/brig) "kht" = ( /obj/effect/turf_decal/tile/purple/fourcorners/contrasted, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -31641,6 +31975,10 @@ }, /turf/open/floor/iron/dark, /area/security/brig/dock) +"khA" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark, +/area/security/main) "khE" = ( /obj/effect/turf_decal/tile/brown/half/contrasted, /obj/structure/disposalpipe/segment{ @@ -31820,6 +32158,30 @@ }, /turf/open/floor/iron/grid/steel, /area/hydroponics) +"kjF" = ( +/obj/machinery/door/poddoor{ + id = "Capoffice"; + name = "Captain Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/captain) +"kjQ" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/security/main) "kkg" = ( /obj/structure/chair/office, /obj/effect/landmark/start/detective, @@ -31901,6 +32263,16 @@ }, /turf/open/floor/iron/dark, /area/security/checkpoint/auxiliary) +"kkY" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_y = 2 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/security/prison) "kla" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -31923,33 +32295,6 @@ }, /turf/open/floor/iron, /area/engine/engine_room) -"klt" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/guideline/guideline_half_edge/blue{ - color = "#267878"; - dir = 5 - }, -/obj/effect/turf_decal/guideline/guideline_half_edge/blue{ - color = "#267878" - }, -/obj/effect/turf_decal/guideline/guideline_edge_alt/blue{ - color = "#267878"; - dir = 1 - }, -/obj/effect/turf_decal/guideline/guideline_tri/blue{ - color = "#267878"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/machinery/camera/autoname/directional/east, -/turf/open/floor/iron, -/area/hallway/secondary/entry) "klu" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 @@ -31970,6 +32315,13 @@ }, /turf/open/floor/iron/dark, /area/teleporter) +"klx" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron, +/area/hallway/primary/port) "klA" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrous_input{ dir = 8 @@ -32007,17 +32359,6 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/grid/steel, /area/hydroponics) -"kma" = ( -/obj/structure/railing{ - dir = 10 - }, -/obj/effect/spawner/randomvend/cola, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 10 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark/smooth_large, -/area/hallway/primary/central) "kml" = ( /obj/structure/table/reinforced, /obj/item/clipboard{ @@ -32092,6 +32433,17 @@ }, /turf/open/floor/catwalk_floor, /area/maintenance/department/engine) +"knv" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = -23; + pixel_y = -7 + }, +/turf/open/floor/iron/dark, +/area/security/brig) "knx" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -32121,15 +32473,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"kob" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "quarantineshutters"; - name = "Isolation Shutters" - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/medical/virology) "kok" = ( /obj/structure/chair/stool/bar/directional/south, /turf/open/floor/iron/cafeteria_red, @@ -32137,6 +32480,13 @@ "kor" = ( /turf/closed/wall/r_wall/rust, /area/science/storage) +"kos" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/machinery/camera/autoname/directional/east{ + network = list("ss13","security") + }, +/turf/open/floor/iron/dark, +/area/security/brig/dock) "koB" = ( /obj/effect/turf_decal/delivery, /obj/structure/cable/yellow{ @@ -32176,13 +32526,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/ai_monitored/security/armory) -"kpc" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/security/main) "kpf" = ( /obj/machinery/status_display/evac, /turf/closed/wall/r_wall, @@ -32215,6 +32558,19 @@ /obj/machinery/status_display/evac, /turf/closed/wall, /area/hallway/secondary/exit/departure_lounge) +"kpT" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/loading_area{ + pixel_y = -8 + }, +/turf/open/floor/iron, +/area/security/main) "kqq" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -32365,6 +32721,20 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/port/aft) +"ksN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridgewindows"; + name = "Bridge View Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/bridge) "ksT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 @@ -32395,6 +32765,17 @@ }, /turf/open/floor/iron/half, /area/hallway/primary/central) +"kuf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "quarantineshutters"; + name = "Isolation Shutters" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/medical/virology) "kui" = ( /obj/item/radio/intercom{ dir = 1; @@ -32408,12 +32789,6 @@ /obj/effect/mapping_helpers/tile_breaker, /turf/open/floor/wood, /area/maintenance/central) -"kus" = ( -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","engine") - }, -/turf/open/floor/engine/plasma, -/area/engine/atmos) "kuy" = ( /obj/effect/turf_decal/loading_area{ dir = 8 @@ -32548,13 +32923,6 @@ }, /turf/open/floor/plating, /area/security/warden) -"kvR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/iron/dark, -/area/engine/engine_room) "kvU" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 4 @@ -32573,6 +32941,25 @@ "kwh" = ( /turf/closed/wall, /area/engine/engineering) +"kwq" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/turf/open/floor/iron, +/area/security/main) "kwv" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold/general/visible{ @@ -32623,6 +33010,14 @@ }, /turf/open/floor/wood, /area/security/courtroom) +"kxl" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "medpriv1"; + name = "privacy Door" + }, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/exam_room) "kxp" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ @@ -32630,12 +33025,11 @@ }, /turf/open/floor/plating, /area/security/checkpoint/medical) -"kxr" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/hallway/primary/central) +"kxx" = ( +/obj/effect/spawner/structure/window, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/library) "kxz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 9 @@ -32651,6 +33045,18 @@ }, /turf/open/floor/wood, /area/security/courtroom) +"kxD" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/clipboard{ + name = "menu" + }, +/obj/machinery/door/poddoor/shutters{ + id = "Chefwindow"; + name = "Chef Window" + }, +/turf/open/floor/plating, +/area/crew_quarters/kitchen) "kxQ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/mix_output{ dir = 8 @@ -32714,11 +33120,6 @@ name = "mainframe floor" }, /area/tcommsat/server) -"kyO" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/obj/machinery/vending/coffee, -/turf/open/floor/iron, -/area/security/prison) "kyR" = ( /turf/closed/wall/r_wall, /area/security/checkpoint/escape) @@ -32737,6 +33138,13 @@ }, /turf/open/space/basic, /area/space/nearstation) +"kzB" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/brig) "kzI" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -32778,6 +33186,26 @@ initial_gas_mix = "o2=22;n2=82;TEMP=293.15" }, /area/tcommsat/computer) +"kAI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + alpha = 180 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/guideline/guideline_edge_alt/yellow{ + dir = 6 + }, +/obj/effect/turf_decal/guideline/guideline_tri/_corner/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/engine/engineering) "kAP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -32794,15 +33222,6 @@ }, /turf/open/floor/engine/o2, /area/ai_monitored/turret_protected/ai) -"kBx" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/security/prison) "kBB" = ( /obj/machinery/light/floor, /obj/effect/landmark/start/ai, @@ -32850,6 +33269,28 @@ }, /turf/open/floor/iron/dark, /area/bridge) +"kCC" = ( +/obj/item/radio/intercom{ + pixel_x = 1; + pixel_y = 30 + }, +/obj/structure/chair/office{ + dir = 8; + pixel_x = -6; + pixel_y = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = 1; + pixel_y = 22 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron, +/area/science/misc_lab) "kCO" = ( /obj/machinery/computer/station_alert{ dir = 1 @@ -32906,20 +33347,6 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/iron/white, /area/crew_quarters/kitchen) -"kDD" = ( -/obj/machinery/door/airlock/external{ - name = "MiniSat External Access"; - req_one_access_txt = "65;61" - }, -/obj/machinery/atmospherics/pipe/layer_manifold{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "AIwindows"; - name = "AI View Blast Door" - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat_interior) "kDQ" = ( /obj/effect/turf_decal/tile/blue/half/contrasted{ dir = 4 @@ -32988,6 +33415,29 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/iron, /area/crew_quarters/cafeteria) +"kEw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/turf_decal/guideline/guideline_half_edge/red{ + dir = 4 + }, +/obj/effect/turf_decal/guideline/guideline_edge_alt/red{ + dir = 8 + }, +/obj/effect/turf_decal/guideline/guideline_half_edge/red{ + dir = 10 + }, +/obj/effect/turf_decal/guideline/guideline_tri/red, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/iron, +/area/security/brig) "kEL" = ( /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/plating, @@ -33020,6 +33470,18 @@ }, /turf/open/floor/catwalk_floor, /area/maintenance/port/aft) +"kFF" = ( +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/iron, +/area/hallway/primary/port) "kFV" = ( /obj/structure/sign/warning/nosmoking, /turf/closed/wall, @@ -33056,6 +33518,21 @@ /obj/effect/decal/cleanable/oil/slippery, /turf/open/floor/iron, /area/maintenance/port/aft) +"kGt" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","security") + }, +/obj/effect/turf_decal/guideline/guideline_edge/red, +/obj/item/radio/intercom{ + dir = 1; + pixel_x = 1; + pixel_y = -36 + }, +/turf/open/floor/iron, +/area/security/main) "kGu" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -33089,33 +33566,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/iron, /area/science/mixing) -"kHp" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 3 - }, -/obj/structure/desk_bell{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/window/westleft{ - name = "Delivery Desk"; - req_access_txt = "50" - }, -/obj/item/paper_bin{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/pen{ - pixel_x = 7; - pixel_y = 3 - }, -/turf/open/floor/iron/sepia, -/area/quartermaster/office) "kHy" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -33143,18 +33593,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"kIg" = ( -/obj/item/soap/nanotrasen, -/obj/effect/turf_decal/delivery, -/obj/structure/curtain, -/obj/machinery/shower{ - dir = 8; - name = "emergency shower"; - pixel_x = -5; - pixel_y = -5 - }, -/turf/open/floor/noslip/standard, -/area/security/prison) "kIi" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 4 @@ -33307,40 +33745,6 @@ /obj/machinery/vendor/exploration, /turf/open/floor/iron/dark, /area/quartermaster/exploration_prep) -"kKf" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/iron, -/area/science/mixing) -"kKw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/structure/closet/secure_closet/security/sec{ - anchored = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/security/main) "kKx" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -33456,13 +33860,6 @@ "kLq" = ( /turf/open/floor/carpet/blue, /area/medical/exam_room) -"kLz" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/guideline/guideline_edge/red, -/turf/open/floor/iron, -/area/security/main) "kLF" = ( /obj/effect/turf_decal/bot, /obj/structure/cable/yellow{ @@ -33519,6 +33916,15 @@ dir = 6 }, /area/science/research) +"kNR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/security/main) "kNX" = ( /obj/effect/decal/cleanable/blood/footprints, /obj/machinery/airalarm/directional/west, @@ -33552,6 +33958,12 @@ }, /turf/open/space/basic, /area/space) +"kOp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/iron/dark, +/area/engine/engine_room) "kOt" = ( /obj/docking_port/stationary{ dwidth = 12; @@ -33578,6 +33990,15 @@ }, /turf/open/floor/plating, /area/crew_quarters/heads/hor) +"kOM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/iron/dark, +/area/engine/engine_room) "kOP" = ( /obj/effect/turf_decal/tile/blue/fourcorners/contrasted{ alpha = 200; @@ -33736,6 +34157,16 @@ /obj/machinery/status_display/evac, /turf/closed/wall, /area/crew_quarters/cafeteria) +"kRQ" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/brig) "kRR" = ( /obj/effect/turf_decal/tile/purple/fourcorners/contrasted, /obj/structure/cable/yellow{ @@ -33873,6 +34304,34 @@ }, /turf/open/floor/prison, /area/security/prison) +"kTC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/purple/fourcorners/contrasted, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + id_tag = "ResearchExt"; + name = "Research Division"; + req_one_access_txt = "7;29" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/iron/white, +/area/science/research) "kTN" = ( /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ @@ -33913,6 +34372,10 @@ }, /turf/open/floor/iron/tech, /area/engine/engine_room) +"kUl" = ( +/obj/machinery/smartfridge/extract/preloaded, +/turf/open/floor/iron/white, +/area/science/xenobiology) "kUm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 1 @@ -33945,28 +34408,6 @@ }, /turf/open/floor/iron/dark, /area/engine/engine_room) -"kUY" = ( -/obj/item/radio/intercom{ - pixel_x = 1; - pixel_y = 30 - }, -/obj/structure/chair/office{ - dir = 8; - pixel_x = -6; - pixel_y = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = 1; - pixel_y = 22 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/science/misc_lab) "kVe" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt, @@ -34197,22 +34638,6 @@ }, /turf/open/floor/wood, /area/crew_quarters/dorms) -"kYE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/door/poddoor/preopen{ - id = "bridgedoors"; - name = "Bridge Access Blast Door" - }, -/turf/open/floor/plating, -/area/bridge) "kYH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -34244,14 +34669,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/iron, /area/bridge) -"kZd" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering Security Door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/noslip/standard, -/area/engine/engineering) "kZj" = ( /obj/structure/railing/corner{ dir = 4 @@ -34287,26 +34704,6 @@ /obj/item/clothing/mask/balaclava, /turf/open/floor/iron/dark, /area/security/execution/education) -"kZz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/turf/open/floor/iron, -/area/security/main) "kZA" = ( /obj/machinery/light/small{ dir = 1 @@ -34419,6 +34816,12 @@ }, /turf/open/floor/iron, /area/quartermaster/sorting) +"laI" = ( +/obj/structure/sign/poster/random{ + pixel_x = 2 + }, +/turf/closed/wall, +/area/security/main) "lbf" = ( /obj/structure/cable/yellow{ icon_state = "2-4" @@ -34435,6 +34838,29 @@ }, /turf/open/floor/iron/white, /area/science/xenobiology) +"lbg" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/effect/mapping_helpers/airlock/unres, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "quarantineshutters"; + name = "Quarantine Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/iron, +/area/medical/medbay/central) "lbh" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -34545,15 +34971,6 @@ }, /turf/open/floor/iron, /area/crew_quarters/dorms) -"lcj" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering Security Door" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/noslip/standard, -/area/engine/engineering) "lcp" = ( /obj/effect/turf_decal{ dir = 1 @@ -34598,22 +35015,6 @@ }, /turf/open/floor/wood, /area/security/prison) -"ldP" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/obj/effect/turf_decal/guideline/guideline_edge/yellow{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_x = -31; - pixel_y = -3 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/engine/engineering) "lef" = ( /obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 8 @@ -34663,47 +35064,6 @@ /obj/machinery/vending/wardrobe/jani_wardrobe, /turf/open/floor/iron, /area/janitor) -"leQ" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" - }, -/obj/structure/cable/yellow, -/obj/effect/spawner/structure/window/reinforced/prison, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/prison) -"leR" = ( -/obj/effect/turf_decal/bot, -/obj/structure/table/glass, -/obj/item/book/manual/wiki/grenades, -/obj/item/stack/cable_coil/random, -/obj/item/clothing/glasses/science{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/screwdriver{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/machinery/light_switch{ - pixel_x = 21; - pixel_y = 22 - }, -/turf/open/floor/iron, -/area/medical/apothecary) -"lfc" = ( -/obj/machinery/rnd/production/circuit_imprinter, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera/autoname/directional/north{ - c_tag = "Incinerator"; - network = list("ss13","engine") - }, -/turf/open/floor/iron/dark, -/area/engine/atmos) "lff" = ( /obj/machinery/light, /obj/effect/turf_decal/guideline/guideline_edge/purple, @@ -34804,6 +35164,21 @@ "lgK" = ( /turf/open/floor/glass/reinforced, /area/chapel/main) +"lhc" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + freerange = 1; + name = "Prison intercom"; + pixel_y = -25; + prison_radio = 1 + }, +/turf/open/floor/iron, +/area/security/prison) "lhn" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/landmark/xeno_spawn, @@ -34926,26 +35301,6 @@ }, /turf/open/floor/iron, /area/chapel/main) -"lkk" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/closet/crate/rcd, -/obj/machinery/door/window/northleft{ - dir = 2; - name = "RCD Storage"; - req_access_txt = "19" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/tech, -/area/ai_monitored/storage/eva) "lkl" = ( /turf/closed/wall/rust, /area/vacant_room/commissary/commissary2) @@ -34996,6 +35351,23 @@ }, /turf/open/floor/iron/dark, /area/chapel/main) +"lky" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Chemistry Desk"; + req_one_access_txt = "5;33" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "chemistry Shutters" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted, +/obj/item/folder/white, +/obj/item/folder/white, +/turf/open/floor/plating, +/area/medical/apothecary) "lkA" = ( /obj/effect/landmark/start/cargo_technician, /obj/structure/cable/yellow{ @@ -35064,6 +35436,18 @@ }, /turf/open/floor/iron/white/side, /area/science/lobby) +"llT" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/structure/sign/painting/library{ + pixel_y = -32 + }, +/obj/machinery/camera/autoname/directional/south{ + c_tag = "Captain's Quarters" + }, +/turf/open/floor/iron, +/area/hallway/primary/starboard) "llV" = ( /obj/machinery/light/small{ dir = 8 @@ -35122,17 +35506,6 @@ }, /turf/open/floor/engine, /area/science/xenobiology) -"lnE" = ( -/obj/machinery/door/poddoor{ - id = "Capoffice"; - name = "Captain Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/captain) "lnQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -35173,31 +35546,6 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/department/security) -"lok" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","security") - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/security/main) -"lon" = ( -/obj/machinery/door/window/eastleft{ - dir = 2; - name = "Bar Door"; - req_access_txt = "25" - }, -/obj/structure/window/reinforced{ - dir = 8; - pixel_y = 1 - }, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/siding/wideplating/dark, -/turf/open/floor/iron/dark, -/area/crew_quarters/bar) "loD" = ( /obj/structure/chair/office/light{ dir = 4 @@ -35295,6 +35643,18 @@ }, /turf/open/floor/iron, /area/engine/engine_room) +"lpV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron/tech, +/area/engine/engine_room) "lqc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -35392,6 +35752,10 @@ }, /turf/open/floor/iron/large, /area/hallway/primary/central) +"lrC" = ( +/obj/machinery/smartfridge, +/turf/open/floor/iron, +/area/crew_quarters/kitchen) "lrK" = ( /obj/effect/turf_decal/stripes/end{ dir = 4 @@ -35498,6 +35862,37 @@ /obj/effect/spawner/room/fivexthree, /turf/open/floor/plating, /area/maintenance/port/central) +"ltj" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced/prison, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/prison) +"ltu" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/closet/crate/rcd, +/obj/machinery/door/window/northleft{ + dir = 2; + name = "RCD Storage"; + req_access_txt = "19" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/tech, +/area/ai_monitored/storage/eva) "lty" = ( /obj/structure/extinguisher_cabinet{ pixel_y = -33 @@ -35520,6 +35915,15 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/qm) +"ltG" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","cargo") + }, +/turf/open/floor/noslip/standard, +/area/quartermaster/storage) "ltK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -35535,20 +35939,6 @@ }, /turf/open/floor/iron, /area/crew_quarters/cryopods) -"ltP" = ( -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/effect/turf_decal/tile/purple/fourcorners/contrasted, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/iron/white, -/area/science/lobby) "ltU" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste{ @@ -35641,6 +36031,27 @@ /obj/machinery/computer/teleporter, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) +"luL" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/quartermaster/exploration_prep) +"luM" = ( +/obj/structure/chair{ + pixel_y = -2 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/prison, +/area/security/prison) +"luO" = ( +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/siding/white, +/turf/open/floor/glass/reinforced, +/area/hallway/primary/central) "luY" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -35711,16 +36122,6 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron, /area/hallway/primary/aft) -"lwH" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/chem_heater{ - pixel_y = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/iron, -/area/medical/apothecary) "lwI" = ( /obj/machinery/holopad, /obj/effect/turf_decal/box, @@ -35780,16 +36181,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark/smooth_large, /area/hallway/primary/central) -"lxm" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/turf/open/floor/prison, -/area/security/prison) "lxn" = ( /obj/structure/closet/crate/coffin, /turf/open/floor/carpet/purple, @@ -35802,6 +36193,29 @@ dir = 1 }, /area/science/research) +"lxS" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wideplating/dark/corner{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north{ + view_range = 12 + }, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central) "lyc" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -35906,15 +36320,6 @@ }, /turf/open/floor/carpet/blue, /area/medical/exam_room) -"lAu" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/machinery/camera/autoname/directional/north{ - c_tag = "Teleporter Room" - }, -/turf/open/floor/iron, -/area/hallway/primary/starboard) "lAP" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -36014,6 +36419,17 @@ }, /turf/open/floor/iron/white, /area/medical/medbay/central) +"lBT" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 6 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/vending/hydroseeds, +/turf/open/floor/iron/dark/smooth_large, +/area/hallway/primary/central) "lBU" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/techstorage/rnd, @@ -36076,6 +36492,35 @@ }, /turf/open/space/basic, /area/solar/starboard/fore) +"lCM" = ( +/obj/item/soap/nanotrasen, +/obj/effect/turf_decal/delivery, +/obj/structure/curtain, +/obj/machinery/shower{ + dir = 8; + name = "emergency shower"; + pixel_x = -5; + pixel_y = -5 + }, +/turf/open/floor/noslip/standard, +/area/security/prison) +"lCR" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted{ + alpha = 180 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/iron, +/area/engine/engineering) "lDa" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -36095,6 +36540,16 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/maintenance/port/aft) +"lDP" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/guideline/guideline_edge/red, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/iron, +/area/security/brig) "lDT" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -36158,22 +36613,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/engine/atmos) -"lEN" = ( -/obj/machinery/shower{ - name = "emergency shower"; - pixel_y = 12 - }, -/obj/effect/turf_decal/stripes/end, -/turf/open/floor/noslip/standard, -/area/science/research) -"lFd" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/item/bikehorn/rubberducky, -/turf/open/floor/noslip/standard, -/area/crew_quarters/toilet) "lFf" = ( /obj/effect/turf_decal/guideline/guideline_in/neutral{ alpha = 255; @@ -36281,6 +36720,13 @@ }, /turf/open/space/basic, /area/solar/starboard/aft) +"lHT" = ( +/obj/effect/turf_decal/tile/black/fourcorners, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/techmaint, +/area/security/prison) "lIa" = ( /obj/machinery/conveyor{ dir = 8; @@ -36328,6 +36774,20 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/tech, /area/engine/atmos) +"lJj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridgewindows"; + name = "Bridge View Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/bridge) "lJz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -36384,26 +36844,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/port) -"lKu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/tank_dispenser{ - pixel_x = -1 - }, -/obj/machinery/requests_console{ - department = "Atmospherics"; - departmentType = 3; - name = "Atmos RC"; - pixel_x = -1; - pixel_y = 30 - }, -/obj/machinery/camera/autoname/directional/north{ - c_tag = "Incinerator"; - network = list("ss13","engine") - }, -/turf/open/floor/iron/dark, -/area/engine/atmos) "lKz" = ( /obj/machinery/newscaster{ pixel_y = 32 @@ -36423,6 +36863,12 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/tech, /area/engine/atmos) +"lKP" = ( +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","engine") + }, +/turf/open/floor/engine/n2o, +/area/engine/atmos) "lKT" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 1 @@ -36500,6 +36946,19 @@ dir = 9 }, /area/medical/sleeper) +"lMh" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/obj/machinery/door/airlock/public/glass{ + name = "visitation Area" + }, +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/closeup, +/turf/open/floor/iron, +/area/security/prison) "lMu" = ( /obj/effect/turf_decal/tile/purple/fourcorners/contrasted, /obj/structure/cable/yellow{ @@ -36525,28 +36984,6 @@ }, /turf/open/floor/iron/sepia, /area/quartermaster/office) -"lMI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/security/prison) "lNa" = ( /obj/structure/disposalpipe/segment{ dir = 2 @@ -36593,10 +37030,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/tech, /area/engine/engine_room) -"lOL" = ( -/obj/machinery/smartfridge/drinks, -/turf/open/floor/iron/cafeteria, -/area/maintenance/port/aft) "lOQ" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 4 @@ -36723,6 +37156,14 @@ }, /turf/open/floor/iron/dark, /area/science/shuttledock) +"lRa" = ( +/obj/structure/chair, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/autoname/directional/north{ + c_tag = "Teleporter Room" + }, +/turf/open/floor/iron/dark, +/area/hallway/secondary/exit/departure_lounge) "lRy" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted, /obj/machinery/atmospherics/components/binary/pump{ @@ -36835,6 +37276,18 @@ }, /turf/open/floor/iron, /area/vacant_room/commissary/commissary1) +"lUg" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/tank_dispenser, +/obj/structure/disposalpipe/sorting/mail/destination/toxins, +/turf/open/floor/iron/dark, +/area/science/mixing) "lUj" = ( /obj/machinery/door/airlock/medical/glass{ id_tag = "GeneticsDoor"; @@ -36876,14 +37329,6 @@ /obj/effect/landmark/blobstart, /turf/open/floor/wood, /area/maintenance/port/aft) -"lUJ" = ( -/obj/machinery/chem_dispenser, -/obj/effect/turf_decal/bot, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/iron, -/area/medical/apothecary) "lUL" = ( /obj/effect/turf_decal/tile/brown/fourcorners/contrasted, /obj/structure/disposalpipe/segment{ @@ -36905,29 +37350,18 @@ /obj/machinery/rnd/server, /turf/open/floor/circuit/telecomms/server, /area/science/server) -"lUZ" = ( -/obj/structure/table, -/obj/item/toy/cards/deck{ - pixel_x = -7; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/britcup{ - pixel_x = -8; - pixel_y = 10 - }, -/obj/item/book/manual/wiki/sopsecurity{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 +"lVm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosroom"; + name = "HoS Room Blast Door" }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 +/obj/structure/cable/yellow{ + icon_state = "0-4" }, -/turf/open/floor/iron/dark, -/area/security/main) +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) "lVx" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ @@ -36954,6 +37388,19 @@ }, /turf/open/floor/iron/grid/steel, /area/medical/sleeper) +"lVE" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/radiation, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","engine") + }, +/turf/open/floor/noslip/standard, +/area/engine/engineering) "lVW" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/yellow/half/contrasted{ @@ -37006,25 +37453,6 @@ }, /turf/open/floor/iron/tech, /area/engine/engine_room) -"lWy" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "radiation Shelter" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/closeup{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron/techmaint, -/area/security/prison/shielded) "lWz" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -37064,6 +37492,10 @@ /obj/machinery/vending/boozeomat/maint, /turf/closed/wall, /area/maintenance/port/aft) +"lXs" = ( +/obj/machinery/suit_storage_unit/security, +/turf/open/floor/iron/dark, +/area/security/brig/dock) "lXA" = ( /obj/structure/table, /obj/machinery/fax/sci, @@ -37071,45 +37503,6 @@ dir = 1 }, /area/science/research) -"lXM" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/disposalpipe/sorting/mail/destination/hos_office{ - dir = 8 - }, -/turf/open/floor/iron, -/area/security/brig) -"lXO" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron/dark, -/area/engine/engine_room) -"lYb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "bridgewindows"; - name = "Bridge View Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/bridge) "lYd" = ( /obj/effect/decal/cleanable/food/flour, /obj/item/reagent_containers/food/condiment/peppermill{ @@ -37131,6 +37524,18 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark/corner, /area/hallway/primary/central) +"lYy" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/champagne{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/stack/cable_coil/random/five{ + pixel_x = 2; + pixel_y = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/dorms) "lYX" = ( /obj/structure/cable/yellow{ icon_state = "2-8" @@ -37175,28 +37580,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/bridge) -"lZd" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/table/wood{ - pixel_y = -6 - }, -/obj/item/clipboard{ - pixel_x = -4 - }, -/obj/item/storage/photo_album{ - pixel_x = 2; - pixel_y = -7 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/carpet/royalblack, -/area/library) "lZe" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/yellow/half/contrasted{ @@ -37226,17 +37609,6 @@ }, /turf/open/floor/iron/dark, /area/security/checkpoint/auxiliary) -"lZI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/turf_decal/tile/black/fourcorners, -/obj/structure/railing{ - dir = 6 - }, -/obj/machinery/hydroponics/constructable, -/turf/open/floor/iron/techmaint, -/area/security/prison) "lZU" = ( /obj/machinery/light{ dir = 4 @@ -37280,6 +37652,33 @@ }, /turf/open/floor/plating, /area/maintenance/port/central) +"mae" = ( +/obj/machinery/status_display/door_timer{ + id = "cell"; + name = "Solitary confinement timer"; + pixel_x = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/iron/freezer, +/area/security/prison) +"maj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/iron/dark, +/area/security/brig) "maw" = ( /obj/item/trash/semki{ pixel_x = 3 @@ -37290,18 +37689,19 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/medical/morgue) -"maS" = ( -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 +"maU" = ( +/obj/effect/landmark/start/randommaint/vip, +/obj/effect/landmark/observer_start, +/obj/machinery/holopad{ + pixel_x = 16; + pixel_y = 16 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 +/obj/item/beacon{ + pixel_x = 16; + pixel_y = 19 }, -/turf/open/floor/iron/dark, -/area/security/brig/dock) +/turf/open/floor/glass/reinforced, +/area/hallway/primary/central) "mbm" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 1 @@ -37442,6 +37842,23 @@ /obj/effect/decal/cleanable/glass, /turf/open/floor/iron, /area/maintenance/department/medical) +"mcz" = ( +/obj/structure/window/reinforced{ + dir = 8; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/light/floor{ + brightness = 15; + bulb_colour = "#FFE4CE"; + bulb_vacuum_brightness = 15; + nightshift_brightness = 10; + nightshift_light_color = "#E6EBFF" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/hallway/primary/central) "mcM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 1 @@ -37471,6 +37888,15 @@ /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark, /area/medical/morgue) +"mdm" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/iron, +/area/science/mixing) "mdu" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -37592,6 +38018,16 @@ }, /turf/open/floor/iron/dark, /area/chapel/main) +"mfL" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/turf/open/floor/prison, +/area/security/prison) "mfP" = ( /obj/structure/railing{ dir = 8 @@ -37660,6 +38096,17 @@ }, /turf/open/floor/iron, /area/engine/engineering) +"mgB" = ( +/obj/structure/closet/bombcloset, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/science/mixing) "mgI" = ( /obj/effect/turf_decal/tile/blue/half{ dir = 4 @@ -37729,20 +38176,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) -"mhP" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/engine/atmos) "mhX" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt/dust, @@ -37758,6 +38191,22 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/engine/atmos) +"mic" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/guideline/guideline_edge/blue{ + color = "#267878"; + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = 21 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/secondary/entry) "miw" = ( /turf/open/floor/engine, /area/science/explab) @@ -37784,11 +38233,28 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/medical/office) -"mjV" = ( -/obj/effect/turf_decal/tile/black/fourcorners, -/obj/effect/landmark/prisonspawn, -/turf/open/floor/iron/techmaint, -/area/security/prison) +"mjY" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/iron, +/area/security/main) "mkd" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -37841,6 +38307,15 @@ /obj/effect/turf_decal/bot, /turf/open/floor/noslip/standard, /area/crew_quarters/toilet) +"mkF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "brigentrance"; + name = "Brig Blast Door" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/security/brig) "mkH" = ( /obj/machinery/camera/autoname/directional/east, /obj/effect/turf_decal/bot, @@ -37940,6 +38415,20 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/carpet/red, /area/crew_quarters/heads/hos) +"mlK" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigentrance"; + name = "Brig Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/brig) "mlN" = ( /obj/machinery/vending/boozeomat, /turf/closed/wall, @@ -37948,12 +38437,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/storage/primary) -"mms" = ( -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/iron, -/area/science/mixing) "mmy" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/neutral/half/contrasted, @@ -38011,25 +38494,6 @@ }, /turf/open/floor/iron, /area/maintenance/department/medical/morgue) -"mnf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosroom"; - name = "HoS Room Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) -"mnm" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/dark, -/area/security/prison) "mnB" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -38040,6 +38504,14 @@ /obj/item/clothing/suit/apron/surgical, /turf/open/floor/iron, /area/medical/surgery) +"mnC" = ( +/obj/machinery/camera/autoname/directional/west{ + c_tag = "Xenobiology Lab - Pen #5"; + network = list("ss13","rd","xeno") + }, +/obj/structure/window/reinforced, +/turf/open/floor/engine, +/area/science/xenobiology) "mnD" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/closed/wall/rust, @@ -38054,6 +38526,18 @@ luminosity = 2 }, /area/security/nuke_storage) +"mnG" = ( +/obj/structure/urinal{ + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/freezer, +/area/security/prison) "mnK" = ( /obj/machinery/light{ dir = 4 @@ -38109,27 +38593,6 @@ "mou" = ( /turf/open/floor/iron/dark, /area/science/misc_lab/range) -"mox" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ - alpha = 180 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "bridgedoors"; - name = "Bridge Access Blast Door" - }, -/obj/structure/sign/departments/minsky/security/command{ - pixel_x = 32 - }, -/turf/open/floor/iron, -/area/bridge) "moJ" = ( /obj/effect/turf_decal/tile/dark_blue/half/contrasted{ alpha = 180; @@ -38185,22 +38648,6 @@ }, /turf/open/floor/iron/techmaint, /area/maintenance/central) -"mpK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/guideline/guideline_edge/blue{ - color = "#267878"; - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = 21 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/secondary/entry) "mpL" = ( /obj/machinery/door/poddoor/shutters{ id = "commissaryshutters3"; @@ -38245,16 +38692,6 @@ }, /turf/open/floor/iron/dark, /area/hallway/primary/fore) -"mqc" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/chair/fancy/comfy{ - color = "#596479"; - dir = 8 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/hallway/primary/central) "mqd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -38492,20 +38929,6 @@ dir = 6 }, /area/science/research) -"mtz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/door/poddoor/preopen{ - id = "cmoprivacy"; - name = "CMO Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) "mtA" = ( /obj/structure/sign/warning/nosmoking/circle, /turf/closed/wall/r_wall, @@ -38586,17 +39009,6 @@ }, /turf/open/space/basic, /area/solar/starboard/aft) -"mut" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/black/fourcorners, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/techmaint, -/area/security/prison) "muC" = ( /obj/structure/railing, /obj/machinery/light/floor{ @@ -38845,20 +39257,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/iron/white, /area/medical/storage) -"mzb" = ( -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/machinery/door/poddoor/preopen{ - id = "cmoprivacy"; - name = "CMO Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) "mzr" = ( /obj/machinery/light/small{ dir = 4 @@ -38903,6 +39301,18 @@ }, /turf/open/floor/iron/dark/corner, /area/hallway/secondary/exit/departure_lounge) +"mzG" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "Chefwindow"; + name = "Chef Window" + }, +/turf/open/floor/iron/white, +/area/crew_quarters/kitchen) "mzS" = ( /obj/machinery/computer/mech_bay_power_console, /obj/machinery/airalarm/directional/north, @@ -39020,6 +39430,20 @@ }, /turf/open/floor/iron/white/side, /area/science/lobby) +"mBx" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/tile/black/fourcorners, +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","prison") + }, +/turf/open/floor/iron/techmaint, +/area/security/prison) "mBz" = ( /obj/machinery/door/airlock/public/glass{ name = "Primary Hallway" @@ -39065,16 +39489,6 @@ }, /turf/open/floor/iron/dark, /area/chapel/office) -"mCL" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - pixel_y = 1 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/hallway/primary/central) "mCQ" = ( /turf/open/floor/iron/white, /area/medical/chemistry) @@ -39120,6 +39534,17 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/tech/grid, /area/engine/gravity_generator) +"mDm" = ( +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark, +/area/security/brig) "mDq" = ( /obj/machinery/holopad{ pixel_x = 16 @@ -39194,26 +39619,6 @@ }, /turf/open/floor/iron/white, /area/medical/chemistry) -"mDW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridgedoors"; - name = "Bridge Access Blast Door" - }, -/turf/open/floor/plating, -/area/bridge) "mDX" = ( /obj/effect/turf_decal/guideline/guideline_in/red{ dir = 4 @@ -39233,16 +39638,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/fore) -"mEi" = ( -/obj/machinery/telecomms/bus/preset_exploration, -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/quartermaster/exploration_prep) "mEt" = ( /obj/machinery/airalarm/directional/east, /obj/effect/turf_decal/guideline/guideline_edge/red{ @@ -39251,6 +39646,19 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/security/brig/dock) +"mEB" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/guideline/guideline_edge/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron, +/area/engine/engineering) "mEI" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 @@ -39383,6 +39791,21 @@ }, /turf/open/floor/catwalk_floor/iron_dark, /area/maintenance/department/medical/morgue) +"mGo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/catwalk_floor, +/area/maintenance/department/engine) "mGp" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -39391,19 +39814,6 @@ }, /turf/open/space/basic, /area/solar/starboard/aft) -"mGt" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/purple/fourcorners/contrasted, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/science/research) "mGv" = ( /obj/effect/turf_decal/tile/red/anticorner/contrasted{ alpha = 180; @@ -39460,6 +39870,26 @@ }, /turf/open/floor/iron/tech, /area/engine/engine_room) +"mGG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/item/kirbyplants/random{ + pixel_y = 6 + }, +/obj/effect/turf_decal/guideline/guideline_half_edge/brown, +/obj/effect/turf_decal/guideline/guideline_half_edge/brown{ + dir = 5 + }, +/obj/effect/turf_decal/guideline/guideline_edge_alt/brown{ + dir = 1 + }, +/obj/effect/turf_decal/guideline/guideline_tri/brown{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/port) "mGL" = ( /obj/machinery/vending/cigarette, /obj/effect/turf_decal/bot, @@ -39558,6 +39988,31 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/hallway/primary/central) +"mIc" = ( +/obj/machinery/button/door{ + id = "Bountydoors"; + name = "Bounty glass doors"; + normaldoorcontrol = 1; + pixel_x = 1; + pixel_y = -26; + req_access_txt = "31" + }, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "QMLoaddoor2"; + name = "Loading Doors"; + pixel_x = 1; + pixel_y = -37; + req_access_txt = "31" + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = -21 + }, +/turf/open/floor/iron/sepia, +/area/quartermaster/office) "mIj" = ( /obj/structure/chair/fancy/sofa/old/left, /turf/open/floor/wood, @@ -39657,14 +40112,17 @@ }, /turf/open/floor/iron/cafeteria, /area/crew_quarters/kitchen) -"mJJ" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 +"mJF" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" }, -/obj/effect/turf_decal/bot, -/obj/structure/closet/secure_closet/evidence, -/turf/open/floor/iron/dark, -/area/security/brig) +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced/prison, +/turf/open/floor/plating, +/area/security/prison) "mJX" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -39749,49 +40207,6 @@ /obj/effect/turf_decal/box, /turf/open/floor/glass/reinforced, /area/chapel/main) -"mKZ" = ( -/obj/machinery/camera/autoname/directional/west{ - c_tag = "Incinerator"; - network = list("ss13","engine") - }, -/obj/machinery/portable_atmospherics/canister/plasma, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/iron, -/area/engine/atmospherics_engine) -"mLg" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/rack, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/tile/black/fourcorners, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/prison_scanner, -/obj/item/prison_scanner, -/obj/item/prison_scanner, -/obj/item/prison_scanner, -/obj/item/prison_scanner, -/obj/machinery/camera/autoname/directional/west{ - network = list("ss13","prison") - }, -/turf/open/floor/iron/techmaint, -/area/security/prison) "mLh" = ( /obj/effect/turf_decal/guideline/guideline_out/brown{ dir = 1 @@ -39885,40 +40300,24 @@ }, /turf/open/floor/wood, /area/crew_quarters/theatre) -"mLU" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small, -/obj/machinery/status_display/door_timer{ - id = "cell"; - name = "Solitary confinement timer"; - pixel_y = 32 - }, -/obj/item/food/donut/apple{ - name = "forbidden toilet donut" +"mMg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 }, -/obj/item/reagent_containers/food/drinks/beer/almost_empty{ - pixel_x = -10; - pixel_y = 17 +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 }, -/turf/open/floor/iron/freezer, -/area/security/prison) -"mMd" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ - alpha = 180 +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/structure/table/reinforced, -/obj/item/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Captain)"; - pixel_x = 1; - pixel_y = -1 +/obj/structure/disposalpipe/segment{ + dir = 10 }, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat/foyer) +/turf/open/floor/iron/sepia, +/area/quartermaster/warehouse) "mMi" = ( /obj/structure/disposalpipe/segment{ dir = 1 @@ -39926,11 +40325,6 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/medical/chemistry) -"mMT" = ( -/obj/structure/sign/departments/holy, -/obj/structure/closet/emcloset, -/turf/closed/wall, -/area/chapel/main) "mMV" = ( /turf/open/floor/iron/dark, /area/bridge) @@ -39990,6 +40384,14 @@ /obj/effect/turf_decal/tile/red/fourcorners/contrasted, /turf/open/floor/prison, /area/security/prison) +"mOp" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/engine/atmos) "mOI" = ( /obj/effect/turf_decal/tile/black/fourcorners, /obj/structure/cable/yellow{ @@ -39998,13 +40400,25 @@ /obj/item/kirbyplants/random, /turf/open/floor/prison, /area/security/prison) -"mOO" = ( +"mOL" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, /obj/structure/cable/yellow{ - icon_state = "0-4" + icon_state = "4-8" }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/brig/dock) +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/main) "mOQ" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 28 @@ -40013,16 +40427,28 @@ dir = 8 }, /area/hallway/primary/central) -"mPQ" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/structure/cable/yellow{ - icon_state = "0-4" +"mPa" = ( +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/structure/cable/yellow{ - icon_state = "0-8" +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 1 }, -/turf/open/floor/plating, -/area/security/brig) +/turf/open/floor/iron, +/area/medical/medbay/lobby) +"mQc" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/iron/white, +/area/crew_quarters/kitchen) "mQz" = ( /obj/structure/disposalpipe/segment{ dir = 1 @@ -40081,6 +40507,18 @@ /obj/machinery/camera/autoname/directional/south, /turf/open/floor/iron/dark, /area/chapel/main) +"mRa" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/recharge_station, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","rd") + }, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) "mRk" = ( /turf/closed/wall, /area/science/server) @@ -40107,19 +40545,6 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat/foyer) -"mRC" = ( -/obj/effect/turf_decal/tile/dark_red/half/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/obj/item/toy/plush/carpplushie, -/obj/structure/sign/poster/contraband{ - pixel_x = 32 - }, -/turf/open/floor/prison, -/area/security/prison) "mRK" = ( /obj/structure/chair{ dir = 1 @@ -40232,6 +40657,20 @@ /obj/effect/turf_decal/box, /turf/open/floor/iron, /area/crew_quarters/heads/hor) +"mTs" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engidesk"; + name = "engineering Security Door" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/northright{ + dir = 2; + name = "Engi Desk"; + req_one_access_txt = "32;19" + }, +/obj/machinery/modular_fabricator/autolathe, +/turf/open/floor/iron/dark, +/area/engine/engineering) "mTu" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 @@ -40268,6 +40707,9 @@ dir = 1 }, /area/hallway/primary/central) +"mTK" = ( +/turf/closed/wall, +/area/security/prison) "mTL" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 1 @@ -40312,16 +40754,6 @@ }, /turf/open/floor/prison, /area/security/prison) -"mUA" = ( -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/structure/closet/secure_closet/genpop, -/obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/iron/dark, -/area/security/prison) "mUD" = ( /obj/effect/turf_decal/tile/dark_green/half/contrasted{ dir = 8 @@ -40346,26 +40778,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/starboard) -"mUX" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor/westleft{ - name = "laser Guns"; - req_access_txt = "3" - }, -/obj/item/gun/energy/laser{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/gun/energy/laser{ - pixel_x = 2; - pixel_y = 1 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/ai_monitored/security/armory) "mVo" = ( /obj/structure/table, /obj/machinery/button/door{ @@ -40391,17 +40803,6 @@ }, /turf/open/floor/iron/white, /area/crew_quarters/kitchen) -"mVF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopshutter"; - name = "Privacy Shutters" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hop) "mVN" = ( /turf/open/floor/plating, /area/maintenance/central) @@ -40468,6 +40869,15 @@ /obj/effect/turf_decal/stripes/closeup, /turf/open/floor/iron, /area/security/brig) +"mWB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "Engidesk"; + name = "engineering Security Door" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/engine/break_room) "mWE" = ( /obj/effect/turf_decal/tile/yellow/fourcorners/contrasted{ alpha = 180 @@ -40501,6 +40911,25 @@ /obj/effect/spawner/lootdrop/glowstick/lit, /turf/open/floor/catwalk_floor, /area/maintenance/port/central) +"mWT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","rd","xeno") + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/iron/white, +/area/science/xenobiology) "mXa" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 6 @@ -40543,6 +40972,16 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/iron, /area/crew_quarters/dorms) +"mXk" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron/dark, +/area/engine/engine_room) "mXr" = ( /obj/machinery/door/airlock/grunge{ name = "Cabin 1" @@ -40599,29 +41038,33 @@ }, /turf/open/floor/iron, /area/crew_quarters/dorms) -"mYF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/effect/turf_decal/guideline/guideline_half_edge/red{ - dir = 4 - }, -/obj/effect/turf_decal/guideline/guideline_edge_alt/red{ - dir = 8 +"mYp" = ( +/obj/structure/table/wood, +/obj/item/kirbyplants/random{ + pixel_y = 18 }, -/obj/effect/turf_decal/guideline/guideline_half_edge/red{ - dir = 10 +/obj/item/candle/infinite{ + pixel_x = 1; + pixel_y = 2 }, -/obj/effect/turf_decal/guideline/guideline_tri/red, -/obj/structure/disposalpipe/segment{ - dir = 10 +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/carpet/purple, +/area/chapel/main) +"mYz" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ + alpha = 180 }, -/obj/structure/cable/yellow{ - icon_state = "0-2" +/obj/structure/table/reinforced, +/obj/item/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Captain)"; + pixel_x = 1; + pixel_y = -1 }, -/turf/open/floor/iron, -/area/security/brig) +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/aisat/foyer) "mYL" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -40662,6 +41105,13 @@ /obj/effect/turf_decal/guideline/guideline_in/yellow, /turf/open/floor/iron, /area/engine/engineering) +"mZh" = ( +/obj/effect/turf_decal/tile/red/fourcorners/contrasted, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/prison, +/area/security/prison) "mZi" = ( /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) @@ -40695,13 +41145,6 @@ dir = 8 }, /area/medical/medbay/central) -"nac" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/security/main) "nae" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -40828,14 +41271,20 @@ /obj/structure/bookcase/random/nonfiction, /turf/open/floor/wood, /area/library) -"ncP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 +"ncX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/black/fourcorners, -/turf/open/floor/iron/techmaint, -/area/security/prison) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/engine/atmos) "nds" = ( /obj/structure/easel, /obj/item/canvas/twentythree_nineteen, @@ -40884,38 +41333,6 @@ /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/engine, /area/science/mixing/chamber) -"ndM" = ( -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor{ - id = "AIwindows"; - name = "AI View Blast Door" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"ndR" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - alpha = 180 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/guideline/guideline_in/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/engine/engineering) "ndT" = ( /obj/effect/turf_decal/tile/purple/fourcorners/contrasted, /turf/open/floor/iron, @@ -40962,29 +41379,22 @@ dir = 1 }, /area/hallway/secondary/exit/departure_lounge) -"neH" = ( -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/guideline/guideline_in/blue, -/obj/machinery/light_switch{ - pixel_x = 21; - pixel_y = -21 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/light{ - bulb_colour = "#22bfa2"; - bulb_vacuum_colour = "#22bfa2"; - dir = 4; - nightshift_light_color = "#22bfa2" - }, -/turf/open/floor/iron/white, -/area/medical/medbay/lobby) "neI" = ( /turf/closed/wall, /area/maintenance/solars/port/aft) +"neJ" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/instrument/piano_synth, +/obj/machinery/light_switch{ + pixel_x = -23; + pixel_y = 1 + }, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/wood, +/area/library) "neL" = ( /obj/effect/turf_decal/bot, /obj/structure/disposalpipe/segment{ @@ -41173,6 +41583,26 @@ }, /turf/open/floor/iron, /area/engine/engine_room) +"nhB" = ( +/obj/machinery/door/airlock/command/glass{ + name = "EVA"; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopshutter"; + name = "Privacy Shutters" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) "nhC" = ( /obj/structure/railing{ dir = 4 @@ -41187,18 +41617,6 @@ dir = 8 }, /area/hallway/primary/central) -"nhH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "bridgewindows"; - name = "Bridge View Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/bridge) "nhQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -41209,24 +41627,6 @@ dir = 8 }, /area/science/research) -"nic" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/southright{ - name = "evidence Chute"; - req_access_txt = "1" - }, -/obj/machinery/disposal/deliveryChute, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/security/prison) "nif" = ( /turf/closed/wall/r_wall, /area/science/test_area) @@ -41254,21 +41654,6 @@ }, /turf/open/floor/iron/tech, /area/engine/engine_room) -"niH" = ( -/obj/structure/chair/fancy/sofa/old/right, -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/obj/item/radio/intercom{ - pixel_x = -33; - pixel_y = -1 - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/light_switch{ - pixel_x = -20 - }, -/turf/open/floor/carpet/green, -/area/security/main) "niP" = ( /obj/machinery/portable_atmospherics/pump, /obj/effect/turf_decal/bot{ @@ -41317,17 +41702,6 @@ /obj/structure/sign/warning/nosmoking/circle, /turf/closed/wall, /area/chapel/office) -"njC" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/security/main) "njD" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -41351,35 +41725,48 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/hallway/primary/central) -"njS" = ( -/obj/machinery/smartfridge/chemistry/virology/preloaded, -/obj/machinery/button/door{ - id = "quarantineshutters"; - name = "Quarantine Lockdown"; - pixel_x = 27; - pixel_y = 8; - req_access_txt = "39" - }, -/turf/open/floor/iron/grid/steel, -/area/medical/virology) -"nke" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/guideline/guideline_edge/red, -/obj/effect/turf_decal/loading_area{ - dir = 1 +"nkj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/ash/large{ + pixel_x = -3; + pixel_y = -8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/turf/open/floor/iron, -/area/security/brig) +/obj/item/stack/sheet/wood/ten, +/turf/open/floor/wood, +/area/library) "nkm" = ( /turf/open/floor/iron/white/side{ dir = 1 }, /area/medical/surgery) +"nkr" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "Engidesk"; + name = "engineering Security Door" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Engi Desk"; + req_one_access_txt = "32;19" + }, +/obj/item/paper_bin{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/pen{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/structure/desk_bell{ + pixel_x = -6 + }, +/turf/open/floor/iron/dark, +/area/engine/engineering) "nku" = ( /obj/machinery/door/poddoor/incinerator_toxmix, /turf/open/floor/engine/vacuum, @@ -41389,28 +41776,6 @@ burnt = 1 }, /area/maintenance/port/central) -"nld" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/iron, -/area/security/brig) "nlk" = ( /obj/item/storage/secure/safe/caps_spare{ pixel_x = 5; @@ -41428,6 +41793,25 @@ }, /turf/open/floor/iron, /area/bridge) +"nll" = ( +/obj/structure/table/reinforced, +/obj/item/rcl/pre_loaded, +/obj/item/rcl/pre_loaded, +/obj/item/storage/box/lights/mixed{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","engine") + }, +/turf/open/floor/iron/dark, +/area/engine/engine_room) "nlm" = ( /turf/closed/wall/r_wall, /area/security/detectives_office) @@ -41510,17 +41894,6 @@ }, /turf/open/floor/iron/dark, /area/science/nanite) -"nlY" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/security/main) "nmf" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -41539,6 +41912,17 @@ }, /turf/open/floor/iron, /area/medical/genetics/cloning) +"nmm" = ( +/obj/structure/sign/poster/random{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/black/fourcorners, +/obj/structure/reagent_dispensers/watertank/high, +/turf/open/floor/iron/techmaint, +/area/security/prison) "nmq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 10 @@ -41554,17 +41938,6 @@ }, /turf/open/floor/iron, /area/bridge) -"nmD" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/science/mixing) "nmM" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -41587,24 +41960,6 @@ }, /turf/open/floor/iron/dark, /area/engine/atmos) -"nmZ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/security/prison) "nnb" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -41615,13 +41970,6 @@ }, /turf/open/floor/iron/grid/steel, /area/hydroponics) -"nnk" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/brig) "nnn" = ( /obj/structure/chair{ dir = 1 @@ -41724,24 +42072,6 @@ }, /turf/open/floor/iron/white, /area/medical/apothecary) -"noo" = ( -/obj/effect/turf_decal/tile/blue/half{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","medbay") - }, -/obj/machinery/airalarm/directional/north{ - pixel_y = 28 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron/white, -/area/medical/office) "nou" = ( /obj/effect/turf_decal/tile/dark_green/fourcorners/contrasted, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ @@ -41756,21 +42086,6 @@ }, /turf/open/space/basic, /area/space/nearstation) -"npB" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - id_tag = "commissarydoor"; - name = "Maintenance Hatch"; - req_access_txt = "41" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/quartermaster/qm) "npJ" = ( /obj/machinery/atmospherics/components/unary/thermomachine/heater/on{ dir = 4; @@ -41832,17 +42147,6 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat/foyer) -"nrc" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/obj/machinery/computer/security/telescreen/interrogation{ - dir = 4; - pixel_x = -25 - }, -/turf/open/floor/iron, -/area/security/brig) "nrd" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 @@ -41988,6 +42292,27 @@ }, /turf/open/space/basic, /area/solar/starboard/fore) +"nso" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/main) "nss" = ( /obj/effect/turf_decal/tile/dark_red/half/contrasted{ alpha = 180; @@ -42036,25 +42361,6 @@ }, /turf/open/space/basic, /area/solar/port/aft) -"nsY" = ( -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow, -/obj/machinery/door/airlock/highsecurity{ - name = "AI Core"; - req_access_txt = "65" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/poddoor{ - id = "AIwindows"; - name = "AI View Blast Door" - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat/foyer) "ntc" = ( /turf/closed/wall, /area/security/courtroom) @@ -42183,6 +42489,17 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/iron, /area/science/storage) +"nvc" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/security/main) "nvg" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /obj/effect/decal/cleanable/blood/footprints, @@ -42201,6 +42518,19 @@ }, /turf/open/floor/iron/white, /area/science/research) +"nwc" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + pixel_y = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/hallway/primary/central) "nwf" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -42377,6 +42707,23 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/sorting) +"nyQ" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/iron/dark, +/area/vacant_room/commissary/commissary2) +"nzj" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/iron/dark, +/area/security/brig) "nzy" = ( /obj/effect/turf_decal/tile/dark_green/anticorner/contrasted, /obj/effect/decal/cleanable/dirt, @@ -42423,29 +42770,23 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) -"nAd" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/siding/wideplating/dark/corner{ - dir = 1 - }, -/obj/machinery/camera/autoname/directional/north{ - view_range = 12 - }, -/obj/machinery/status_display/evac{ +"nAg" = ( +/obj/machinery/vending/wallmed{ + pixel_x = -1; pixel_y = 32 }, -/obj/structure/cable/yellow{ - icon_state = "2-4" +/obj/structure/table/glass, +/obj/item/book/manual/wiki/chemistry{ + pixel_x = -4; + pixel_y = 4 }, -/turf/open/floor/iron/dark/corner{ - dir = 1 +/obj/item/book/manual/wiki/plumbing, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","medbay") }, -/area/hallway/primary/central) +/turf/open/floor/iron, +/area/medical/chemistry) "nAr" = ( /obj/machinery/vending/boozeomat, /turf/closed/wall, @@ -42464,22 +42805,6 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/carpet/royalblack, /area/lawoffice) -"nAz" = ( -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/closet/crate/wooden/toy, -/obj/machinery/camera/autoname/directional/north, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/machinery/light_switch{ - pixel_x = 12; - pixel_y = 22 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre/backstage) "nAB" = ( /obj/effect/turf_decal/delivery, /obj/item/kirbyplants/random, @@ -42514,10 +42839,6 @@ }, /turf/open/floor/iron/dark, /area/engine/storage) -"nAS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/iron/dark, -/area/security/brig/dock) "nBc" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -42527,6 +42848,24 @@ }, /turf/open/floor/iron/dark, /area/engine/engine_room) +"nBh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "quarantineshutters"; + name = "Isolation Shutters" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/medical/virology) "nBj" = ( /obj/structure/lattice/catwalk, /turf/open/space/basic, @@ -42564,6 +42903,17 @@ /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/department/security) +"nBW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "quarantineshutters"; + name = "Isolation Shutters" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/medical/virology) "nBY" = ( /mob/living/basic/mothroach, /obj/item/flashlight/lantern/heirloom_moth{ @@ -42669,18 +43019,18 @@ }, /turf/open/floor/plating, /area/maintenance/department/medical/morgue) -"nDt" = ( -/obj/structure/window/reinforced/spawner{ +"nDy" = ( +/obj/structure/window/reinforced{ dir = 1 }, -/obj/structure/window/reinforced/spawner, -/obj/structure/transit_tube, -/obj/machinery/door/poddoor{ - id = "AIwindows"; - name = "AI View Blast Door" +/obj/structure/window/reinforced{ + dir = 8; + pixel_y = 1 }, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat/foyer) +/obj/effect/turf_decal/bot, +/obj/machinery/vending/snack/blue, +/turf/open/floor/iron/dark/smooth_large, +/area/hallway/primary/central) "nDD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -42693,6 +43043,20 @@ /obj/machinery/light/floor, /turf/open/floor/iron/tech, /area/engine/atmos) +"nDR" = ( +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/table, +/obj/machinery/recharger{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/book/manual/wiki/sopsecurity{ + pixel_x = 6 + }, +/turf/open/floor/iron/dark, +/area/security/main) "nDV" = ( /obj/machinery/suit_storage_unit/engine, /obj/effect/turf_decal/bot, @@ -42701,6 +43065,29 @@ }, /turf/open/floor/iron/dark, /area/engine/storage) +"nEb" = ( +/turf/closed/wall/r_wall, +/area/security/brig/dock) +"nEn" = ( +/obj/item/kirbyplants{ + pixel_x = 19; + pixel_y = 13 + }, +/obj/effect/spawner/lootdrop/donkpockets{ + pixel_y = 6 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -31 + }, +/obj/structure/table/wood, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/security/main) "nEq" = ( /obj/structure/chair/wood, /obj/effect/landmark/start/randommaint/vip, @@ -42890,6 +43277,22 @@ }, /turf/open/floor/carpet/blue, /area/bridge/meeting_room) +"nHb" = ( +/obj/structure/sign/departments/minsky/security/security, +/turf/closed/wall/r_wall, +/area/security/prison) +"nHc" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable/yellow, +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/turf/open/floor/iron/dark, +/area/security/main) "nHw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 10 @@ -42906,20 +43309,6 @@ }, /turf/open/floor/plating, /area/ai_monitored/storage/satellite) -"nHE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/quartermaster/office) "nHN" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -42963,6 +43352,16 @@ }, /turf/open/floor/iron/white, /area/science/research) +"nIm" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/south{ + c_tag = "MiniSat Core Hallway 2"; + network = list("minisat") + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/aisat_interior) "nIs" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted, /obj/machinery/airalarm/directional/east, @@ -42984,6 +43383,24 @@ }, /turf/open/floor/carpet/royalblue, /area/crew_quarters/heads/chief) +"nIS" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/turf/open/floor/iron, +/area/medical/apothecary) +"nIW" = ( +/obj/machinery/status_display/door_timer{ + id = "cell"; + name = "Solitary confinement timer"; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/turf/open/floor/prison, +/area/security/prison) "nJb" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt/dust, @@ -43017,6 +43434,20 @@ /obj/effect/spawner/lootdrop/maintenance/two, /turf/open/floor/plating, /area/maintenance/port/central) +"nJK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopshutter"; + name = "Privacy Shutters" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/department/bridge) "nJT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -43045,39 +43476,40 @@ /obj/effect/turf_decal/stripes/corner, /turf/open/floor/iron/dark, /area/engine/storage) -"nKF" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/security/brig) "nLc" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 4 }, /turf/open/floor/iron/dark, /area/security/execution/education) -"nLs" = ( -/obj/structure/cable{ - icon_state = "0-8" +"nLi" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/northright{ + dir = 2; + name = "Chemistry Desk"; + req_one_access_txt = "5;33" }, -/obj/structure/cable{ - icon_state = "0-4" +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "chemistry Shutters" }, -/obj/machinery/power/compressor{ - comp_id = "incineratorturbine"; - dir = 8; - luminosity = 2 +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted, +/obj/structure/desk_bell{ + pixel_x = -8 }, -/obj/machinery/camera/autoname/directional/north{ - c_tag = "Turbine Chamber"; - network = list("turbine") +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/item/paper_bin{ + pixel_x = 7; + pixel_y = 2 }, -/turf/open/floor/engine/vacuum, -/area/engine/atmospherics_engine) +/obj/item/pen{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/plating, +/area/medical/apothecary) "nLv" = ( /obj/structure/sign/warning/nosmoking/circle, /turf/closed/wall/r_wall, @@ -43103,44 +43535,6 @@ /obj/effect/decal/cleanable/vomit/old, /turf/open/floor/carpet, /area/library) -"nLZ" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - alpha = 180; - dir = 8 - }, -/obj/effect/turf_decal/guideline/guideline_in/yellow, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Foyer"; - req_one_access_txt = "32" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Engidesk"; - name = "engineering Security Door" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron, -/area/engine/break_room) "nMj" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -43198,15 +43592,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/ai_monitored/security/armory) -"nNz" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/iron, -/area/science/mixing) "nNC" = ( /obj/effect/turf_decal/tile/dark_green/half/contrasted{ dir = 1 @@ -43222,20 +43607,18 @@ }, /turf/open/floor/iron, /area/hydroponics) +"nNI" = ( +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/hallway/primary/central) "nNP" = ( /obj/effect/turf_decal/tile/yellow/fourcorners/contrasted, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/maintenance/department/engine) -"nNR" = ( -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","engine") - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/engine/supermatter) "nNV" = ( /obj/machinery/light/small{ dir = 8 @@ -43252,17 +43635,6 @@ }, /turf/open/floor/iron/dark, /area/engine/engine_room) -"nOh" = ( -/obj/structure/railing{ - dir = 9 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/fax/cargo, -/turf/open/floor/iron/dark, -/area/quartermaster/office) "nOl" = ( /obj/effect/turf_decal/tile/neutral/half{ dir = 1 @@ -43426,31 +43798,6 @@ }, /turf/open/floor/iron/white, /area/medical/sleeper) -"nQH" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted{ - alpha = 180 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/open/floor/iron, -/area/engine/engineering) "nQL" = ( /obj/effect/decal/cleanable/blood/old, /turf/open/floor/carpet/grimy, @@ -43487,6 +43834,28 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/maintenance/department/science) +"nRm" = ( +/obj/machinery/door/airlock/external{ + name = "Security External Airlock"; + req_access_txt = "1" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/closeup{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/security/brig/dock) "nRy" = ( /obj/structure/disposalpipe/segment{ dir = 8 @@ -43550,6 +43919,17 @@ "nSh" = ( /turf/open/floor/iron/tech, /area/engine/engine_room) +"nSi" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "quarantineshutters"; + name = "Isolation Shutters" + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/grid/steel, +/area/medical/virology) "nSr" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ alpha = 180; @@ -43619,6 +43999,48 @@ }, /turf/open/floor/iron/dark, /area/science/mixing) +"nUb" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + base_state = "rightsecure"; + dir = 4; + icon_state = "rightsecure"; + name = "Head of Personnel's Paperwork Door"; + req_access_txt = "57" + }, +/obj/machinery/door/window/northleft{ + dir = 8; + name = "Paperwork Window" + }, +/obj/item/pen{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/item/pen{ + pixel_x = 10; + pixel_y = 1 + }, +/obj/item/pen{ + pixel_x = 8; + pixel_y = -3 + }, +/obj/item/paper{ + pixel_x = -6 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/desk_bell/speed_demon, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopshutter"; + name = "Privacy Shutters" + }, +/turf/open/floor/iron, +/area/crew_quarters/heads/hop) "nUm" = ( /obj/structure/bed/roller, /obj/machinery/door/window/eastleft{ @@ -43628,6 +44050,26 @@ }, /turf/open/floor/iron/grid/steel, /area/medical/virology) +"nUo" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/iron/dark, +/area/bridge) +"nUu" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced, +/turf/open/floor/iron/dark/smooth_large, +/area/hallway/primary/central) "nUC" = ( /obj/machinery/light/floor{ pixel_y = 16 @@ -43657,20 +44099,6 @@ "nUU" = ( /turf/open/floor/wood, /area/security/courtroom) -"nVz" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/donkpockets{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/food/mint, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "Chefwindow"; - name = "Chef Window" - }, -/turf/open/floor/iron/white, -/area/crew_quarters/kitchen) "nVB" = ( /obj/machinery/atmospherics/pipe/layer_manifold, /obj/structure/table/reinforced, @@ -43716,6 +44144,17 @@ }, /turf/open/floor/engine, /area/science/xenobiology) +"nWo" = ( +/obj/machinery/door/morgue{ + name = "Mass Driver Room"; + req_access_txt = "27" + }, +/obj/machinery/light_switch{ + pixel_x = -21; + pixel_y = 1 + }, +/turf/open/floor/carpet/purple, +/area/chapel/main) "nWv" = ( /obj/structure/closet/secure_closet/personal, /turf/open/floor/plating, @@ -43732,23 +44171,6 @@ /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2, /turf/open/floor/iron/white, /area/science/research) -"nWX" = ( -/obj/structure/bed/roller, -/obj/machinery/door/window/eastleft{ - dir = 1; - name = "Quarantine Pen B"; - req_access_txt = "39" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_x = 1; - pixel_y = -33 - }, -/turf/open/floor/iron/grid/steel, -/area/medical/virology) "nXb" = ( /obj/structure/chair, /obj/effect/turf_decal/stripes/line, @@ -43780,17 +44202,6 @@ }, /turf/open/floor/iron/grid/steel, /area/hydroponics) -"nXu" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/curtain/directional{ - dir = 4 - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/quartermaster/qm) "nXK" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 1 @@ -43826,6 +44237,17 @@ "nXU" = ( /turf/closed/wall, /area/hallway/secondary/exit/departure_lounge) +"nXW" = ( +/obj/machinery/door/poddoor{ + id = "Capoffice"; + name = "Captain Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/captain) "nYc" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -43835,6 +44257,40 @@ burnt = 1 }, /area/maintenance/port/central) +"nYl" = ( +/obj/structure/table/reinforced, +/obj/machinery/light_switch{ + pixel_x = -8; + pixel_y = -21 + }, +/obj/item/storage/lockbox/loyalty, +/obj/machinery/door/window/brigdoor/westleft{ + name = "mind Shields"; + req_access_txt = "3" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/clothing/suit/armor/laserproof, +/turf/open/floor/iron, +/area/ai_monitored/security/armory) +"nYt" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted{ + alpha = 180 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/open/floor/iron, +/area/engine/engineering) "nYu" = ( /obj/structure/chair/fancy/sofa/old/left{ color = "#742925"; @@ -43848,18 +44304,6 @@ }, /turf/open/floor/carpet/red, /area/crew_quarters/cafeteria) -"nYw" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/curtain, -/obj/machinery/shower{ - dir = 8; - name = "emergency shower"; - pixel_x = -5; - pixel_y = -5 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/noslip/standard, -/area/security/prison) "nYz" = ( /obj/effect/turf_decal/stripes/end{ dir = 4 @@ -43867,38 +44311,12 @@ /obj/machinery/pipedispenser, /turf/open/floor/iron/dark, /area/engine/atmos) -"nYN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 9 - }, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_y = 29 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/carpet/orange, -/area/quartermaster/qm) -"nZj" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/light{ +"nYQ" = ( +/obj/structure/railing{ dir = 1 }, -/mob/living/carbon/monkey, -/turf/open/floor/vault, -/area/medical/genetics) +/turf/open/floor/iron/sepia, +/area/quartermaster/office) "nZw" = ( /obj/machinery/portable_atmospherics/scrubber/huge, /obj/machinery/firealarm/directional/east, @@ -43928,13 +44346,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) -"oaw" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/decal/cleanable/xenoblood/xsplatter, -/turf/open/floor/engine, -/area/science/xenobiology) "oaA" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -43948,18 +44359,6 @@ }, /turf/open/floor/iron, /area/science/xenobiology) -"oaL" = ( -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable/yellow, -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/turf/open/floor/iron/dark, -/area/security/main) "oaO" = ( /obj/structure/disposalpipe/segment{ dir = 2 @@ -43984,6 +44383,15 @@ /obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/maintenance/port/aft) +"oaY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "quarantineshutters"; + name = "Isolation Shutters" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/medical/virology) "oaZ" = ( /obj/machinery/computer/telecomms/monitor, /obj/effect/turf_decal/stripes/line, @@ -44005,6 +44413,38 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/ridged/steel, /area/crew_quarters/heads/hos) +"obd" = ( +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/vending/cola, +/turf/open/floor/iron/dark/smooth_large, +/area/hallway/primary/central) +"obe" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrign"; + name = "Brig"; + req_one_access_txt = "63;38" + }, +/obj/machinery/door/poddoor/preopen{ + id = "brigentrance"; + name = "Brig Blast Door" + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/closeup, +/turf/open/floor/iron, +/area/security/brig) "obj" = ( /obj/machinery/portable_atmospherics/pump, /obj/item/radio/intercom{ @@ -44023,6 +44463,12 @@ }, /turf/open/floor/catwalk_floor, /area/maintenance/department/medical/morgue) +"obU" = ( +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","engine") + }, +/turf/open/floor/engine/o2, +/area/engine/atmos) "ocl" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -44077,13 +44523,6 @@ /obj/structure/railing, /turf/open/space/basic, /area/space) -"odp" = ( -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/hallway/primary/central) "odu" = ( /obj/structure/disposalpipe/segment{ dir = 1 @@ -44114,15 +44553,6 @@ /obj/structure/mecha_wreckage/seraph, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) -"odV" = ( -/obj/machinery/door/poddoor/preopen{ - id = "detectivewindows"; - name = "Detective Privacy Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/security/detectives_office) "oee" = ( /obj/machinery/door/airlock/research/glass{ id_tag = "RoboFoyer"; @@ -44173,28 +44603,22 @@ /obj/effect/landmark/start/research_director, /turf/open/floor/carpet/purple, /area/crew_quarters/heads/hor) -"oeB" = ( -/obj/machinery/computer/pod/old{ - density = 0; - icon = 'icons/obj/airlock_machines.dmi'; - icon_state = "airlock_control_standby"; - id = "chapelgun"; - name = "Mass Driver Controller"; - pixel_y = 32 - }, -/obj/structure/table/wood/fancy, -/obj/item/food/grown/flower/harebell{ - pixel_y = 3 +"oeC" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable/yellow{ + icon_state = "1-4" }, -/obj/item/candle/infinite{ - pixel_x = -8; - pixel_y = 1 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 10 + dir = 4 }, -/turf/open/floor/iron/dark, -/area/chapel/main) +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/iron, +/area/science/misc_lab) "oeJ" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/guideline/guideline_edge/purple{ @@ -44216,13 +44640,6 @@ /obj/machinery/meter, /turf/open/floor/iron/tech, /area/engine/engine_room) -"oeM" = ( -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/turf/open/floor/glass/reinforced, -/area/hallway/primary/central) "oeZ" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ alpha = 180 @@ -44237,18 +44654,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) -"ofr" = ( -/obj/machinery/camera/autoname/directional/east{ - network = list("ss13","security") - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/iron/dark, -/area/security/brig) "ofC" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/stripes/line{ @@ -44259,6 +44664,15 @@ }, /turf/open/floor/iron/dark, /area/engine/engine_room) +"ofG" = ( +/obj/item/toy/plush/flushed, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark, +/area/hallway/secondary/entry) "ofJ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 @@ -44314,6 +44728,17 @@ /obj/effect/turf_decal/caution/stand_clear, /turf/open/floor/prison, /area/security/prison) +"ogp" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/iron/dark, +/area/security/brig) "ogs" = ( /obj/effect/turf_decal/guideline/guideline_in/blue{ dir = 8 @@ -44456,18 +44881,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/port/aft) -"oiV" = ( -/obj/item/kirbyplants{ - icon_state = "plant-18"; - pixel_x = 16; - pixel_y = -4 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/table/wood, -/turf/open/floor/carpet/red, -/area/crew_quarters/cafeteria) "oiZ" = ( /obj/machinery/shower{ dir = 4 @@ -44530,13 +44943,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/port) -"ojN" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/suit_storage_unit/exploration, -/turf/open/floor/iron/dark, -/area/quartermaster/exploration_prep) "okb" = ( /obj/effect/turf_decal/bot, /obj/machinery/portable_atmospherics/pump, @@ -44574,13 +44980,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/bridge) -"olf" = ( -/obj/machinery/camera/autoname/directional/west{ - c_tag = "Xenobiology Lab - Pen #6"; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) "olk" = ( /obj/structure/table, /obj/item/storage/backpack/duffelbag/mining_conscript{ @@ -44612,6 +45011,17 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/solars/port/aft) +"olF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/curtain/directional{ + dir = 4 + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/quartermaster/qm) "olH" = ( /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 4 @@ -44682,17 +45092,6 @@ }, /turf/open/floor/iron/cafeteria, /area/crew_quarters/kitchen) -"omT" = ( -/obj/machinery/door/poddoor/preopen{ - id = "hosroom"; - name = "HoS Room Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) "omU" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ @@ -44700,30 +45099,6 @@ }, /turf/open/space/basic, /area/solar/starboard/aft) -"onv" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/engine, -/area/science/xenobiology) -"onU" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","security") - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) "onV" = ( /obj/structure/chair/fancy/comfy{ buildstackamount = 0; @@ -44741,6 +45116,23 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) +"ooz" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/security/main) +"ooD" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/main) "ooH" = ( /obj/effect/turf_decal/tile/neutral, /obj/machinery/door/firedoor, @@ -44805,6 +45197,28 @@ }, /turf/open/floor/iron, /area/medical/cryo) +"ops" = ( +/obj/machinery/smartfridge/sci{ + initial_contents = list(/obj/item/stock_parts/capacitor = 2, /obj/item/stock_parts/manipulator = 2, /obj/item/stock_parts/micro_laser = 2, /obj/item/stock_parts/matter_bin = 2, /obj/item/stock_parts/scanning_module = 2); + name = "Science vender" + }, +/turf/open/floor/iron, +/area/science/lab) +"opy" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/guideline/guideline_in/purple{ + dir = 1 + }, +/obj/effect/turf_decal/guideline/guideline_edge/brown{ + dir = 4 + }, +/obj/structure/disposalpipe/sorting/unsorted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/port) "opK" = ( /obj/structure/window/reinforced{ dir = 1 @@ -44826,32 +45240,6 @@ "opQ" = ( /turf/open/floor/iron/dark, /area/chapel/main) -"opS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/trinary/filter/critical{ - dir = 4; - filter_type = "n2" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron/tech, -/area/engine/engine_room) -"opU" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Cooling Loop to Gas" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/iron/tech, -/area/engine/engine_room) "oqg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -44875,6 +45263,20 @@ /obj/structure/cable/yellow, /turf/open/floor/plating, /area/science/robotics) +"oqv" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","medbay"); + view_range = 10 + }, +/obj/structure/sink{ + dir = 1; + pixel_y = 28 + }, +/turf/open/floor/iron, +/area/medical/sleeper) "oqK" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ @@ -44943,37 +45345,6 @@ }, /turf/open/floor/iron/tech, /area/engine/atmos) -"osa" = ( -/obj/structure/table/reinforced, -/obj/item/gun/energy/ionrifle{ - pixel_x = -1; - pixel_y = 10 - }, -/obj/item/gun/energy/temperature/security{ - pixel_y = 5 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/brigdoor/westleft{ - name = "specialized Weapons"; - req_access_txt = "3" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/item/gun/grenadelauncher/security, -/turf/open/floor/iron, -/area/ai_monitored/security/armory) -"osf" = ( -/obj/machinery/vending/wardrobe/robo_wardrobe, -/obj/effect/turf_decal/stripes/line, -/obj/item/radio/intercom{ - pixel_y = 29 - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","rd") - }, -/turf/open/floor/iron/dark, -/area/science/robotics) "osm" = ( /obj/effect/turf_decal/tile/purple/fourcorners/contrasted, /obj/effect/decal/cleanable/dirt, @@ -45220,42 +45591,20 @@ /obj/structure/sign/departments/minsky/security/evac, /turf/closed/wall, /area/hallway/secondary/exit/departure_lounge) -"ouV" = ( -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - alpha = 180; +"ouR" = ( +/obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/guideline/guideline_edge_alt/yellow{ - dir = 5 - }, -/obj/effect/turf_decal/guideline/guideline_tri/_corner/yellow{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/turf/open/floor/iron, -/area/engine/break_room) -"ova" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ +/obj/effect/turf_decal/guideline/guideline_half_edge/red{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +/obj/effect/turf_decal/guideline/guideline_half_edge/red{ + dir = 10 }, +/obj/effect/turf_decal/guideline/guideline_edge_alt/red{ + dir = 8 + }, +/obj/effect/turf_decal/guideline/guideline_tri/red, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -45317,16 +45666,18 @@ /obj/effect/turf_decal/box, /turf/open/floor/iron, /area/hydroponics) -"ows" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/guideline/guideline_edge/brown{ - dir = 4 +"owz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridgewindows"; + name = "Bridge View Blast Door" }, -/obj/structure/disposalpipe/segment{ - dir = 5 +/obj/structure/cable/yellow{ + icon_state = "0-4" }, -/turf/open/floor/iron, -/area/hallway/primary/port) +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/bridge) "owK" = ( /obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ alpha = 180; @@ -45378,16 +45729,6 @@ /obj/effect/turf_decal/tile/blue, /turf/open/floor/iron, /area/maintenance/department/medical/morgue) -"oxr" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/security/main) "oxF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -45404,6 +45745,22 @@ "oxQ" = ( /turf/closed/wall, /area/storage/primary) +"oxW" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/closet/crate/wooden/toy, +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 22 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre/backstage) "oym" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -45421,6 +45778,15 @@ dir = 1 }, /area/medical/surgery) +"oyS" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/north{ + c_tag = "Teleporter Room" + }, +/turf/open/floor/iron, +/area/hallway/primary/starboard) "ozf" = ( /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /obj/effect/turf_decal/numbers/two_nine, @@ -45502,15 +45868,6 @@ /obj/structure/cable/yellow, /turf/open/floor/iron/tech, /area/engine/engine_room) -"oBk" = ( -/obj/item/kirbyplants/random, -/obj/machinery/firealarm/directional/west, -/obj/machinery/camera/autoname/directional/west{ - network = list("ss13","medbay"); - view_range = 8 - }, -/turf/open/floor/iron/white, -/area/medical/cryo) "oBr" = ( /obj/machinery/door/poddoor/preopen{ id = "xenosecure"; @@ -45614,6 +45971,20 @@ }, /turf/open/floor/iron/tech, /area/engine/engine_room) +"oDx" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/chair/fancy/comfy{ + buildstackamount = 0; + color = "#742925"; + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 10 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/hallway/primary/central) "oDI" = ( /obj/machinery/announcement_system, /obj/effect/turf_decal/stripes/line{ @@ -45657,21 +46028,23 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"oEA" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" +"oEs" = ( +/obj/machinery/light{ + dir = 1 }, -/obj/item/radio/intercom{ - desc = "Talk through this. It looks like it has been modified to not broadcast."; - freerange = 1; - name = "Prison intercom"; - pixel_y = -25; - prison_radio = 1 +/obj/effect/turf_decal/tile/red/fourcorners/contrasted, +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/turf/open/floor/iron, +/turf/open/floor/prison, /area/security/prison) +"oEx" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/suit_storage_unit/exploration, +/turf/open/floor/iron/dark, +/area/quartermaster/exploration_prep) "oEG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 9 @@ -45684,18 +46057,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/hallway/primary/central) -"oER" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/tank_dispenser, -/obj/structure/disposalpipe/sorting/mail/destination/toxins, -/turf/open/floor/iron/dark, -/area/science/mixing) "oEY" = ( /obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, @@ -45705,25 +46066,6 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/iron/sepia, /area/maintenance/port/central) -"oFo" = ( -/obj/structure/closet/secure_closet/CMO, -/obj/item/clothing/glasses/hud/health{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/effect/turf_decal/tile/blue/opposingcorners{ - dir = 1 - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","medbay") - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_x = 1; - pixel_y = 29 - }, -/turf/open/floor/iron/white, -/area/crew_quarters/heads/cmo) "oFr" = ( /obj/structure/sign/departments/minsky/research/genetics, /turf/closed/wall, @@ -45738,18 +46080,6 @@ }, /turf/open/floor/iron/dark, /area/security/brig/dock) -"oFM" = ( -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/obj/structure/filingcabinet{ - pixel_x = -8 - }, -/obj/structure/filingcabinet/security{ - pixel_x = 8 - }, -/turf/open/floor/iron/dark, -/area/security/brig) "oFY" = ( /obj/machinery/air_sensor/atmos/plasma_tank, /turf/open/floor/engine/plasma, @@ -45789,6 +46119,20 @@ }, /turf/open/floor/iron, /area/engine/atmos) +"oGI" = ( +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + freerange = 1; + name = "Prison intercom"; + pixel_x = 25; + prison_radio = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/wood, +/area/security/prison) "oGJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -45850,6 +46194,22 @@ }, /turf/open/space/basic, /area/solar/port/fore) +"oHu" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/turf/open/floor/iron, +/area/security/main) "oHD" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -45887,28 +46247,6 @@ "oHG" = ( /turf/open/floor/circuit/telecomms/server, /area/science/xenobiology) -"oHV" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "medpriv1"; - name = "privacy Door" - }, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/exam_room) -"oIb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosroom"; - name = "HoS Room Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) "oId" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -45936,10 +46274,6 @@ }, /turf/open/floor/catwalk_floor, /area/maintenance/central) -"oIr" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/carpet/blue, -/area/medical/exam_room) "oIs" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -46055,6 +46389,20 @@ }, /turf/open/floor/catwalk_floor/iron_dark, /area/quartermaster/office) +"oJV" = ( +/obj/effect/turf_decal/numbers/two_nine{ + dir = 4 + }, +/obj/machinery/shower{ + dir = 8; + name = "emergency shower"; + pixel_y = 6 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 28 + }, +/turf/open/floor/iron/grid/steel, +/area/medical/virology) "oKe" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/disposalpipe/segment{ @@ -46097,29 +46445,30 @@ }, /turf/open/floor/iron/white/side, /area/medical/medbay/central) -"oLf" = ( -/obj/machinery/vending/wallmed{ - pixel_x = -1; - pixel_y = 32 - }, -/obj/structure/table/glass, -/obj/item/book/manual/wiki/chemistry{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/book/manual/wiki/plumbing, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","medbay") - }, -/turf/open/floor/iron, -/area/medical/chemistry) "oLh" = ( /obj/machinery/door/airlock/wood, /obj/structure/barricade/wooden/crude, /obj/effect/mapping_helpers/airlock/abandoned, /turf/open/floor/plating, /area/maintenance/port/aft) +"oLk" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/carpet/blue, +/area/medical/exam_room) +"oLt" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1; + pixel_x = 15; + pixel_y = -15 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron/tech, +/area/engine/engine_room) "oLv" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -46156,19 +46505,6 @@ /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/iron/sepia, /area/maintenance/port/central) -"oLO" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/closet/radiation, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","engine") - }, -/turf/open/floor/noslip/standard, -/area/engine/engineering) "oLP" = ( /obj/structure/chair/office, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ @@ -46188,6 +46524,19 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/security/brig/dock) +"oLT" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/southleft{ + dir = 4; + name = "Isolation Box"; + req_one_access_txt = "2" + }, +/turf/open/floor/iron/dark, +/area/security/courtroom) "oMm" = ( /obj/structure/table, /obj/effect/turf_decal/stripes/line{ @@ -46355,6 +46704,19 @@ dir = 10 }, /area/medical/sleeper) +"oOa" = ( +/obj/machinery/camera/autoname/directional/west{ + c_tag = "Incinerator"; + network = list("ss13","engine") + }, +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/iron, +/area/engine/atmospherics_engine) "oOn" = ( /obj/machinery/door/poddoor/shutters/radiation/preopen{ id = "engsm"; @@ -46395,26 +46757,15 @@ }, /turf/open/floor/iron/tech, /area/engine/engine_room) -"oOB" = ( -/obj/structure/chair/fancy/bench{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -34 - }, -/obj/effect/turf_decal/guideline/guideline_edge_alt/red{ +"oOI" = ( +/obj/structure/chair/office{ dir = 1 }, -/obj/effect/turf_decal/guideline/guideline_half_edge/red, -/obj/effect/turf_decal/guideline/guideline_half_edge/red{ - dir = 5 - }, -/obj/effect/turf_decal/guideline/guideline_tri/red{ +/obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/security/main) +/turf/open/floor/iron/dark, +/area/security/brig) "oON" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -46430,6 +46781,21 @@ }, /turf/open/floor/catwalk_floor, /area/maintenance/port/aft) +"oPd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/prison) "oPi" = ( /obj/machinery/door/airlock/security/glass{ name = "Holding Area"; @@ -46495,6 +46861,22 @@ /obj/structure/sign/departments/medbay/alt2, /turf/closed/wall, /area/medical/chemistry) +"oQd" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/hallway/primary/central) +"oQg" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/crew_quarters/kitchen/coldroom) "oQi" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -46508,6 +46890,11 @@ }, /turf/open/floor/iron, /area/hallway/primary/port) +"oQn" = ( +/obj/effect/turf_decal/tile/black/fourcorners, +/obj/effect/landmark/prisonspawn, +/turf/open/floor/iron/techmaint, +/area/security/prison) "oQp" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -46796,16 +47183,6 @@ }, /turf/open/floor/catwalk_floor, /area/maintenance/port/central) -"oTU" = ( -/obj/machinery/telecomms/hub/preset/exploration, -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/quartermaster/exploration_prep) "oTY" = ( /obj/machinery/door/window/eastright{ dir = 8; @@ -46864,6 +47241,26 @@ }, /turf/open/floor/iron/dark, /area/security/brig/dock) +"oUz" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 4 + }, +/obj/structure/closet/secure_closet/atmospherics{ + anchored = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark, +/area/engine/atmos) "oUC" = ( /obj/structure/sign/poster/random, /turf/closed/wall/r_wall, @@ -46880,6 +47277,15 @@ }, /turf/open/floor/iron/white, /area/crew_quarters/heads/captain/private) +"oUK" = ( +/obj/effect/turf_decal/tile/black/fourcorners, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/weightmachine/weightlifter, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/prison, +/area/security/prison) "oUP" = ( /obj/structure/disposalpipe/segment{ dir = 1 @@ -46897,36 +47303,6 @@ /obj/effect/turf_decal/bot/right, /turf/open/floor/iron/techmaint, /area/engine/gravity_generator) -"oVf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "Engidesk"; - name = "engineering Security Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/engine/break_room) -"oVm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/table, -/obj/item/storage/box/ingredients/wildcard{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/storage/box/ingredients/fruity{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/storage/box/ingredients/vegetarian{ - pixel_x = -1; - pixel_y = 4 - }, -/turf/open/floor/iron/white, -/area/crew_quarters/kitchen) "oVx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 1 @@ -46951,6 +47327,24 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/department/security) +"oVB" = ( +/obj/machinery/light/small, +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/closet/secure_closet/security/sec{ + anchored = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/security/main) "oVD" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 8 @@ -47054,20 +47448,6 @@ /obj/item/storage/belt/utility, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"oXn" = ( -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/turf/open/floor/glass/reinforced, -/area/hallway/primary/central) -"oXo" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/turf/open/floor/iron/dark, -/area/security/main) "oXv" = ( /obj/machinery/atmospherics/pipe/simple/green/visible, /obj/machinery/atmospherics/components/binary/pump{ @@ -47083,25 +47463,6 @@ dir = 8 }, /area/hallway/secondary/exit/departure_lounge) -"oXM" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/turf/open/floor/iron, -/area/security/main) "oXS" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ alpha = 180 @@ -47160,6 +47521,35 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/hallway/primary/central) +"oYA" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Atmospherics Desk"; + req_access_txt = "39" + }, +/obj/machinery/door/firedoor, +/obj/structure/desk_bell{ + pixel_x = 8; + pixel_y = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "quarantineshutters"; + name = "Isolation Shutters" + }, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/pen{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron/dark, +/area/medical/virology) "oYZ" = ( /obj/effect/turf_decal/caution{ dir = 8; @@ -47189,6 +47579,13 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/storage) +"oZd" = ( +/obj/effect/turf_decal/guideline/guideline_edge/red, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/security/main) "oZn" = ( /obj/machinery/door/airlock/research/glass{ name = "Robotics Lab"; @@ -47235,6 +47632,15 @@ }, /turf/open/floor/iron/white, /area/medical/apothecary) +"oZO" = ( +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","engine") + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/engine/supermatter) "oZS" = ( /obj/structure/table/glass, /obj/item/stack/ducts/fifty, @@ -47313,36 +47719,21 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) -"paA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/camera/autoname/directional/north, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/dark/side, -/area/hallway/primary/central) "paD" = ( /obj/machinery/holopad, /obj/effect/turf_decal/box, /turf/open/floor/iron/tech, /area/engine/atmos) -"paM" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigentrance"; - name = "Brig Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" +"paH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/directional{ + dir = 4 }, /obj/structure/cable/yellow{ - icon_state = "0-4" + icon_state = "0-2" }, -/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/security/brig) +/area/quartermaster/qm) "paP" = ( /obj/docking_port/stationary{ dir = 8; @@ -47422,18 +47813,6 @@ }, /turf/open/floor/iron/white, /area/science/xenobiology) -"pbg" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/hallway/primary/central) "pbr" = ( /obj/effect/turf_decal/tile/red/fourcorners/contrasted, /obj/machinery/status_display/door_timer{ @@ -47493,6 +47872,10 @@ }, /turf/open/floor/iron, /area/maintenance/department/bridge) +"pdh" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/glass/reinforced, +/area/hallway/primary/central) "pdv" = ( /obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ alpha = 180; @@ -47524,7 +47907,7 @@ }, /turf/open/floor/iron, /area/security/brig) -"peg" = ( +"pee" = ( /obj/machinery/computer/operating, /obj/effect/turf_decal/bot, /obj/machinery/newscaster{ @@ -47560,6 +47943,28 @@ }, /turf/open/floor/iron/white, /area/science/research) +"peG" = ( +/obj/machinery/door/poddoor/shutters{ + id = "atmosshutters"; + name = "Atmos Storage" + }, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/engine/atmos) +"peI" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/science/mixing) "peP" = ( /obj/structure/chair/office/light{ dir = 1; @@ -47572,6 +47977,30 @@ "peX" = ( /turf/closed/wall, /area/engine/engine_room) +"pfo" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west{ + pixel_x = -24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/item/taperecorder{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/machinery/recharger{ + pixel_x = 7; + pixel_y = 3 + }, +/turf/open/floor/carpet/red, +/area/crew_quarters/heads/hos) "pft" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ @@ -47619,23 +48048,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, /area/maintenance/starboard/aft) -"pfZ" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_y = 4 - }, -/obj/item/folder/red{ - pixel_y = 4 - }, -/obj/item/pen{ - pixel_y = 4 - }, -/obj/item/taperecorder{ - pixel_x = -15; - pixel_y = 4 - }, -/turf/open/floor/iron/dark, -/area/security/brig) "pgc" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ @@ -47647,21 +48059,6 @@ /obj/machinery/camera/autoname/directional/west, /turf/open/space/basic, /area/solar/starboard/aft) -"pgq" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/guideline/guideline_edge/red, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/noticeboard{ - dir = 1; - name = "Evidence board"; - pixel_y = -32 - }, -/turf/open/floor/iron, -/area/security/brig) "pgK" = ( /obj/item/kirbyplants/random, /obj/structure/disposalpipe/segment{ @@ -47731,6 +48128,25 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/hallway/primary/aft) +"phH" = ( +/obj/item/kirbyplants/random{ + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/guideline/guideline_half_edge/brown{ + dir = 10 + }, +/obj/effect/turf_decal/guideline/guideline_half_edge/brown{ + dir = 4 + }, +/obj/effect/turf_decal/guideline/guideline_edge_alt/brown{ + dir = 8 + }, +/obj/effect/turf_decal/guideline/guideline_tri/brown, +/turf/open/floor/iron, +/area/hallway/primary/port) "pia" = ( /obj/structure/grille, /turf/open/space/basic, @@ -47761,6 +48177,21 @@ /obj/effect/landmark/prisonspawn, /turf/open/floor/prison, /area/security/prison) +"piB" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/eastleft{ + dir = 1; + name = "Research and Development Deliveries"; + req_one_access_txt = "7;29" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/iron, +/area/science/research) "piC" = ( /turf/open/floor/iron/dark/side{ dir = 8 @@ -47793,15 +48224,20 @@ }, /turf/open/floor/iron, /area/janitor) -"pjc" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/obj/machinery/light, -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" +"pjf" = ( +/obj/machinery/door/poddoor/preopen{ + id = "detectivewindows"; + name = "Detective Privacy Blast Door" }, -/turf/open/floor/iron, -/area/security/prison) +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/detectives_office) "pjF" = ( /obj/structure/sign/departments/minsky/engineering/atmospherics{ pixel_x = 31; @@ -47850,23 +48286,6 @@ dir = 1 }, /area/hallway/primary/fore) -"pjO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "bridgewindows"; - name = "Bridge View Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/bridge) "pjQ" = ( /obj/effect/turf_decal/guideline/guideline_in/neutral{ alpha = 255; @@ -47926,6 +48345,11 @@ /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /turf/open/floor/iron/dark, /area/security/execution/education) +"pkz" = ( +/obj/machinery/vending/snack/blue, +/obj/effect/turf_decal/bot, +/turf/open/floor/holofloor/wood, +/area/security/main) "pkB" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ @@ -47964,31 +48388,6 @@ /obj/structure/sign/poster/random, /turf/closed/wall/r_wall/rust, /area/teleporter) -"pkX" = ( -/obj/machinery/button/door{ - id = "Bountydoors"; - name = "Bounty glass doors"; - normaldoorcontrol = 1; - pixel_x = 1; - pixel_y = -26; - req_access_txt = "31" - }, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/obj/machinery/button/door{ - id = "QMLoaddoor2"; - name = "Loading Doors"; - pixel_x = 1; - pixel_y = -37; - req_access_txt = "31" - }, -/obj/machinery/light_switch{ - pixel_x = 12; - pixel_y = -21 - }, -/turf/open/floor/iron/sepia, -/area/quartermaster/office) "pkY" = ( /obj/structure/window/reinforced, /obj/structure/flora/ausbushes/fullgrass, @@ -48044,14 +48443,6 @@ }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) -"plT" = ( -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/guideline/guideline_in/blue, -/turf/open/floor/iron/white, -/area/medical/medbay/lobby) "pmb" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/dark, @@ -48093,19 +48484,6 @@ }, /turf/open/floor/iron, /area/engine/engine_room) -"pmH" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/obj/machinery/door/airlock/public/glass{ - name = "visitation Area" - }, -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/closeup, -/turf/open/floor/iron, -/area/security/prison) "pmQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, @@ -48120,14 +48498,24 @@ /obj/machinery/light/very_dim/directional/west, /turf/open/floor/iron/dark, /area/security/execution/education) -"pnv" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ +"pnj" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ dir = 4 }, -/turf/open/floor/iron, -/area/engine/atmos) +/obj/item/radio/intercom{ + pixel_x = 32; + pixel_y = -3 + }, +/obj/machinery/camera/autoname/directional/east{ + network = list("ss13","rd") + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/science/mixing) "pny" = ( /obj/effect/turf_decal/tile/yellow{ alpha = 180 @@ -48203,19 +48591,6 @@ /obj/effect/turf_decal/box, /turf/open/floor/iron/white, /area/science/research) -"poD" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - pixel_y = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/hallway/primary/central) "poF" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 1 @@ -48248,23 +48623,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/engine/engineering) -"poQ" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/obj/structure/closet/secure_closet/evidence{ - density = 0; - opened = 1 - }, -/obj/item/storage/box/evidence, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom{ - dir = 1; - pixel_x = -32; - pixel_y = -2 - }, -/turf/open/floor/iron/dark, -/area/security/brig) "poU" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, @@ -48354,16 +48712,6 @@ }, /turf/open/floor/carpet/blue, /area/medical/exam_room) -"pqn" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/main) "pqC" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 @@ -48399,18 +48747,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/port/central) -"prq" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/carpet/green, -/area/security/main) "prv" = ( /turf/closed/wall, /area/crew_quarters/heads/captain) @@ -48438,18 +48774,6 @@ dir = 5 }, /area/science/mixing) -"psD" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/iron/dark/side{ - dir = 9 - }, -/area/science/mixing) "psH" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -48465,45 +48789,6 @@ initial_gas_mix = "o2=22;n2=82;TEMP=293.15" }, /area/tcommsat/computer) -"psU" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/machinery/camera/autoname/directional/west{ - network = list("ss13","cargo") - }, -/obj/machinery/button/door{ - id = "QMLoaddoor2"; - name = "Loading Doors"; - pixel_x = -25; - pixel_y = 4; - req_access_txt = "31" - }, -/obj/machinery/button/door{ - id = "QMLoaddoor"; - name = "Loading Doors"; - pixel_x = -25; - pixel_y = -5; - req_access_txt = "31" - }, -/obj/machinery/computer/cargo{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_x = -40; - pixel_y = -3 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/iron, -/area/quartermaster/storage) "psX" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 @@ -48553,6 +48838,16 @@ /obj/machinery/camera/autoname/directional/south, /turf/open/floor/catwalk_floor, /area/maintenance/department/bridge) +"pun" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/security/brig/dock) "puq" = ( /obj/structure/chair{ dir = 4 @@ -48631,17 +48926,6 @@ /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/plating, /area/maintenance/department/science) -"pvw" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/structure/closet/firecloset/full, -/turf/open/floor/iron/dark/smooth_large, -/area/hallway/primary/central) "pvz" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ @@ -48746,17 +49030,6 @@ }, /turf/open/floor/prison, /area/security/prison) -"pxm" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/closet/secure_closet/evidence, -/turf/open/floor/iron/dark, -/area/security/brig) "pxB" = ( /obj/machinery/air_sensor/atmos/carbon_tank, /turf/open/floor/engine/co2, @@ -48803,6 +49076,18 @@ /obj/structure/grille, /turf/open/floor/plating, /area/space/nearstation) +"pyt" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/donkpockets, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","engine") + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark, +/area/engine/storage) "pyA" = ( /obj/effect/turf_decal/bot, /obj/machinery/computer/objective{ @@ -48945,23 +49230,6 @@ }, /turf/open/floor/plating, /area/medical/apothecary) -"pBe" = ( -/obj/machinery/door/airlock{ - id_tag = "Cell"; - name = "Showers" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/closeup{ - dir = 1 - }, -/turf/open/floor/prison, -/area/security/prison) "pBg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 9 @@ -49037,26 +49305,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/hallway/primary/central) -"pCQ" = ( -/obj/item/kirbyplants{ - pixel_x = 19; - pixel_y = 13 - }, -/obj/effect/spawner/lootdrop/donkpockets{ - pixel_y = 6 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -31 - }, -/obj/structure/table/wood, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/carpet/green, -/area/security/main) "pCS" = ( /obj/item/radio/intercom{ pixel_x = 32; @@ -49164,18 +49412,6 @@ dir = 4 }, /area/hallway/primary/central) -"pEs" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/obj/effect/turf_decal/guideline/guideline_in/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/sorting/mail/destination/disposals/flip{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/port) "pEw" = ( /obj/structure/cable{ icon_state = "0-4" @@ -49253,16 +49489,6 @@ }, /turf/open/floor/iron, /area/science/storage) -"pFk" = ( -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/obj/structure/closet/secure_closet/genpop, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = -25 - }, -/turf/open/floor/iron/dark, -/area/security/prison) "pFn" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ @@ -49305,29 +49531,20 @@ /mob/living/carbon/monkey, /turf/open/floor/iron/grid/steel, /area/medical/virology) -"pGd" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/box, -/obj/machinery/light/small{ - dir = 8 +"pGg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-8" }, -/obj/machinery/advanced_airlock_controller/directional/west{ - pixel_x = -32; - pixel_y = 3 +/obj/structure/cable/yellow{ + icon_state = "2-8" }, -/turf/open/floor/iron/dark, -/area/security/brig/dock) -"pGh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ +/obj/structure/disposalpipe/sorting/mail/destination/testing_range{ dir = 1 }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters"; - name = "chemistry Shutters" - }, -/turf/open/floor/plating, -/area/medical/apothecary) +/turf/open/floor/iron, +/area/science/mixing) "pGp" = ( /obj/machinery/air_sensor/atmos/mix_tank, /turf/open/floor/engine/airless, @@ -49386,6 +49603,10 @@ /obj/structure/fans/tiny/invisible, /turf/open/floor/iron/techmaint, /area/quartermaster/storage) +"pGW" = ( +/obj/machinery/smartfridge/food, +/turf/open/floor/iron/white, +/area/crew_quarters/kitchen) "pHx" = ( /obj/structure/rack, /obj/effect/turf_decal/bot, @@ -49418,6 +49639,13 @@ }, /turf/open/floor/iron/dark/corner, /area/hallway/primary/central) +"pHZ" = ( +/obj/structure/bodycontainer/morgue, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/dark, +/area/medical/morgue) "pIj" = ( /obj/item/kirbyplants/random, /obj/structure/sign/poster/contraband/random{ @@ -49452,10 +49680,26 @@ }, /turf/open/floor/carpet/blue, /area/crew_quarters/heads/hos) -"pIC" = ( -/obj/machinery/suit_storage_unit/security, -/turf/open/floor/iron/dark, -/area/security/brig/dock) +"pIG" = ( +/obj/structure/table/reinforced, +/obj/item/gun/energy/ionrifle{ + pixel_x = -1; + pixel_y = 10 + }, +/obj/item/gun/energy/temperature/security{ + pixel_y = 5 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/brigdoor/westleft{ + name = "specialized Weapons"; + req_access_txt = "3" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/item/gun/grenadelauncher/security, +/turf/open/floor/iron, +/area/ai_monitored/security/armory) "pII" = ( /obj/structure/window/reinforced{ dir = 8; @@ -49493,6 +49737,23 @@ }, /turf/open/floor/iron, /area/hallway/secondary/entry) +"pIY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosroom"; + name = "HoS Room Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) "pJe" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -49545,11 +49806,29 @@ }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) +"pJO" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/prison, +/area/security/prison) "pJV" = ( /obj/structure/table/wood, /obj/item/storage/fancy/donut_box, /turf/open/floor/carpet/royalblue, /area/crew_quarters/heads/captain) +"pKk" = ( +/obj/machinery/atmospherics/components/trinary/mixer/flipped{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/science/mixing) "pKx" = ( /obj/effect/turf_decal/tile/blue/opposingcorners{ dir = 1 @@ -49604,17 +49883,12 @@ }, /turf/open/floor/iron/dark/side, /area/hallway/secondary/exit/departure_lounge) -"pLf" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced/prison, -/turf/open/floor/plating, -/area/security/prison) +"pKW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood, +/turf/open/floor/carpet/green, +/area/hallway/secondary/exit/departure_lounge) "pLh" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -49633,31 +49907,6 @@ /obj/item/organ/ears/cat, /turf/open/floor/iron, /area/medical/surgery) -"pLp" = ( -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/guideline/guideline_half_edge/blue{ - color = "#267878"; - dir = 4 - }, -/obj/effect/turf_decal/guideline/guideline_half_edge/blue{ - color = "#267878"; - dir = 10 - }, -/obj/effect/turf_decal/guideline/guideline_edge_alt/blue{ - color = "#267878"; - dir = 8 - }, -/obj/effect/turf_decal/guideline/guideline_tri/blue{ - color = "#267878" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/secondary/entry) "pLG" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -49744,16 +49993,6 @@ /obj/machinery/atmospherics/pipe/simple/general/hidden, /turf/open/floor/circuit/telecomms/server, /area/science/server) -"pMZ" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - id_tag = "commissarydoor"; - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/barricade/wooden/crude, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plating, -/area/maintenance/port/central) "pNy" = ( /obj/item/wrench, /obj/effect/turf_decal/delivery, @@ -49776,18 +50015,31 @@ }, /turf/open/floor/engine/vacuum, /area/engine/atmospherics_engine) -"pNG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "medpriv1"; - name = "privacy Door" +"pNF" = ( +/obj/effect/turf_decal/tile/red/fourcorners/contrasted, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 }, -/turf/open/floor/plating, -/area/medical/exam_room) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/prison, +/area/security/prison) "pNR" = ( /obj/machinery/air_sensor/atmos/nitrogen_tank, /turf/open/floor/engine/n2, /area/engine/atmos) +"pOc" = ( +/obj/machinery/camera/autoname/directional/west{ + c_tag = "Xenobiology Lab - Pen #2"; + network = list("ss13","rd","xeno") + }, +/obj/structure/window/reinforced, +/turf/open/floor/engine, +/area/science/xenobiology) "pOj" = ( /obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ alpha = 180 @@ -49886,6 +50138,16 @@ /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/iron/white/side, /area/medical/surgery) +"pPz" = ( +/obj/effect/turf_decal/guideline/guideline_edge/red, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/security/main) "pPA" = ( /turf/closed/wall/r_wall, /area/science/storage) @@ -50050,6 +50312,11 @@ }, /turf/open/floor/iron/tech, /area/engine/engine_room) +"pSb" = ( +/obj/structure/sign/departments/holy, +/obj/structure/closet/emcloset, +/turf/closed/wall, +/area/chapel/main) "pSc" = ( /obj/structure/railing{ dir = 4 @@ -50172,6 +50439,18 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) +"pTp" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/obj/machinery/dish_drive{ + pixel_y = 10 + }, +/obj/machinery/digital_clock/directional/north, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/cafeteria, +/area/crew_quarters/kitchen) "pTy" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /obj/effect/turf_decal/tile/blue/opposingcorners{ @@ -50206,6 +50485,18 @@ }, /turf/open/floor/iron, /area/security/nuke_storage) +"pTR" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/hallway/primary/central) "pTW" = ( /turf/open/floor/iron/tech, /area/engine/atmos) @@ -50215,14 +50506,6 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) -"pUj" = ( -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/iron/dark/smooth_large, -/area/hallway/primary/central) "pUl" = ( /obj/effect/turf_decal/guideline/guideline_out_arrow/brown{ dir = 9 @@ -50336,17 +50619,13 @@ dir = 8 }, /area/hallway/primary/central) -"pVO" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" +"pVN" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 }, -/obj/effect/spawner/structure/window/reinforced/prison, -/turf/open/floor/plating, -/area/security/prison) +/turf/open/floor/iron/dark, +/area/security/main) "pVX" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, @@ -50360,13 +50639,6 @@ dir = 1 }, /area/science/lobby) -"pWx" = ( -/obj/item/trash/plate, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/cigbutt, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) "pWy" = ( /obj/structure/chair, /obj/effect/turf_decal/stripes/line, @@ -50375,6 +50647,13 @@ dir = 6 }, /area/hallway/secondary/exit/departure_lounge) +"pWP" = ( +/obj/item/kirbyplants/random, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/quartermaster/exploration_prep) "pWY" = ( /obj/effect/landmark/start/chemist, /obj/structure/disposalpipe/segment{ @@ -50417,18 +50696,6 @@ name = "mainframe floor" }, /area/tcommsat/server) -"pYj" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/iron, -/area/security/brig) "pYo" = ( /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 4 @@ -50558,16 +50825,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/security) -"pZd" = ( -/obj/effect/turf_decal/siding/wideplating/dark, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/machinery/camera/autoname/directional/south{ - network = list("ss13","security") - }, -/turf/open/floor/carpet/red, -/area/crew_quarters/heads/hos) "pZe" = ( /obj/machinery/light{ dir = 8 @@ -50592,16 +50849,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/plating, /area/engine/engineering) -"pZl" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/guideline/guideline_edge/red, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/iron, -/area/security/brig) "pZF" = ( /obj/effect/turf_decal/tile/green/fourcorners/contrasted, /obj/structure/cable/yellow{ @@ -50624,17 +50871,6 @@ /obj/effect/turf_decal/box, /turf/open/floor/wood, /area/maintenance/central) -"pZR" = ( -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/quartermaster/qm) "pZU" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 @@ -50675,19 +50911,23 @@ }, /turf/open/floor/iron/tech, /area/engine/engine_room) -"qat" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/siding/wood, +"qaK" = ( +/obj/effect/turf_decal/tile/red/fourcorners/contrasted, /obj/structure/cable/yellow{ - icon_state = "1-2" + icon_state = "2-8" }, -/turf/open/floor/wood, -/area/medical/exam_room) -"qaG" = ( -/obj/machinery/door/firedoor, -/obj/structure/barricade/wooden/crude, -/turf/open/floor/iron/techmaint, -/area/maintenance/port/central) +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + freerange = 1; + name = "Prison intercom"; + pixel_y = 25; + prison_radio = 1 + }, +/turf/open/floor/prison, +/area/security/prison) "qaP" = ( /obj/structure/sign/painting/library, /turf/closed/wall, @@ -50768,6 +51008,26 @@ /obj/structure/lattice/catwalk, /turf/open/space/basic, /area/solar/port/fore) +"qbA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/guideline/guideline_half_edge/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/guideline/guideline_half_edge/yellow{ + dir = 9 + }, +/obj/effect/turf_decal/guideline/guideline_edge_alt/yellow, +/obj/effect/turf_decal/guideline/guideline_tri/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/open/floor/iron, +/area/engine/engineering) "qbO" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 @@ -50866,6 +51126,23 @@ /obj/effect/turf_decal/box, /turf/open/floor/iron/white, /area/medical/surgery) +"qdm" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/tile/black/fourcorners, +/turf/open/floor/iron/techmaint, +/area/security/prison) +"qdt" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) "qdU" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/guideline/guideline_in/yellow{ @@ -50930,6 +51207,25 @@ }, /turf/open/floor/iron, /area/security/checkpoint/auxiliary) +"qeG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted{ + alpha = 180 + }, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/open/floor/iron, +/area/engine/engineering) "qeL" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 1 @@ -50990,6 +51286,18 @@ /obj/structure/flora/ausbushes/ppflowers, /turf/open/floor/grass/no_border, /area/hallway/secondary/exit/departure_lounge) +"qfM" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/security/brig/dock) "qgr" = ( /obj/effect/turf_decal/siding/wideplating/dark, /turf/open/floor/carpet/red, @@ -51000,6 +51308,19 @@ }, /turf/open/floor/engine, /area/security/nuke_storage) +"qgx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom{ + pixel_x = 33; + pixel_y = -3 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/dark, +/area/engine/engine_room) "qgy" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/blood/gibs/limb, @@ -51073,27 +51394,6 @@ broken = 1 }, /area/maintenance/starboard/aft) -"qin" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/quartermaster/exploration_prep) -"qio" = ( -/obj/machinery/atmospherics/components/trinary/mixer/flipped{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/science/mixing) "qiW" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 @@ -51153,20 +51453,6 @@ }, /turf/open/floor/iron/tech, /area/engine/atmos) -"qki" = ( -/obj/machinery/door/poddoor/shutters{ - id = "atmosshutters"; - name = "Atmos Storage" - }, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/iron, -/area/engine/atmos) "qks" = ( /obj/effect/decal/cleanable/xenoblood/xgibs/larva/body, /turf/open/floor/engine, @@ -51207,6 +51493,16 @@ }, /turf/open/floor/plating, /area/engine/atmos) +"qkJ" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/obj/structure/closet/secure_closet/genpop, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom{ + dir = 1; + pixel_y = -25 + }, +/turf/open/floor/iron/dark, +/area/security/prison) "qkS" = ( /obj/effect/turf_decal/guideline/guideline_in/darkblue{ dir = 8 @@ -51243,6 +51539,16 @@ }, /turf/open/floor/catwalk_floor, /area/maintenance/department/engine) +"qlO" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + pixel_y = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/hallway/primary/central) "qmu" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -51342,62 +51648,6 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/iron, /area/medical/storage) -"qnA" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/science/mixing) -"qnR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","rd","xeno") - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/iron/white, -/area/science/xenobiology) -"qnW" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/camera/autoname/directional/north{ - view_range = 12 - }, -/obj/effect/turf_decal/siding/wideplating/dark/corner{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_y = 34 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/hallway/primary/central) "qnY" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 1 @@ -51484,21 +51734,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/teleporter) -"qoz" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/obj/effect/turf_decal/guideline/guideline_in/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/port) "qoH" = ( /obj/structure/table, /obj/effect/turf_decal/stripes/line{ @@ -51635,6 +51870,16 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/aft) +"qrt" = ( +/obj/machinery/rnd/production/circuit_imprinter, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/camera/autoname/directional/north{ + c_tag = "Incinerator"; + network = list("ss13","engine") + }, +/turf/open/floor/iron/dark, +/area/engine/atmos) "qrR" = ( /obj/effect/turf_decal/tile/blue/fourcorners/contrasted{ alpha = 200; @@ -51694,24 +51939,6 @@ }, /turf/open/floor/iron/white, /area/science/research) -"qsE" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_x = 32; - pixel_y = -3 - }, -/obj/machinery/camera/autoname/directional/east{ - network = list("ss13","rd") - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/science/mixing) "qsI" = ( /obj/structure/closet/secure_closet/bar, /obj/effect/turf_decal/tile/bar/opposingcorners, @@ -51795,17 +52022,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/medical/morgue) -"qtD" = ( -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/obj/structure/closet/secure_closet/genpop, -/obj/effect/turf_decal/bot, -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/turf/open/floor/iron/dark, -/area/security/prison) "qtE" = ( /obj/structure/chair/fancy/sofa/old/right, /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, @@ -51856,22 +52072,6 @@ /obj/structure/disposalpipe/junction/flip, /turf/open/floor/iron, /area/crew_quarters/cafeteria) -"quk" = ( -/obj/machinery/door/airlock/grunge{ - name = "Court Lounge" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/wood, -/area/security/main) "quI" = ( /obj/structure/disposalpipe/segment{ dir = 1 @@ -51948,6 +52148,25 @@ }, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) +"qwA" = ( +/obj/machinery/modular_fabricator/autolathe, +/obj/machinery/door/window/eastright{ + dir = 2; + name = "Research and Development Desk"; + req_one_access_txt = "47;63" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/open/floor/iron, +/area/science/lab) "qwL" = ( /obj/structure/sign/poster/random, /turf/closed/wall, @@ -52033,6 +52252,14 @@ }, /turf/open/floor/iron/white, /area/science/research) +"qxT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/dark, +/area/engine/engine_room) "qxZ" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 4 @@ -52081,16 +52308,6 @@ /obj/effect/decal/cleanable/glass, /turf/open/floor/wood, /area/vacant_room/office) -"qzm" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/machinery/camera/autoname/directional/south{ - c_tag = "MiniSat Core Hallway 4"; - network = list("minisat") - }, -/turf/open/floor/plating, -/area/ai_monitored/storage/satellite) "qzz" = ( /obj/structure/cable/yellow{ icon_state = "2-4" @@ -52116,16 +52333,6 @@ }, /turf/open/floor/iron, /area/science/robotics) -"qAr" = ( -/obj/machinery/light{ - bulb_colour = "#FFCEA6"; - dir = 4; - nightshift_light_color = "#FFB16E" - }, -/obj/machinery/airalarm/directional/east, -/obj/machinery/camera/autoname/directional/east, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) "qAA" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -52179,26 +52386,6 @@ /obj/item/pipe_dispenser, /turf/open/floor/iron, /area/construction/mining/aux_base) -"qAW" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/item/book/manual/wiki/security_space_law{ - pixel_y = -1 - }, -/obj/structure/filingcabinet/employment{ - pixel_x = 7 - }, -/obj/structure/filingcabinet{ - pixel_x = -5 - }, -/turf/open/floor/carpet/royalblack, -/area/lawoffice) "qBk" = ( /obj/effect/turf_decal/guideline/guideline_in/brown, /obj/structure/cable/yellow{ @@ -52251,6 +52438,12 @@ }, /turf/open/floor/iron, /area/crew_quarters/dorms) +"qBF" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/iron, +/area/science/mixing) "qBR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -52275,6 +52468,24 @@ dir = 4 }, /area/medical/genetics/cloning) +"qBW" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","security") + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/engine/engine_room) "qBY" = ( /obj/docking_port/stationary{ dir = 8; @@ -52286,20 +52497,38 @@ }, /turf/open/space/basic, /area/space) -"qBZ" = ( -/obj/structure/window/reinforced{ +"qCb" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + alpha = 180; dir = 4 }, -/obj/structure/window/reinforced, -/obj/machinery/light/floor{ - brightness = 15; - bulb_colour = "#FFE4CE"; - bulb_vacuum_brightness = 15; - nightshift_brightness = 10; - nightshift_light_color = "#E6EBFF" +/obj/effect/turf_decal/guideline/guideline_in/yellow{ + dir = 1 }, -/turf/open/floor/iron/dark/smooth_large, -/area/hallway/primary/central) +/obj/structure/disposalpipe/sorting/mail/destination/ce_office{ + dir = 4 + }, +/turf/open/floor/iron, +/area/engine/break_room) +"qCm" = ( +/obj/effect/turf_decal/guideline/guideline_half_edge/brown{ + dir = 10 + }, +/obj/effect/turf_decal/guideline/guideline_half_edge/brown{ + dir = 4 + }, +/obj/effect/turf_decal/guideline/guideline_edge_alt/brown{ + dir = 8 + }, +/obj/effect/turf_decal/guideline/guideline_tri/brown, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron, +/area/hallway/primary/port) "qCn" = ( /obj/machinery/door/airlock/public/glass{ name = "Primary Hallway" @@ -52568,6 +52797,21 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/hallway/primary/central) +"qFR" = ( +/obj/effect/turf_decal/tile/black/fourcorners, +/obj/machinery/seed_extractor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/seeds/carrot, +/obj/item/seeds/corn, +/obj/item/seeds/onion, +/obj/item/seeds/potato, +/obj/item/seeds/soya, +/obj/item/seeds/cabbage, +/obj/item/seeds/wheat, +/turf/open/floor/iron/techmaint, +/area/security/prison) "qFY" = ( /obj/machinery/door/airlock{ name = "Freezer"; @@ -52585,28 +52829,6 @@ /obj/effect/landmark/xeno_spawn, /turf/open/space/basic, /area/space/nearstation) -"qGM" = ( -/obj/effect/turf_decal/tile/green/fourcorners/contrasted, -/obj/machinery/door/airlock/virology/glass{ - name = "Virology Ward"; - req_access_txt = "39" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "quarantineshutters"; - name = "Isolation Shutters" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/iron/white, -/area/medical/virology) "qGP" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -52618,35 +52840,6 @@ }, /turf/open/floor/carpet/royalblue, /area/crew_quarters/heads/captain) -"qGT" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "MailConv" - }, -/obj/machinery/button/door{ - id = "Bountydoors"; - name = "Bounty glass doors"; - normaldoorcontrol = 1; - pixel_y = 38; - req_access_txt = "31" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "QMLoaddoor2"; - name = "Loading Doors"; - pixel_y = 28; - req_access_txt = "31" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron/dark, -/area/quartermaster/office) "qHc" = ( /obj/effect/decal/cleanable/glass{ dir = 8 @@ -52677,12 +52870,6 @@ /obj/structure/table/reinforced, /turf/open/floor/iron/techmaint, /area/science/xenobiology) -"qHP" = ( -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","engine") - }, -/turf/open/floor/engine/air, -/area/engine/atmos) "qHT" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -52746,14 +52933,6 @@ }, /turf/open/floor/iron, /area/crew_quarters/heads/hop) -"qJw" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/security/brig) "qJC" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -52761,6 +52940,17 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/medical/storage) +"qJG" = ( +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "medpriv1"; + name = "privacy Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/exam_room) "qJI" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 9 @@ -52782,6 +52972,15 @@ /obj/structure/flora/ausbushes/fernybush, /turf/open/floor/grass, /area/hallway/primary/central) +"qKg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/computer/security, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/security/main) "qKl" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /obj/effect/turf_decal/siding/wood{ @@ -52878,6 +53077,9 @@ /obj/structure/fans/tiny/invisible, /turf/open/space/basic, /area/space) +"qLO" = ( +/turf/closed/wall/r_wall, +/area/security/prison) "qLY" = ( /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 4 @@ -52906,18 +53108,6 @@ }, /turf/open/floor/iron/white, /area/science/research) -"qMm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/iron/dark, -/area/security/brig) "qMu" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/dark_green/anticorner_ramp/contrasted{ @@ -52938,6 +53128,17 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/tech, /area/engine/atmos) +"qMG" = ( +/obj/machinery/newscaster{ + pixel_x = 28; + pixel_y = 2 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/wood, +/area/crew_quarters/theatre) "qMM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 @@ -52981,23 +53182,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/iron/dark, /area/chapel/office) -"qNV" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - icon_state = "right"; - name = "Viro office"; - req_access_txt = "39" - }, -/obj/effect/turf_decal/tile/green/fourcorners/contrasted, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "quarantineshutters"; - name = "Isolation Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/medical/virology) "qOl" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ dir = 8 @@ -53019,22 +53203,6 @@ }, /turf/open/floor/iron/white, /area/crew_quarters/kitchen) -"qOG" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/iron, -/area/science/misc_lab) "qOH" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /obj/effect/turf_decal/siding/wood, @@ -53122,14 +53290,6 @@ /obj/effect/decal/cleanable/greenglow, /turf/open/floor/iron/techmaint, /area/science/misc_lab/range) -"qQj" = ( -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/vending/cola, -/turf/open/floor/iron/dark/smooth_large, -/area/hallway/primary/central) "qQC" = ( /obj/machinery/door/airlock/external{ name = "Arrival Shuttle Airlock" @@ -53168,6 +53328,32 @@ /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/plating, /area/maintenance/department/security) +"qRi" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/storage/box/monkeycubes{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = 2 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "quarantineshutters"; + name = "Isolation Shutters" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + pixel_y = -3 + }, +/obj/machinery/camera/autoname/directional/east{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/grid/steel, +/area/medical/virology) "qRk" = ( /obj/machinery/door/airlock/maintenance_hatch{ id_tag = "commissarydoor"; @@ -53348,6 +53534,16 @@ /obj/structure/closet/firecloset, /turf/open/floor/plating, /area/crew_quarters/dorms) +"qUm" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/security/main) "qUq" = ( /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters{ @@ -53405,13 +53601,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) -"qUY" = ( -/obj/effect/turf_decal/tile/red/fourcorners/contrasted, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/prison, -/area/security/prison) "qVc" = ( /obj/structure/table/reinforced, /obj/structure/desk_bell{ @@ -53420,17 +53609,6 @@ /obj/effect/turf_decal/siding/wideplating/dark, /turf/open/floor/iron/cafeteria, /area/crew_quarters/kitchen) -"qVi" = ( -/obj/structure/sign/poster/random{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/black/fourcorners, -/obj/structure/reagent_dispensers/watertank/high, -/turf/open/floor/iron/techmaint, -/area/security/prison) "qVx" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ @@ -53758,17 +53936,6 @@ /obj/machinery/space_heater, /turf/open/floor/iron, /area/maintenance/department/science) -"qZK" = ( -/obj/structure/railing{ - dir = 5 - }, -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/turf_decal/tile/black/fourcorners, -/turf/open/floor/iron/techmaint, -/area/security/prison) "qZM" = ( /obj/structure/window/reinforced, /obj/effect/turf_decal/box, @@ -53776,6 +53943,17 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/iron, /area/medical/medbay/lobby) +"qZO" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor{ + id = "AIwindows"; + name = "AI View Blast Door" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) "qZR" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -53849,47 +54027,10 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/iron/dark, /area/security/brig/dock) -"raT" = ( -/obj/structure/table/reinforced, -/obj/item/rcl/pre_loaded, -/obj/item/rcl/pre_loaded, -/obj/item/storage/box/lights/mixed{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","engine") - }, -/turf/open/floor/iron/dark, -/area/engine/engine_room) "rbi" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/medical/genetics/cloning) -"rbl" = ( -/obj/machinery/light/small, -/obj/machinery/firealarm/directional/south, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/closet/secure_closet/security/sec{ - anchored = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/security/main) "rbm" = ( /obj/effect/decal/cleanable/food/egg_smudge, /obj/structure/cable/yellow{ @@ -54055,13 +54196,6 @@ }, /turf/open/floor/iron, /area/engine/atmos) -"rdM" = ( -/obj/machinery/smartfridge/sci{ - initial_contents = list(/obj/item/stock_parts/capacitor = 2, /obj/item/stock_parts/manipulator = 2, /obj/item/stock_parts/micro_laser = 2, /obj/item/stock_parts/matter_bin = 2, /obj/item/stock_parts/scanning_module = 2); - name = "Science vender" - }, -/turf/open/floor/iron, -/area/engine/storage) "rdS" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -54101,6 +54235,13 @@ burnt = 1 }, /area/hallway/secondary/service) +"reL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/wood/normal, +/turf/open/floor/carpet/green, +/area/security/courtroom) "reS" = ( /obj/effect/landmark/start/janitor, /turf/open/floor/iron, @@ -54117,11 +54258,38 @@ "rfl" = ( /turf/closed/wall, /area/crew_quarters/cafeteria) +"rfn" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/iron/dark, +/area/security/main) "rfz" = ( /obj/structure/closet/crate, /obj/effect/spawner/lootdrop/donkpockets, /turf/open/floor/iron/sepia, /area/quartermaster/warehouse) +"rfF" = ( +/obj/machinery/vending/wardrobe/robo_wardrobe, +/obj/effect/turf_decal/stripes/line, +/obj/item/radio/intercom{ + pixel_y = 29 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","rd") + }, +/turf/open/floor/iron/dark, +/area/science/robotics) +"rfI" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/xenobiology) "rfM" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -54146,48 +54314,6 @@ /obj/structure/sign/departments/minsky/security/command, /turf/closed/wall, /area/storage/primary) -"rgk" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor{ - base_state = "rightsecure"; - dir = 4; - icon_state = "rightsecure"; - name = "Head of Personnel's Paperwork Door"; - req_access_txt = "57" - }, -/obj/machinery/door/window/northleft{ - dir = 8; - name = "Paperwork Window" - }, -/obj/item/pen{ - pixel_x = 6; - pixel_y = 1 - }, -/obj/item/pen{ - pixel_x = 10; - pixel_y = 1 - }, -/obj/item/pen{ - pixel_x = 8; - pixel_y = -3 - }, -/obj/item/paper{ - pixel_x = -6 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/desk_bell/speed_demon, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopshutter"; - name = "Privacy Shutters" - }, -/turf/open/floor/iron, -/area/crew_quarters/heads/hop) "rgs" = ( /obj/structure/cable/yellow{ icon_state = "1-8" @@ -54348,6 +54474,36 @@ /obj/effect/turf_decal/stripes/closeup, /turf/open/floor/plating/airless, /area/science/test_area) +"rif" = ( +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","engine"); + view_range = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/guideline/guideline_half_edge/yellow{ + dir = 6 + }, +/obj/effect/turf_decal/guideline/guideline_half_edge/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/guideline/guideline_edge_alt/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/guideline/guideline_tri/yellow{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron, +/area/engine/engineering) "rij" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -54370,6 +54526,27 @@ /obj/effect/spawner/lootdrop/glowstick/lit, /turf/open/floor/plating, /area/maintenance/port/aft) +"riJ" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron, +/area/quartermaster/qm) +"rjk" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/brig/dock) "rjl" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ alpha = 180; @@ -54381,20 +54558,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/security/checkpoint/auxiliary) -"rjq" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridgewindows"; - name = "Bridge View Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/bridge) "rjH" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -54449,21 +54612,22 @@ }, /turf/open/floor/iron, /area/engine/atmospherics_engine) -"rkv" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 +"rkF" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/guideline/guideline_half_edge/yellow, +/obj/effect/turf_decal/guideline/guideline_half_edge/yellow{ + dir = 5 }, -/obj/effect/turf_decal/guideline/guideline_edge/red{ +/obj/effect/turf_decal/guideline/guideline_edge_alt/yellow{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2 +/obj/effect/turf_decal/guideline/guideline_tri/yellow{ + dir = 8 }, +/obj/machinery/light/directional/east, /turf/open/floor/iron, -/area/security/main) +/area/engine/engineering) "rkH" = ( /obj/effect/spawner/lootdrop/ruinloot/science, /obj/structure/table, @@ -54489,6 +54653,21 @@ }, /turf/open/floor/iron/dark, /area/security/courtroom) +"rln" = ( +/obj/machinery/computer/bounty{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 3 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/box, +/obj/structure/window/reinforced, +/turf/open/floor/iron/sepia, +/area/quartermaster/office) "rlv" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 @@ -54524,34 +54703,6 @@ dir = 8 }, /area/science/research) -"rlQ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/northright{ - dir = 2; - name = "Chemistry Desk"; - req_one_access_txt = "5;33" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters"; - name = "chemistry Shutters" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted, -/obj/structure/desk_bell{ - pixel_x = -8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/item/paper_bin{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/pen{ - pixel_x = 6; - pixel_y = 3 - }, -/turf/open/floor/plating, -/area/medical/apothecary) "rlT" = ( /obj/machinery/doppler_array/research/science{ dir = 8 @@ -54617,20 +54768,6 @@ dir = 1 }, /area/hallway/secondary/exit/departure_lounge) -"rmZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor{ - id = "Capoffice"; - name = "Captain Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/curtain/directional{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/captain/private) "rnw" = ( /obj/structure/table/wood, /obj/effect/turf_decal/siding/wood{ @@ -54706,23 +54843,47 @@ /obj/item/stack/sheet/plasteel, /turf/open/space/basic, /area/space/nearstation) +"rou" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridgewindows"; + name = "Bridge View Blast Door" + }, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/bridge) "roB" = ( /obj/effect/turf_decal/tile/neutral/anticorner/contrasted, /obj/machinery/iv_drip, /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/iron, /area/maintenance/starboard/aft) -"roG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "qm_warehouse"; - name = "warehouse Shutters" +"roC" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron/sepia, -/area/quartermaster/warehouse) +/turf/open/floor/iron, +/area/security/main) "roI" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ @@ -54749,6 +54910,10 @@ }, /turf/open/floor/iron/techmaint, /area/hallway/secondary/service) +"rpx" = ( +/obj/machinery/smartfridge/chemistry, +/turf/open/floor/iron, +/area/medical/apothecary) "rpF" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ @@ -54756,10 +54921,53 @@ }, /turf/open/floor/plating, /area/science/research) +"rpG" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/guideline/guideline_edge/red, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/brig) +"rpJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 9 + }, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_y = 29 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/carpet/orange, +/area/quartermaster/qm) "rpK" = ( /obj/structure/chair/stool/bar/directional/west, /turf/open/floor/iron/cafeteria_red, /area/crew_quarters/cafeteria) +"rpQ" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/obj/machinery/light, +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/turf/open/floor/iron, +/area/security/prison) "rqd" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -54822,13 +55030,14 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/crew_quarters/dorms) -"rqw" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 +"rqu" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor{ + id = "AIwindows"; + name = "AI View Blast Door" }, -/obj/structure/chair/wood/normal, -/turf/open/floor/carpet/green, -/area/security/courtroom) +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/foyer) "rqC" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 1 @@ -54836,6 +55045,17 @@ /obj/effect/turf_decal/tile/dark_green, /turf/open/floor/iron, /area/hallway/secondary/service) +"rqE" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced/prison, +/turf/open/floor/plating, +/area/security/prison) "rqH" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/techstorage/medical, @@ -54857,6 +55077,24 @@ }, /turf/open/floor/engine, /area/science/explab) +"rri" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/iron, +/area/science/mixing) "rrj" = ( /obj/structure/cable{ icon_state = "2-8" @@ -54872,30 +55110,6 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"rrw" = ( -/obj/structure/table, -/obj/item/wrench, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/analyzer, -/obj/item/pipe_dispenser, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/item/crowbar, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/science/mixing) "rrP" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -54907,6 +55121,45 @@ /obj/effect/turf_decal/guideline/guideline_edge/darkblue, /turf/open/floor/iron, /area/hallway/primary/fore) +"rrW" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/guideline/guideline_half_edge/blue{ + color = "#267878"; + dir = 5 + }, +/obj/effect/turf_decal/guideline/guideline_half_edge/blue{ + color = "#267878" + }, +/obj/effect/turf_decal/guideline/guideline_edge_alt/blue{ + color = "#267878"; + dir = 1 + }, +/obj/effect/turf_decal/guideline/guideline_tri/blue{ + color = "#267878"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron, +/area/hallway/secondary/entry) +"rsc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/iron/tech, +/area/engine/engine_room) "rsw" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -54987,24 +55240,6 @@ /obj/effect/turf_decal/box, /turf/open/floor/iron/dark, /area/quartermaster/miningdock) -"ruu" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/structure/disposalpipe/sorting/mail/destination/security{ - dir = 8 - }, -/turf/open/floor/iron, -/area/security/brig) "ruG" = ( /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 4 @@ -55039,6 +55274,32 @@ }, /turf/open/floor/iron/dark, /area/crew_quarters/dorms) +"ruV" = ( +/obj/machinery/door/airlock/grunge{ + name = "Court Lounge" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/wood, +/area/security/main) +"rve" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/iron/tech, +/area/engine/engine_room) "rvv" = ( /obj/structure/bed, /obj/item/bedsheet/clown, @@ -55180,12 +55441,6 @@ dir = 4 }, /area/hallway/primary/central) -"rxB" = ( -/obj/structure/musician/piano{ - icon_state = "piano" - }, -/turf/open/floor/glass/reinforced, -/area/crew_quarters/cafeteria) "rxH" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ @@ -55300,19 +55555,6 @@ }, /turf/open/floor/plating/airless, /area/science/test_area) -"rza" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/southleft{ - dir = 4; - name = "Isolation Box"; - req_one_access_txt = "2" - }, -/turf/open/floor/iron/dark, -/area/security/courtroom) "rzo" = ( /obj/structure/cable/yellow{ icon_state = "2-8" @@ -55403,13 +55645,6 @@ }, /turf/open/floor/wood, /area/security/detectives_office) -"rAx" = ( -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/siding/white{ - dir = 5 - }, -/turf/open/floor/glass/reinforced, -/area/hallway/primary/central) "rAD" = ( /obj/machinery/mineral/stacking_machine{ dir = 4; @@ -55571,18 +55806,6 @@ }, /turf/open/floor/prison, /area/security/prison) -"rCw" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "Chefwindow"; - name = "Chef Window" - }, -/turf/open/floor/iron/white, -/area/crew_quarters/kitchen) "rCC" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -55619,17 +55842,6 @@ }, /turf/open/floor/plating, /area/quartermaster/office) -"rDf" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/effect/landmark/xeno_spawn, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/iron/dark, -/area/security/brig) "rDh" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -55737,6 +55949,16 @@ name = "mainframe floor" }, /area/tcommsat/server) +"rEn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/camera/autoname/directional/north{ + c_tag = "Science - Toxins Mixing Lab Burn Chamber"; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/iron/dark, +/area/science/misc_lab/range) "rEq" = ( /obj/machinery/suit_storage_unit/security, /obj/effect/turf_decal/bot, @@ -55838,6 +56060,17 @@ }, /turf/open/floor/iron/tech, /area/engine/atmos) +"rGf" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/light{ + dir = 1 + }, +/mob/living/carbon/monkey, +/turf/open/floor/vault, +/area/medical/genetics) "rGp" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -55872,6 +56105,26 @@ }, /turf/open/floor/iron/dark, /area/security/brig/dock) +"rGU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/machinery/firealarm/directional/west{ + pixel_y = -2 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/button/flasher{ + id = "monkeypen"; + pixel_x = -22; + pixel_y = 10 + }, +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/grid/steel, +/area/medical/virology) "rHa" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -55896,6 +56149,24 @@ /obj/effect/turf_decal/stripes/closeup, /turf/open/floor/iron, /area/ai_monitored/security/armory) +"rHA" = ( +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","prison","security") + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "brigentrance"; + name = "Brig Lockdown Control"; + pixel_y = -25; + req_access_txt = "1" + }, +/turf/open/floor/iron/dark, +/area/security/prison) "rHD" = ( /obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ alpha = 180 @@ -55907,13 +56178,6 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat/foyer) -"rId" = ( -/obj/effect/turf_decal/tile/black/fourcorners, -/obj/machinery/hydroponics/constructable, -/obj/structure/railing/corner, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/techmaint, -/area/security/prison) "rIi" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -55937,6 +56201,18 @@ /obj/effect/turf_decal/box, /turf/open/floor/carpet, /area/library) +"rIo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north{ + areastring = "/area/engine/supermatter" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/iron/dark, +/area/engine/engine_room) "rIt" = ( /obj/machinery/portable_atmospherics/pump, /obj/effect/turf_decal/bot{ @@ -56020,6 +56296,22 @@ /obj/structure/closet/firecloset/full, /turf/open/floor/plating, /area/maintenance/department/security) +"rKl" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security E.V.A. Storage"; + req_access_txt = "1" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/closeup, +/turf/open/floor/iron/dark, +/area/security/brig/dock) "rKn" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/telecomms/receiver/preset_right{ @@ -56091,17 +56383,6 @@ /obj/structure/disposalpipe/trunk, /turf/open/floor/iron/white, /area/crew_quarters/heads/cmo) -"rLJ" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/turf/open/floor/iron, -/area/security/prison) "rLM" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ @@ -56212,6 +56493,17 @@ }, /turf/open/floor/iron, /area/hallway/primary/fore) +"rOD" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","engine") + }, +/turf/open/floor/iron, +/area/engine/atmos) "rOF" = ( /obj/item/clothing/mask/rat{ pixel_x = -4; @@ -56253,25 +56545,12 @@ }, /turf/open/floor/iron, /area/crew_quarters/dorms) -"rON" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/spawner/randomvend/snack, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/obj/item/radio/intercom{ - pixel_x = 1; - pixel_y = 30 - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","engine") +"rOM" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 }, -/turf/open/floor/iron, -/area/engine/break_room) +/turf/open/floor/iron/dark, +/area/security/prison) "rPf" = ( /obj/machinery/atmospherics/pipe/manifold/green/visible{ dir = 1 @@ -56294,20 +56573,6 @@ }, /turf/open/floor/catwalk_floor, /area/maintenance/port/central) -"rPU" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 8 - }, -/obj/machinery/door/window/northright{ - dir = 8; - name = "Kitchen Doors"; - req_one_access_txt = "28;25;35" - }, -/turf/open/floor/iron/cafeteria, -/area/crew_quarters/kitchen) "rQd" = ( /turf/closed/wall/r_wall/rust, /area/crew_quarters/heads/hor) @@ -56374,6 +56639,24 @@ /obj/effect/decal/cleanable/oil, /turf/open/floor/plating, /area/maintenance/department/medical) +"rSb" = ( +/obj/machinery/status_display/evac{ + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/camera/motion{ + c_tag = "MiniSat Upload Chamber"; + network = list("aiupload") + }, +/obj/structure/cable, +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) "rSi" = ( /obj/effect/turf_decal/tile/yellow/fourcorners/contrasted{ alpha = 180 @@ -56393,18 +56676,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/engine/engineering) -"rSm" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/turf/open/floor/iron/dark, -/area/engine/engine_room) "rSL" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 28 @@ -56550,6 +56821,22 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, /area/maintenance/department/medical) +"rUN" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/light_switch{ + pixel_x = 21; + pixel_y = -21 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/iron/dark, +/area/security/brig) "rUQ" = ( /obj/effect/turf_decal/guideline/guideline_in/darkblue{ dir = 8 @@ -56609,6 +56896,25 @@ }, /turf/open/floor/catwalk_floor/iron_dark, /area/engine/engine_room) +"rVu" = ( +/obj/structure/table, +/obj/item/restraints/handcuffs{ + pixel_x = -1; + pixel_y = -5 + }, +/obj/item/paper/fluff/jobs/security/beepsky_mom, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/item/key/security, +/turf/open/floor/iron/dark, +/area/security/main) "rVH" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 28 @@ -56631,23 +56937,6 @@ }, /turf/open/floor/iron/white, /area/crew_quarters/heads/cmo) -"rVX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4; - pixel_x = -16; - pixel_y = -15 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron/tech, -/area/engine/engine_room) "rWl" = ( /obj/machinery/vending/wardrobe/det_wardrobe, /turf/open/floor/wood, @@ -56673,30 +56962,6 @@ }, /turf/open/floor/iron/dark, /area/security/brig) -"rXd" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrign"; - name = "Brig"; - req_one_access_txt = "63;38" - }, -/obj/machinery/door/poddoor/preopen{ - id = "brigentrance"; - name = "Brig Blast Door" - }, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/closeup, -/turf/open/floor/iron, -/area/security/brig) "rXp" = ( /obj/structure/window/reinforced, /obj/structure/closet/firecloset/full, @@ -56871,13 +57136,21 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/port/aft) -"rZG" = ( -/obj/machinery/smartfridge/sci{ - initial_contents = list(/obj/item/stock_parts/capacitor = 2, /obj/item/stock_parts/manipulator = 2, /obj/item/stock_parts/micro_laser = 2, /obj/item/stock_parts/matter_bin = 2, /obj/item/stock_parts/scanning_module = 2); - name = "Science vender" +"rZU" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail/destination/hos_office{ + dir = 8 }, /turf/open/floor/iron, -/area/science/lab) +/area/security/brig) "saf" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -56889,31 +57162,6 @@ /obj/effect/decal/cleanable/insectguts, /turf/open/floor/plating, /area/maintenance/port/aft) -"saj" = ( -/obj/effect/turf_decal/tile/red/fourcorners/contrasted, -/obj/item/radio/intercom{ - desc = "Talk through this. It looks like it has been modified to not broadcast."; - freerange = 1; - name = "Prison intercom"; - pixel_x = 25; - prison_radio = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/camera/autoname/directional/east, -/turf/open/floor/prison, -/area/security/prison) -"sal" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/iron/sepia, -/area/quartermaster/office) "saq" = ( /obj/effect/landmark/start/roboticist, /turf/open/floor/iron, @@ -57001,6 +57249,14 @@ }, /turf/open/floor/iron, /area/security/brig) +"sbd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/black/fourcorners, +/turf/open/floor/iron/techmaint, +/area/security/prison) "sbe" = ( /obj/effect/turf_decal/tile/purple/fourcorners/contrasted, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ @@ -57008,6 +57264,19 @@ }, /turf/open/floor/iron/dark, /area/science/nanite) +"sbk" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","engine") + }, +/turf/open/floor/iron/tech, +/area/engine/atmos) "sbt" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 4 @@ -57030,19 +57299,6 @@ "scb" = ( /turf/closed/wall/r_wall, /area/storage/tech) -"scv" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/security/main) "scE" = ( /obj/structure/chair{ dir = 8 @@ -57061,6 +57317,18 @@ dir = 10 }, /area/science/research) +"scM" = ( +/obj/machinery/stasis{ + dir = 1 + }, +/obj/machinery/defibrillator_mount{ + pixel_x = -32 + }, +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","security") + }, +/turf/open/floor/iron/white, +/area/security/brig/medbay) "scT" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted, /obj/structure/disposalpipe/segment{ @@ -57117,39 +57385,17 @@ }, /turf/open/floor/iron, /area/hallway/primary/fore) +"sec" = ( +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/turf/open/floor/glass/reinforced, +/area/hallway/primary/central) "sel" = ( /obj/effect/landmark/start/station_engineer, /turf/open/floor/iron/tech, /area/engine/engine_room) -"seo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - alpha = 180; - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/corner_ramp/offset{ - alpha = 180; - dir = 4 - }, -/obj/effect/turf_decal/guideline/guideline_half_ramp/_inverted/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/engine/engineering) "seq" = ( /obj/effect/turf_decal/tile/dark_blue/half/contrasted{ alpha = 180; @@ -57257,6 +57503,15 @@ }, /turf/open/space/basic, /area/space/nearstation) +"sfp" = ( +/obj/machinery/door/airlock{ + id_tag = "sec Toilet 2"; + name = "Toilet Unit" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/closeup, +/turf/open/floor/iron/freezer, +/area/security/prison) "sfq" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ @@ -57315,35 +57570,6 @@ /obj/structure/sign/warning/nosmoking/circle, /turf/closed/wall, /area/hydroponics) -"sgG" = ( -/obj/effect/turf_decal/delivery/red, -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" - }, -/obj/machinery/turnstile{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/closeup, -/obj/effect/turf_decal/stripes/red/line, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/security/prison) "shi" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/bot, @@ -57555,6 +57781,20 @@ }, /turf/open/floor/iron, /area/crew_quarters/dorms) +"skH" = ( +/obj/machinery/power/solar_control, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/power/terminal{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) "skO" = ( /obj/structure/cable{ icon_state = "2-8" @@ -57600,6 +57840,20 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/solars/port/aft) +"slc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/trinary/filter/critical{ + dir = 4; + filter_type = "n2" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron/tech, +/area/engine/engine_room) "slj" = ( /obj/structure/lattice/catwalk, /obj/structure/table, @@ -57691,29 +57945,6 @@ /obj/machinery/portable_atmospherics/pump, /turf/open/floor/iron, /area/science/storage) -"smH" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/main) "smL" = ( /obj/structure/disposalpipe/segment{ dir = 1 @@ -57756,15 +57987,6 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/construction/mining/aux_base) -"snE" = ( -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 4 - }, -/obj/machinery/camera/autoname/directional/north, -/obj/vehicle/ridden/janicart, -/obj/item/key/janitor, -/turf/open/floor/iron, -/area/janitor) "snK" = ( /obj/effect/turf_decal/tile/dark_green/half/contrasted{ dir = 1 @@ -57789,6 +58011,25 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/iron/dark, /area/engine/engine_room) +"sog" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/main) "soi" = ( /obj/effect/landmark/start/geneticist, /turf/open/floor/iron/white, @@ -57859,16 +58100,17 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/storage) -"spx" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/security/prison) "spz" = ( /obj/structure/flora/rock, /turf/open/floor/grass, /area/hallway/primary/central) +"spH" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/turf/open/floor/iron/dark, +/area/security/main) "sqI" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ @@ -57894,6 +58136,23 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) +"srl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4; + pixel_x = -16; + pixel_y = -15 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron/tech, +/area/engine/engine_room) "srn" = ( /obj/machinery/firealarm/directional/west, /obj/effect/turf_decal/tile/blue/half/contrasted{ @@ -57976,6 +58235,15 @@ }, /turf/open/floor/iron, /area/hallway/secondary/entry) +"ssK" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/north, +/obj/vehicle/ridden/janicart, +/obj/item/key/janitor, +/turf/open/floor/iron, +/area/janitor) "ssN" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/wood{ @@ -58016,24 +58284,24 @@ /obj/structure/cable/yellow, /turf/open/floor/iron/white, /area/science/research) -"stN" = ( -/obj/machinery/camera/autoname/directional/south{ - network = list("ss13","prison","security") +"stS" = ( +/obj/machinery/computer/security/telescreen/toxins{ + dir = 1; + pixel_y = 38 }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 +/obj/machinery/button/massdriver{ + id = "toxinsdriver"; + pixel_y = 24 }, -/obj/structure/chair{ - dir = 1 +/obj/machinery/disposal/bin{ + pixel_y = 2 }, -/obj/machinery/button/door{ - id = "brigentrance"; - name = "Brig Lockdown Control"; - pixel_y = -25; - req_access_txt = "1" +/obj/structure/disposalpipe/trunk{ + dir = 4 }, +/obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, -/area/security/prison) +/area/science/misc_lab) "sud" = ( /obj/machinery/computer/security/telescreen/entertainment{ network = list("thunder","court"); @@ -58042,21 +58310,6 @@ /obj/structure/table/wood, /turf/open/floor/carpet/red, /area/crew_quarters/cafeteria) -"sue" = ( -/obj/effect/turf_decal/guideline/guideline_edge/neutral{ - alpha = 255; - dir = 8 - }, -/obj/machinery/button/door{ - id = "quarantineshutters"; - name = "Quarantine Lockdown"; - pixel_x = -25; - req_access_txt = "39" - }, -/turf/open/floor/iron/white/side{ - dir = 4 - }, -/area/medical/medbay/central) "sun" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/bot, @@ -58081,22 +58334,6 @@ }, /turf/open/floor/iron/sepia, /area/quartermaster/storage) -"suS" = ( -/obj/machinery/mineral/ore_redemption{ - input_dir = 2; - output_dir = 1 - }, -/obj/machinery/door/window/westright{ - dir = 1; - name = "Cargo Desk"; - pixel_y = -1; - req_one_access_txt = "31;48" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/iron/dark, -/area/quartermaster/storage) "suU" = ( /obj/structure/table/glass, /obj/item/storage/backpack/duffelbag/med/implant, @@ -58137,6 +58374,14 @@ /obj/structure/sign/warning/fire, /turf/closed/wall/r_wall, /area/engine/engine_room) +"svJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosprivacy"; + name = "HoS Privacy Blast Door" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) "svL" = ( /obj/effect/turf_decal/tile/yellow/fourcorners/contrasted{ alpha = 230; @@ -58201,40 +58446,6 @@ /obj/effect/turf_decal/tile/dark_green/fourcorners/contrasted, /turf/open/floor/iron/dark, /area/bridge) -"swN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "20" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/poddoor{ - id = "Capoffice"; - name = "Captain Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/iron/dark, -/area/crew_quarters/heads/captain) -"swU" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/machinery/light, -/obj/effect/turf_decal/guideline/guideline_edge/red, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/iron, -/area/security/main) "sxf" = ( /obj/effect/turf_decal/tile/purple/fourcorners/contrasted, /turf/open/floor/iron/dark, @@ -58420,30 +58631,6 @@ }, /turf/open/space/basic, /area/solar/port/aft) -"sBs" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/computer/card{ - pixel_y = -3 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/heads/captain) "sBt" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 @@ -58472,21 +58659,6 @@ "sBR" = ( /turf/open/floor/iron, /area/maintenance/department/science) -"sCm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window, -/obj/structure/barricade/wooden/crude, -/turf/open/floor/plating, -/area/library) -"sCn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/machinery/camera/autoname/directional/east{ - network = list("ss13","security") - }, -/turf/open/floor/iron/dark, -/area/security/brig/dock) "sCJ" = ( /mob/living/simple_animal/slime{ name = "sycamore" @@ -58587,24 +58759,6 @@ /obj/structure/fans/tiny/invisible, /turf/open/space/basic, /area/space) -"sEO" = ( -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/obj/item/clothing/shoes/sneakers/orange, -/obj/item/clothing/shoes/sneakers/orange, -/obj/item/clothing/shoes/sneakers/orange, -/obj/item/clothing/shoes/sneakers/orange, -/obj/item/clothing/shoes/sneakers/orange, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner, -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/security/prison) "sEY" = ( /obj/machinery/computer/holodeck{ dir = 4 @@ -58656,17 +58810,6 @@ /obj/machinery/vending/hydroseeds, /turf/open/floor/prison, /area/security/prison) -"sFj" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/cardboard_cutout/adaptive/chess/king, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/camera/preset/toxins{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) "sFq" = ( /obj/structure/window/reinforced{ dir = 8 @@ -58676,15 +58819,6 @@ }, /turf/open/floor/glass/reinforced, /area/crew_quarters/cafeteria) -"sFt" = ( -/obj/item/toy/plush/flushed, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/dark, -/area/hallway/secondary/entry) "sFx" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 8 @@ -58696,6 +58830,17 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/iron/dark, /area/chapel/main) +"sFB" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/guideline/guideline_edge/red, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/closeup{ + dir = 1 + }, +/turf/open/floor/iron, +/area/security/main) "sFS" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -58709,6 +58854,16 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, /area/maintenance/starboard/aft) +"sGt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/open/floor/iron/freezer, +/area/security/prison) "sGv" = ( /obj/machinery/bluespace_beacon, /obj/effect/decal/cleanable/dirt, @@ -58742,6 +58897,15 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/central) +"sGI" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/iron, +/area/science/mixing) "sGJ" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 @@ -58798,6 +58962,28 @@ }, /turf/open/floor/carpet/blue, /area/crew_quarters/heads/captain) +"sHZ" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/iron, +/area/security/brig) "sIj" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -58845,15 +59031,16 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron, /area/bridge) -"sID" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, +"sIN" = ( /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/iron/tech/grid, -/area/engine/gravity_generator) +/obj/structure/chair/fancy/comfy{ + color = "#596479"; + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/hallway/primary/central) "sIV" = ( /obj/machinery/vending/custom{ pixel_y = -1 @@ -58923,33 +59110,23 @@ }, /turf/open/floor/carpet/blue, /area/crew_quarters/heads/hos) -"sJA" = ( -/obj/machinery/door/airlock/external{ - name = "Security External Airlock"; - req_access_txt = "1" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/layer_manifold{ - dir = 4 +"sJS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 }, -/obj/effect/turf_decal/stripes/closeup{ - dir = 1 +/obj/machinery/vending/wardrobe/cargo_wardrobe, +/obj/structure/railing{ + dir = 8 }, /turf/open/floor/iron/dark, -/area/security/brig/dock) -"sKd" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 +/area/quartermaster/office) +"sJX" = ( +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/siding/white{ + dir = 1 }, -/obj/effect/landmark/prisonspawn, -/turf/open/floor/iron/freezer, -/area/security/prison) +/turf/open/floor/glass/reinforced, +/area/hallway/primary/central) "sKg" = ( /obj/effect/turf_decal/tile/blue/fourcorners/contrasted{ alpha = 200; @@ -59081,6 +59258,16 @@ }, /turf/open/floor/iron/sepia, /area/quartermaster/office) +"sLU" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/east{ + network = list("ss13","engine") + }, +/turf/open/floor/iron/dark, +/area/engine/atmos) "sLX" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -59095,35 +59282,11 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/glass/reinforced, /area/chapel/main) -"sMe" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - pixel_y = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/vending/snack/blue, -/turf/open/floor/iron/dark/smooth_large, -/area/hallway/primary/central) "sMy" = ( /obj/structure/table/wood, /obj/item/stack/package_wrap, /turf/open/floor/wood, /area/vacant_room/office) -"sMC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/iron/tech, -/area/engine/engine_room) "sMK" = ( /obj/structure/disposalpipe/sorting/mail{ dir = 4; @@ -59140,27 +59303,19 @@ dir = 1 }, /area/medical/medbay/central) -"sMU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor{ - id = "AIwindows"; - name = "AI View Blast Door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/structure/cable/cyan{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/foyer) "sNa" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/quartermaster/office) +"sNg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/security/prison) "sNq" = ( /obj/structure/table/wood, /obj/item/pen/red, @@ -59256,23 +59411,6 @@ }, /turf/open/floor/iron, /area/engine/atmos) -"sOM" = ( -/obj/effect/turf_decal/guideline/guideline_edge/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/security/brig) -"sOQ" = ( -/obj/machinery/door/poddoor/preopen{ - id = "hosprivacy"; - name = "HoS Privacy Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) "sOT" = ( /obj/structure/table, /obj/item/stack/sheet/rglass{ @@ -59313,10 +59451,28 @@ }, /turf/open/floor/plating, /area/engine/atmospherics_engine) -"sPh" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/prison, -/area/security/prison) +"sPf" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood{ + pixel_y = -6 + }, +/obj/item/clipboard{ + pixel_x = -4 + }, +/obj/item/storage/photo_album{ + pixel_x = 2; + pixel_y = -7 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/carpet/royalblack, +/area/library) "sPZ" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/effect/turf_decal/bot, @@ -59369,14 +59525,16 @@ }, /turf/open/floor/iron, /area/crew_quarters/cryopods) -"sRd" = ( -/obj/structure/chair/fancy/sofa/old/right{ - dir = 1 +"sRe" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/chem_heater{ + pixel_y = 1 }, -/obj/effect/turf_decal/siding/wood, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/carpet/green, -/area/security/main) +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/iron, +/area/medical/apothecary) "sRf" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 1 @@ -59400,11 +59558,6 @@ /obj/item/stack/medical/gauze, /turf/open/floor/iron, /area/security/brig/medbay) -"sRq" = ( -/obj/machinery/vending/snack/blue, -/obj/effect/turf_decal/bot, -/turf/open/floor/holofloor/wood, -/area/security/main) "sRs" = ( /obj/structure/chair/office, /obj/effect/turf_decal/tile/dark_red/half/contrasted{ @@ -59455,6 +59608,20 @@ /obj/machinery/iv_drip, /turf/open/floor/iron, /area/maintenance/starboard/aft) +"sSn" = ( +/obj/structure/table/wood, +/obj/item/kirbyplants/random{ + pixel_y = 18 + }, +/obj/item/candle/infinite{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/pen/fountain/captain{ + pixel_x = -7 + }, +/turf/open/floor/carpet/purple, +/area/chapel/main) "sSo" = ( /obj/effect/turf_decal/bot, /obj/machinery/computer/security/telescreen/auxbase{ @@ -59474,23 +59641,22 @@ /obj/structure/table/wood, /turf/open/floor/wood, /area/maintenance/central) -"sSB" = ( -/obj/machinery/status_display/evac{ - pixel_x = -31; - pixel_y = -1 - }, -/obj/structure/chair/fancy/sofa/old/left{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 10 - }, -/turf/open/floor/carpet/green, -/area/security/main) "sSD" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai_upload) +"sSE" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" + }, +/obj/structure/cable/yellow, +/obj/effect/spawner/structure/window/reinforced/prison, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/prison) "sSF" = ( /obj/machinery/camera/autoname/directional/south{ network = list("ss13","cargo") @@ -59521,6 +59687,23 @@ }, /turf/open/floor/iron, /area/hallway/secondary/entry) +"sST" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopshutter"; + name = "Privacy Shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hop) "sSU" = ( /obj/structure/closet/crate, /obj/effect/spawner/lootdrop/maintenance/two, @@ -59585,6 +59768,34 @@ /obj/machinery/atmospherics/miner/station/oxygen, /turf/open/floor/engine/o2, /area/engine/atmos) +"sUm" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/security/prison) +"sUI" = ( +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/item/toy/beach_ball/holoball/dodgeball{ + name = "dodgeball 2 of 5" + }, +/obj/effect/landmark/start/security_officer, +/obj/item/food/popcorn, +/obj/item/food/deadmouse, +/obj/item/trash/raisins, +/obj/item/trash/syndi_cakes, +/turf/open/floor/iron/dark, +/area/security/brig) "sUJ" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -59623,13 +59834,6 @@ dir = 8 }, /area/medical/surgery) -"sVd" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/iron, -/area/hallway/primary/port) "sVi" = ( /turf/open/floor/iron/dark/side{ dir = 4 @@ -59654,18 +59858,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/tech, /area/engine/engine_room) -"sVZ" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/iron, -/area/hallway/primary/port) "sWe" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/iron, @@ -59689,13 +59881,6 @@ }, /turf/open/floor/iron/dark, /area/hallway/secondary/exit/departure_lounge) -"sWG" = ( -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/security/prison) "sWO" = ( /obj/effect/spawner/randomvend/snack, /obj/effect/turf_decal/bot, @@ -59756,24 +59941,6 @@ }, /turf/open/floor/iron, /area/science/mixing) -"sXN" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "quarantineshutters"; - name = "Isolation Shutters" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/medical/virology) "sXR" = ( /obj/effect/turf_decal/siding/wideplating/dark{ dir = 1 @@ -59794,21 +59961,6 @@ }, /turf/open/floor/catwalk_floor, /area/maintenance/department/bridge) -"sXU" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/eastleft{ - dir = 1; - name = "Research and Development Deliveries"; - req_one_access_txt = "7;29" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/iron, -/area/science/research) "sXY" = ( /obj/machinery/computer/prisoner/management{ dir = 4 @@ -59988,17 +60140,6 @@ }, /turf/open/floor/iron, /area/science/robotics) -"taQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor{ - id = "Capoffice"; - name = "Captain Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/captain) "taU" = ( /obj/structure/cable/yellow{ icon_state = "1-4" @@ -60098,26 +60239,34 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/engine/atmospherics_engine) -"tcL" = ( -/obj/machinery/chem_master/condimaster, -/obj/machinery/camera/autoname/directional/north, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/obj/structure/cable/yellow{ - icon_state = "4-8" +"tcI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "qm_warehouse"; + name = "warehouse Shutters" }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/crew_quarters/bar) -"tda" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/curtain/directional{ +/obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/iron/sepia, +/area/quartermaster/warehouse) +"tcP" = ( +/obj/machinery/computer/cargo/request{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 23 + }, /obj/structure/cable/yellow{ - icon_state = "0-2" + icon_state = "2-8" }, -/turf/open/floor/plating, -/area/quartermaster/qm) +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/security/main) "tdi" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -60144,6 +60293,13 @@ }, /turf/open/floor/iron, /area/crew_quarters/cafeteria) +"tdz" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/floor/iron/dark/smooth_large, +/area/hallway/primary/central) "tdF" = ( /obj/machinery/atmospherics/pipe/simple/dark/visible{ dir = 4 @@ -60171,13 +60327,6 @@ }, /turf/open/floor/iron/dark, /area/storage/tech) -"tej" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/security/brig/dock) "tem" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 1 @@ -60248,6 +60397,20 @@ }, /turf/open/floor/carpet/blue, /area/crew_quarters/heads/hos) +"tfi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridgewindows"; + name = "Bridge View Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/bridge) "tfq" = ( /turf/closed/wall/r_wall, /area/medical/virology) @@ -60287,6 +60450,13 @@ }, /turf/open/floor/iron, /area/crew_quarters/dorms) +"tfK" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/iron/tech/grid, +/area/engine/gravity_generator) "tfT" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -60403,6 +60573,13 @@ }, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) +"thD" = ( +/obj/effect/turf_decal/siding/wood/end, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre) "thE" = ( /obj/effect/turf_decal/tile/dark_blue{ alpha = 180 @@ -60451,6 +60628,32 @@ }, /turf/open/floor/iron/tech, /area/ai_monitored/storage/eva) +"tiw" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/brig) +"tiy" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/security/main) "tiF" = ( /obj/machinery/firealarm/directional/south, /turf/open/floor/carpet/purple, @@ -60471,17 +60674,17 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) -"tiL" = ( -/obj/machinery/door/poddoor{ - id = "Capoffice"; - name = "Captain Blast Door" +"tiQ" = ( +/obj/structure/railing{ + dir = 10 }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" +/obj/effect/spawner/randomvend/cola, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 10 }, -/turf/open/floor/plating, -/area/crew_quarters/heads/captain) +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/smooth_large, +/area/hallway/primary/central) "tiR" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 @@ -60518,34 +60721,6 @@ /obj/machinery/atmospherics/pipe/heat_exchanging/simple, /turf/open/floor/iron, /area/quartermaster/exploration_prep) -"tjz" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - alpha = 180; - dir = 4 - }, -/obj/effect/turf_decal/guideline/guideline_in/yellow{ - dir = 1 - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Foyer"; - req_one_access_txt = "32" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Engidesk"; - name = "engineering Security Door" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/iron, -/area/engine/break_room) "tjA" = ( /turf/closed/wall/r_wall, /area/medical/surgery) @@ -60636,32 +60811,6 @@ }, /turf/open/floor/iron/white, /area/medical/sleeper) -"tla" = ( -/obj/effect/turf_decal/tile/black/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/techmaint, -/area/security/prison) -"tlq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted{ - alpha = 180 - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/open/floor/iron, -/area/engine/engineering) "tlI" = ( /obj/structure/lattice, /obj/effect/landmark/blobstart, @@ -60857,35 +61006,6 @@ }, /turf/open/floor/plating/airless, /area/science/test_area) -"tnK" = ( -/obj/machinery/plumbing/output{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/obj/machinery/door/window/westleft{ - dir = 1; - name = "plumbing Factory Duct Access"; - red_alert_access = 1; - req_one_access_txt = "5; 33" - }, -/obj/machinery/door/window/westleft{ - dir = 2; - name = "plumbing Factory Duct Access"; - red_alert_access = 1; - req_one_access_txt = "5; 33" - }, -/turf/open/floor/iron/dark, -/area/medical/chemistry) -"tom" = ( -/obj/effect/turf_decal/tile/black/fourcorners, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/iron/techmaint, -/area/security/prison) "tos" = ( /obj/effect/turf_decal/bot, /obj/structure/closet/crate, @@ -60896,6 +61016,20 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/maintenance/department/medical/morgue) +"toz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/door/poddoor/preopen{ + id = "cmoprivacy"; + name = "CMO Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) "toN" = ( /obj/effect/landmark/xeno_spawn, /obj/structure/cable/yellow{ @@ -61100,34 +61234,6 @@ /obj/effect/turf_decal/bot/left, /turf/open/floor/iron/techmaint, /area/engine/gravity_generator) -"tqP" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/purple/fourcorners/contrasted, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - id_tag = "ResearchExt"; - name = "Research Division"; - req_one_access_txt = "7;29" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/iron/white, -/area/science/research) "tqY" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/stripes/line{ @@ -61183,10 +61289,6 @@ /obj/machinery/space_heater, /turf/open/floor/plating, /area/maintenance/central) -"trP" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/security/main) "trS" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research/glass{ @@ -61217,6 +61319,15 @@ }, /turf/open/floor/glass/reinforced, /area/chapel/main) +"tsy" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/security{ + dir = 8; + network = list("security") + }, +/turf/open/floor/iron/dark, +/area/security/main) "tsH" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -61267,6 +61378,30 @@ "ttt" = ( /turf/closed/wall, /area/quartermaster/qm) +"ttz" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/item/bikehorn/rubberducky, +/turf/open/floor/noslip/standard, +/area/crew_quarters/toilet) +"ttG" = ( +/obj/machinery/camera/autoname/directional/north{ + c_tag = "Medbay - Break Room"; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/obj/effect/spawner/randomvend/snack, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron, +/area/medical/break_room) "ttJ" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/techstorage/security, @@ -61305,30 +61440,46 @@ }, /turf/open/floor/iron, /area/hallway/primary/fore) -"ttW" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","security") - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/engine/engine_room) "tuq" = ( /obj/machinery/firealarm/directional/east, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/iron/white, /area/science/xenobiology) +"tuz" = ( +/obj/effect/turf_decal/tile/black/fourcorners, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_x = -1; + pixel_y = 12 + }, +/obj/item/reagent_containers/glass/bucket{ + pixel_x = -8 + }, +/obj/item/reagent_containers/glass/bucket{ + pixel_x = -4 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/item/reagent_containers/glass/bucket{ + pixel_x = 4 + }, +/obj/item/shovel/spade{ + pixel_x = -5; + pixel_y = -4 + }, +/obj/item/cultivator{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/iron/techmaint, +/area/security/prison) "tuD" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -61393,31 +61544,6 @@ }, /turf/open/floor/iron, /area/security/brig/dock) -"tvv" = ( -/obj/effect/turf_decal/guideline/guideline_half_edge/blue{ - dir = 4 - }, -/obj/effect/turf_decal/guideline/guideline_half_edge/blue{ - dir = 10 - }, -/obj/effect/turf_decal/guideline/guideline_edge_alt/blue{ - dir = 8 - }, -/obj/effect/turf_decal/guideline/guideline_tri/blue, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","medbay"); - view_range = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/iron/white/side{ - dir = 10 - }, -/area/medical/medbay/central) "tvG" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch"; @@ -61442,6 +61568,38 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/engine/engineering) +"tvZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrign"; + name = "Brig"; + req_one_access_txt = "63;38" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/door/poddoor/preopen{ + id = "brigentrance"; + name = "Brig Blast Door" + }, +/obj/effect/turf_decal/stripes/closeup, +/turf/open/floor/iron, +/area/security/brig) "twg" = ( /mob/living/simple_animal/slime{ name = "alizee" @@ -61540,16 +61698,6 @@ /obj/structure/lattice/catwalk/over, /turf/open/floor/plating, /area/quartermaster/qm) -"txn" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/security/brig/dock) "txq" = ( /obj/structure/sign/departments/medbay/alt2, /turf/closed/wall, @@ -61583,6 +61731,14 @@ }, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) +"txQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/structure/window, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/library) "txT" = ( /obj/machinery/firealarm{ dir = 4; @@ -61607,6 +61763,15 @@ }, /turf/open/floor/iron/dark, /area/engine/atmos) +"tye" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/science/xenobiology) "tyh" = ( /obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ alpha = 180 @@ -61658,6 +61823,14 @@ }, /turf/open/floor/iron, /area/medical/medbay/lobby) +"tyK" = ( +/obj/item/assembly/flash/handheld/weak{ + pixel_x = 6; + pixel_y = 11 + }, +/obj/structure/table/wood, +/turf/open/floor/carpet/green, +/area/security/main) "tyR" = ( /obj/machinery/light{ dir = 1 @@ -61680,6 +61853,15 @@ }, /turf/open/floor/iron, /area/science/lobby) +"tzd" = ( +/obj/effect/turf_decal/tile/black/fourcorners, +/obj/effect/turf_decal/bot_white, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/weightmachine, +/turf/open/floor/prison, +/area/security/prison) "tzk" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -32 @@ -61702,16 +61884,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/medical/cryo) -"tzI" = ( -/obj/machinery/conveyor{ - id = "MailConv" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -32 - }, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron/dark, -/area/quartermaster/office) "tzQ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -61777,17 +61949,6 @@ }, /turf/open/floor/iron/sepia, /area/quartermaster/office) -"tAu" = ( -/obj/machinery/newscaster{ - pixel_x = 32; - pixel_y = 1 - }, -/obj/structure/table/reinforced, -/obj/machinery/firealarm/directional/north, -/obj/machinery/fax/eng, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/dark, -/area/engine/engineering) "tAA" = ( /obj/structure/sign/warning/fire, /turf/closed/wall/r_wall/rust, @@ -61880,23 +62041,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) -"tBL" = ( -/obj/structure/table/reinforced, -/obj/machinery/light_switch{ - pixel_x = -8; - pixel_y = -21 - }, -/obj/item/storage/lockbox/loyalty, -/obj/machinery/door/window/brigdoor/westleft{ - name = "mind Shields"; - req_access_txt = "3" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/clothing/suit/armor/laserproof, -/turf/open/floor/iron, -/area/ai_monitored/security/armory) "tBN" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -62001,6 +62145,33 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/department/science) +"tDm" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "radiation Shelter" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/closeup{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron/techmaint, +/area/security/prison/shielded) +"tDn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/carpet/green, +/area/security/main) "tDu" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/guideline/guideline_edge/purple, @@ -62218,6 +62389,22 @@ "tGT" = ( /turf/closed/wall, /area/janitor) +"tHa" = ( +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/obj/item/toy/plush/beeplushie{ + name = "beetle plushie"; + desc = "A cute toy that resembles an even cuter beetle." + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/prison, +/area/security/prison) "tHB" = ( /obj/structure/cable/yellow{ icon_state = "2-4" @@ -62293,14 +62480,6 @@ "tIR" = ( /turf/closed/wall, /area/maintenance/department/science) -"tIS" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/engine/atmos) "tIT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /obj/effect/turf_decal/tile/dark_blue/half/contrasted{ @@ -62360,6 +62539,22 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/department/medical/morgue) +"tJL" = ( +/obj/machinery/mineral/ore_redemption{ + input_dir = 2; + output_dir = 1 + }, +/obj/machinery/door/window/westright{ + dir = 1; + name = "Cargo Desk"; + pixel_y = -1; + req_one_access_txt = "31;48" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/iron/dark, +/area/quartermaster/storage) "tJM" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -62433,6 +62628,35 @@ "tKJ" = ( /turf/closed/wall, /area/maintenance/department/bridge) +"tKP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + alpha = 180; + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/corner_ramp/offset{ + alpha = 180; + dir = 4 + }, +/obj/effect/turf_decal/guideline/guideline_half_ramp/_inverted/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/engine/engineering) "tKV" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 1 @@ -62469,6 +62693,14 @@ }, /turf/open/floor/iron, /area/hallway/secondary/entry) +"tMD" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering Security Door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/noslip/standard, +/area/engine/engineering) "tMI" = ( /obj/structure/closet, /obj/effect/spawner/lootdrop/maintenance/eight, @@ -62564,6 +62796,18 @@ }, /turf/open/floor/iron/white, /area/medical/apothecary) +"tNG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/carpet/green, +/area/security/main) "tNU" = ( /obj/machinery/ai_slipper{ uses = 10 @@ -62640,6 +62884,26 @@ dir = 5 }, /area/science/research) +"tPY" = ( +/obj/structure/chair/fancy/bench{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -34 + }, +/obj/effect/turf_decal/guideline/guideline_edge_alt/red{ + dir = 1 + }, +/obj/effect/turf_decal/guideline/guideline_half_edge/red, +/obj/effect/turf_decal/guideline/guideline_half_edge/red{ + dir = 5 + }, +/obj/effect/turf_decal/guideline/guideline_tri/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron, +/area/security/main) "tQd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -62648,27 +62912,6 @@ }, /turf/open/floor/iron/dark, /area/bridge/meeting_room) -"tQh" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/main) "tQi" = ( /obj/effect/turf_decal/tile/red/anticorner/contrasted{ alpha = 180 @@ -62735,6 +62978,18 @@ }, /turf/open/floor/prison, /area/security/prison) +"tQA" = ( +/obj/item/kirbyplants{ + icon_state = "plant-18"; + pixel_x = 16; + pixel_y = -4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood, +/turf/open/floor/carpet/red, +/area/crew_quarters/cafeteria) "tQK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 10 @@ -62759,6 +63014,14 @@ /obj/item/book/manual/wiki/sopsupply, /turf/open/floor/iron/sepia, /area/quartermaster/office) +"tQM" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/guideline/guideline_edge/red, +/obj/machinery/light, +/turf/open/floor/iron, +/area/security/main) "tQR" = ( /obj/structure/table/wood, /obj/item/paicard, @@ -62827,40 +63090,6 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/hallway/primary/central) -"tSg" = ( -/obj/effect/turf_decal/tile/black/fourcorners, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/table, -/obj/machinery/reagentgrinder{ - pixel_x = -1; - pixel_y = 12 - }, -/obj/item/reagent_containers/glass/bucket{ - pixel_x = -8 - }, -/obj/item/reagent_containers/glass/bucket{ - pixel_x = -4 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/item/reagent_containers/glass/bucket{ - pixel_x = 4 - }, -/obj/item/shovel/spade{ - pixel_x = -5; - pixel_y = -4 - }, -/obj/item/cultivator{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/iron/techmaint, -/area/security/prison) "tSx" = ( /obj/structure/lattice/catwalk, /obj/machinery/power/solar{ @@ -62953,6 +63182,20 @@ }, /turf/open/floor/plating, /area/maintenance/department/science) +"tVh" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridgewindows"; + name = "Bridge View Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/bridge) "tVj" = ( /obj/machinery/door/airlock/research/glass{ id_tag = "RoboFoyer"; @@ -63052,6 +63295,16 @@ }, /turf/open/floor/iron, /area/quartermaster/sorting) +"tWK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","security") + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark, +/area/security/main) "tWL" = ( /obj/machinery/firealarm/directional/west, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -63198,6 +63451,47 @@ }, /turf/open/floor/iron, /area/medical/genetics/cloning) +"tYN" = ( +/obj/structure/table/wood, +/obj/item/toy/figure/curator{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen/fountain/captain{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/library) +"tYP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/dark/side, +/area/hallway/primary/central) +"tYT" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/prison) "tYV" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -63273,10 +63567,18 @@ }, /turf/open/floor/iron/white, /area/medical/sleeper) -"ual" = ( -/obj/structure/sign/poster/official/walk, -/turf/closed/wall/r_wall, -/area/security/prison) +"tZS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 30 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","engine") + }, +/turf/open/floor/iron/dark, +/area/engine/engine_room) "uav" = ( /obj/machinery/status_display/evac{ pixel_y = 32 @@ -63308,6 +63610,18 @@ /obj/structure/table/wood, /turf/open/floor/carpet/green, /area/crew_quarters/cafeteria) +"ubE" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/iron/dark, +/area/engine/engine_room) "ubG" = ( /obj/effect/turf_decal/stripes/end{ dir = 8 @@ -63456,15 +63770,6 @@ }, /turf/open/floor/iron/sepia, /area/quartermaster/office) -"ueh" = ( -/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted{ - alpha = 180 - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/open/floor/iron, -/area/engine/engineering) "uer" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral/anticorner{ @@ -63507,6 +63812,18 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/iron/dark, /area/crew_quarters/bar) +"ufe" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Cooling Loop to Gas" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/iron/tech, +/area/engine/engine_room) "uff" = ( /obj/effect/turf_decal/bot, /obj/structure/cable/yellow{ @@ -63651,6 +63968,27 @@ }, /turf/open/floor/iron/dark, /area/security/prison/shielded) +"ugK" = ( +/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted{ + alpha = 180 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/open/floor/iron, +/area/engine/engineering) "ugX" = ( /obj/effect/turf_decal/guideline/guideline_half_edge/purple, /obj/effect/turf_decal/guideline/guideline_half_edge/purple{ @@ -63666,21 +64004,6 @@ dir = 9 }, /area/science/lobby) -"uhp" = ( -/obj/effect/turf_decal/tile/black/fourcorners, -/obj/machinery/seed_extractor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/seeds/carrot, -/obj/item/seeds/corn, -/obj/item/seeds/onion, -/obj/item/seeds/potato, -/obj/item/seeds/soya, -/obj/item/seeds/cabbage, -/obj/item/seeds/wheat, -/turf/open/floor/iron/techmaint, -/area/security/prison) "uhy" = ( /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /obj/machinery/disposal/bin, @@ -63726,50 +64049,11 @@ }, /turf/open/floor/iron/sepia, /area/quartermaster/storage) -"uim" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/machinery/camera/autoname/directional/south{ - network = list("ss13","security") - }, -/obj/effect/turf_decal/guideline/guideline_edge/red, -/obj/item/radio/intercom{ - dir = 1; - pixel_x = 1; - pixel_y = -36 - }, -/turf/open/floor/iron, -/area/security/main) "uin" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/sepia, /area/maintenance/port/central) -"uiq" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/turf/open/floor/iron/dark, -/area/security/prison) -"uiw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosroom"; - name = "HoS Room Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) "uiA" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/manifold/yellow/visible{ @@ -63972,14 +64256,6 @@ /obj/structure/sign/warning/vacuum, /turf/closed/wall, /area/hallway/secondary/exit/departure_lounge) -"ulM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters"; - name = "chemistry Shutters" - }, -/turf/open/floor/plating, -/area/medical/apothecary) "umg" = ( /obj/machinery/light{ dir = 8 @@ -63989,6 +64265,18 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/iron/cafeteria, /area/crew_quarters/kitchen) +"uml" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/curtain, +/obj/machinery/shower{ + dir = 8; + name = "emergency shower"; + pixel_x = -5; + pixel_y = -5 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/noslip/standard, +/area/security/prison) "umx" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral{ @@ -64008,16 +64296,29 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron, /area/crew_quarters/cafeteria) -"unq" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 +"umX" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + alpha = 180 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering/glass{ + req_one_access_txt = "32" }, +/obj/effect/turf_decal/guideline/guideline_in/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, -/area/security/brig/dock) +/area/engine/engineering) "unB" = ( /obj/structure/cable/yellow{ icon_state = "2-8" @@ -64136,35 +64437,6 @@ }, /turf/open/floor/carpet/purple, /area/chapel/main) -"upD" = ( -/obj/structure/table, -/obj/item/assembly/igniter{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter{ - pixel_x = -6; - pixel_y = -6 - }, -/obj/item/book/manual/wiki/toxins{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/science/mixing) "upJ" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -64199,18 +64471,6 @@ }, /turf/open/floor/iron/dark, /area/science/nanite) -"upS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/button/door{ - id = "brigentrance"; - name = "Brig Lockdown Control"; - pixel_x = -25; - req_access_txt = "1" - }, -/turf/open/floor/iron/dark, -/area/security/main) "uql" = ( /obj/effect/decal/cleanable/oil, /turf/open/floor/iron/sepia, @@ -64269,15 +64529,6 @@ }, /turf/open/floor/iron/dark, /area/bridge) -"usU" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/turf/open/floor/carpet/green, -/area/security/main) "utb" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -64318,22 +64569,6 @@ }, /turf/open/floor/catwalk_floor, /area/maintenance/port/central) -"utM" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/turf/open/floor/iron, -/area/security/main) "utS" = ( /obj/machinery/door/airlock/external{ name = "Mining Dock Airlock"; @@ -64374,6 +64609,13 @@ }, /turf/open/floor/iron/dark, /area/science/shuttledock) +"uun" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/brig) "uuu" = ( /obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/stripes/line{ @@ -64423,15 +64665,6 @@ }, /turf/open/floor/iron/white, /area/science/explab) -"uvk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/security/prison) "uvn" = ( /obj/structure/disposalpipe/segment{ dir = 2 @@ -64643,18 +64876,6 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"uyJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "bridgewindows"; - name = "Bridge View Blast Door" - }, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/bridge) "uyQ" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/stripes/line{ @@ -64665,12 +64886,6 @@ }, /turf/open/floor/iron/white/side, /area/science/lab) -"uzb" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/security/prison) "uze" = ( /obj/structure/lattice/catwalk, /obj/structure/cable/orange{ @@ -64718,6 +64933,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/engine/engine_room) +"uAc" = ( +/obj/structure/bed/roller, +/obj/machinery/door/window/eastleft{ + dir = 1; + name = "Quarantine Pen B"; + req_access_txt = "39" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/iron/grid/steel, +/area/medical/virology) "uAo" = ( /obj/structure/lattice, /obj/machinery/status_display/evac{ @@ -64777,6 +65004,17 @@ /obj/machinery/airalarm/directional/west, /turf/open/floor/catwalk_floor/iron_dark, /area/maintenance/disposal) +"uBo" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/shower{ + dir = 1; + name = "emergency shower" + }, +/obj/effect/turf_decal/loading_area/white{ + dir = 8 + }, +/turf/open/floor/noslip/standard, +/area/engine/atmos) "uBu" = ( /obj/structure/chair/office/light{ dir = 8 @@ -64784,6 +65022,26 @@ /obj/effect/turf_decal/tile/purple/fourcorners/contrasted, /turf/open/floor/iron/dark, /area/science/nanite) +"uBv" = ( +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room"; + req_access_txt = "8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/iron, +/area/science/misc_lab) "uBD" = ( /obj/machinery/door/airlock/research{ name = "Exploration Preparation Room"; @@ -64918,6 +65176,17 @@ }, /turf/open/floor/iron, /area/crew_quarters/dorms) +"uDz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "brigentrance"; + name = "Brig Blast Door" + }, +/turf/open/floor/plating, +/area/security/brig) "uDE" = ( /obj/effect/turf_decal/bot, /obj/machinery/power/apc/auto_name/directional/south, @@ -64958,18 +65227,6 @@ /obj/machinery/atmospherics/pipe/simple/yellow/visible, /turf/open/space/basic, /area/space/nearstation) -"uDS" = ( -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/extinguisher_cabinet{ - pixel_x = -32 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/quartermaster/qm) "uEa" = ( /obj/item/kirbyplants/random, /turf/open/floor/iron/grid/steel, @@ -65009,12 +65266,6 @@ }, /turf/open/floor/iron, /area/crew_quarters/cafeteria) -"uEB" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/iron/freezer, -/area/crew_quarters/kitchen/coldroom) "uEC" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/firedoor, @@ -65168,6 +65419,19 @@ }, /turf/open/floor/iron, /area/hallway/primary/port) +"uHH" = ( +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/camera/autoname/directional/north{ + c_tag = "MiniSat Upload West"; + network = list("minisat","aiupload") + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/aisat/foyer) "uHQ" = ( /obj/structure/window/reinforced, /obj/effect/turf_decal/siding/dark{ @@ -65190,45 +65454,6 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/storage) -"uIi" = ( -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay"; - req_access_txt = "5" - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "quarantineshutters"; - name = "Quarantine Shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/iron, -/area/medical/medbay/central) -"uIo" = ( -/obj/machinery/computer/security{ - pixel_y = -3 - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","security") - }, -/obj/machinery/computer/security/telescreen{ - network = list("ss13"); - pixel_y = 25 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/carpet/red, -/area/security/detectives_office) "uIs" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -65263,6 +65488,17 @@ }, /turf/open/floor/iron, /area/engine/atmos) +"uIB" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/cardboard_cutout/adaptive/chess/king, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/camera/preset/toxins{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) "uIH" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ @@ -65316,20 +65552,6 @@ /obj/structure/table/glass, /turf/open/floor/iron/dark, /area/security/brig/medbay) -"uJI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/sorting/mail/destination/testing_range{ - dir = 1 - }, -/turf/open/floor/iron, -/area/science/mixing) "uKa" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -65350,22 +65572,6 @@ }, /turf/open/floor/iron/dark, /area/science/robotics) -"uKh" = ( -/obj/effect/turf_decal/tile/dark_red/half/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/obj/item/toy/plush/beeplushie{ - name = "beetle plushie"; - desc = "A cute toy that resembles an even cuter beetle." - }, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/prison, -/area/security/prison) "uKi" = ( /turf/closed/wall, /area/science/robotics/mechbay) @@ -65412,6 +65618,31 @@ /obj/item/storage/backpack/satchel/tox, /turf/open/floor/iron, /area/science/shuttledock) +"uKZ" = ( +/obj/effect/turf_decal/guideline/guideline_half_edge/blue{ + dir = 4 + }, +/obj/effect/turf_decal/guideline/guideline_half_edge/blue{ + dir = 10 + }, +/obj/effect/turf_decal/guideline/guideline_edge_alt/blue{ + dir = 8 + }, +/obj/effect/turf_decal/guideline/guideline_tri/blue, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","medbay"); + view_range = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/iron/white/side{ + dir = 10 + }, +/area/medical/medbay/central) "uLb" = ( /obj/structure/disposalpipe/segment{ dir = 1 @@ -65517,14 +65748,6 @@ /obj/structure/table/wood, /turf/open/floor/wood, /area/maintenance/central) -"uLK" = ( -/obj/machinery/camera/autoname/directional/west{ - c_tag = "Xenobiology Lab - Pen #5"; - network = list("ss13","rd","xeno") - }, -/obj/structure/window/reinforced, -/turf/open/floor/engine, -/area/science/xenobiology) "uLR" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -65573,6 +65796,18 @@ dir = 1 }, /area/hallway/primary/central) +"uMO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/iron/tech, +/area/engine/engine_room) "uMP" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, @@ -65612,10 +65847,33 @@ }, /turf/open/floor/engine/plasma, /area/engine/atmos) +"uNT" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 5 + }, +/obj/effect/turf_decal/guideline/guideline_edge/red, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/iron, +/area/security/main) "uOd" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/maintenance/department/medical) +"uOf" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark, +/area/security/brig) "uOp" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -65692,16 +65950,6 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark, /area/engine/atmos) -"uPp" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/turf/open/floor/iron, -/area/medical/medbay/lobby) "uPJ" = ( /obj/structure/table/wood, /obj/machinery/computer/libraryconsole{ @@ -65725,16 +65973,6 @@ }, /turf/open/space/basic, /area/solar/port/fore) -"uPV" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/security/brig) "uQg" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -65764,6 +66002,16 @@ /obj/structure/mopbucket, /turf/open/floor/plating, /area/hallway/secondary/service) +"uQB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark, +/area/engine/engine_room) "uQC" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted, /obj/machinery/light_switch{ @@ -65805,6 +66053,24 @@ }, /turf/open/floor/iron, /area/hallway/primary/port) +"uRt" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridgewindows"; + name = "Bridge View Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/window/reinforced/spawner, +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/obj/structure/transit_tube, +/turf/open/floor/iron/dark, +/area/bridge) "uRG" = ( /turf/open/floor/plating{ broken = 1 @@ -65825,13 +66091,6 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/floor/engine, /area/science/explab) -"uSo" = ( -/obj/effect/turf_decal/tile/black/fourcorners, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/techmaint, -/area/security/prison) "uSu" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /obj/effect/turf_decal/guideline/guideline_edge/purple{ @@ -65888,28 +66147,6 @@ }, /turf/open/floor/engine, /area/security/nuke_storage) -"uTu" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/hand_labeler{ - pixel_x = 4; - pixel_y = 11 - }, -/obj/item/storage/belt/utility{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/multitool{ - pixel_x = -8; - pixel_y = 12 - }, -/turf/open/floor/iron/dark, -/area/quartermaster/office) "uTv" = ( /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai) @@ -65977,6 +66214,16 @@ dir = 4 }, /area/hallway/primary/central) +"uVC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/guideline/guideline_edge/brown{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron, +/area/hallway/primary/port) "uVJ" = ( /obj/structure/lattice, /turf/open/space/basic, @@ -66032,23 +66279,6 @@ /obj/structure/cable/yellow, /turf/open/floor/plating, /area/bridge/meeting_room) -"uWx" = ( -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","rd") - }, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science RC"; - pixel_y = 30; - receive_ore_updates = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple/fourcorners/contrasted, -/turf/open/floor/iron/dark, -/area/science/nanite) "uWy" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 9 @@ -66149,13 +66379,6 @@ }, /turf/open/floor/iron, /area/engine/engine_room) -"uXK" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/mob/living/carbon/monkey, -/turf/open/floor/vault, -/area/medical/genetics) "uXN" = ( /obj/effect/turf_decal/tile/blue/fourcorners/contrasted{ alpha = 200; @@ -66235,26 +66458,6 @@ "uYx" = ( /turf/closed/wall/r_wall, /area/ai_monitored/security/armory) -"uYH" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted{ - alpha = 180 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/open/floor/iron, -/area/engine/engineering) "uYJ" = ( /obj/machinery/door/airlock/command{ name = "Captain's Quarters"; @@ -66344,6 +66547,48 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/sepia, /area/maintenance/port/central) +"vam" = ( +/obj/machinery/recharger, +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/bottle/wine{ + pixel_x = -9; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 10; + pixel_y = 13 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 10; + pixel_y = 5 + }, +/obj/machinery/light, +/obj/machinery/computer/security/telescreen/entertainment{ + network = list("thunder","court"); + pixel_y = -32 + }, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","rd") + }, +/turf/open/floor/carpet, +/area/quartermaster/exploration_prep) +"vaU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor{ + id = "AIwindows"; + name = "AI View Blast Door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/foyer) "vbc" = ( /obj/effect/turf_decal/tile/blue{ alpha = 200; @@ -66460,14 +66705,6 @@ dir = 4 }, /area/medical/medbay/central) -"vcX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor{ - id = "AIwindows"; - name = "AI View Blast Door" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/foyer) "vdf" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -66498,18 +66735,6 @@ /obj/item/stock_parts/cell/high, /turf/open/floor/iron/tech, /area/engine/atmos) -"vei" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopshutter"; - name = "Privacy Shutters" - }, -/turf/open/floor/engine{ - initial_gas_mix = "n2=100;TEMP=80"; - name = "mainframe floor" - }, -/area/tcommsat/server) "vem" = ( /obj/machinery/light, /obj/effect/turf_decal/tile/neutral, @@ -66600,34 +66825,22 @@ "vgn" = ( /turf/open/floor/engine/air, /area/engine/atmos) -"vgF" = ( -/obj/machinery/status_display/door_timer{ - id = "cell"; - name = "Solitary confinement timer"; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/turf/open/floor/prison, -/area/security/prison) "vgM" = ( /obj/machinery/vending/medical, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat/foyer) +"vgS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridgewindows"; + name = "Bridge View Blast Door" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/bridge) "vhc" = ( /turf/open/floor/iron/dark, /area/crew_quarters/heads/chief) -"vhf" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/wood, -/obj/structure/table/wood, -/turf/open/floor/carpet/green, -/area/hallway/secondary/exit/departure_lounge) "vhl" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -66809,14 +67022,6 @@ }, /turf/open/floor/iron/sepia, /area/quartermaster/warehouse) -"vki" = ( -/obj/structure/chair, -/obj/effect/turf_decal/bot, -/obj/machinery/camera/autoname/directional/north{ - c_tag = "Teleporter Room" - }, -/turf/open/floor/iron/dark, -/area/hallway/secondary/exit/departure_lounge) "vkj" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/landmark/xeno_spawn, @@ -66829,19 +67034,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /turf/open/floor/wood, /area/security/detectives_office) -"vkp" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/security/main) "vks" = ( /obj/machinery/firealarm/directional/west, /obj/structure/closet, @@ -66903,20 +67095,6 @@ }, /turf/open/floor/wood, /area/chapel/office) -"vlb" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridgewindows"; - name = "Bridge View Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/bridge) "vlm" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -66990,6 +67168,17 @@ }, /turf/open/space/basic, /area/space/nearstation) +"vmt" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/secure_closet/evidence, +/turf/open/floor/iron/dark, +/area/security/brig) "vmu" = ( /obj/structure/showcase/machinery/tv, /obj/structure/table/wood, @@ -67008,29 +67197,6 @@ }, /turf/open/space/basic, /area/space/nearstation) -"vmS" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/closeup{ - dir = 1 - }, -/turf/open/floor/iron, -/area/security/main) "vnq" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/dust, @@ -67143,6 +67309,9 @@ }, /turf/open/floor/iron/white, /area/science/research) +"voS" = ( +/turf/closed/wall, +/area/security/main) "voY" = ( /obj/structure/railing{ dir = 8 @@ -67173,15 +67342,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"vpn" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "Chefwindow"; - name = "Chef Window" - }, -/turf/open/floor/iron/white, -/area/crew_quarters/kitchen) "vpR" = ( /obj/effect/turf_decal/tile/blue/half/contrasted{ dir = 8 @@ -67254,6 +67414,18 @@ }, /turf/open/floor/carpet/royalblue, /area/crew_quarters/heads/chief) +"vrt" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/science/mixing) "vrw" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "MiniSat Maintenance"; @@ -67342,6 +67514,16 @@ "vtI" = ( /turf/closed/wall, /area/chapel/main) +"vtK" = ( +/obj/effect/turf_decal/siding/wideplating/dark, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","security") + }, +/turf/open/floor/carpet/red, +/area/crew_quarters/heads/hos) "vuo" = ( /obj/structure/sign/poster/official/help_others, /turf/closed/wall, @@ -67422,6 +67604,13 @@ }, /turf/open/floor/iron, /area/vacant_room/commissary/commissary2) +"vvO" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood, +/turf/open/floor/carpet/green, +/area/hallway/secondary/exit/departure_lounge) "vvU" = ( /obj/item/chair{ dir = 1 @@ -67451,6 +67640,21 @@ }, /turf/open/floor/iron, /area/hallway/primary/fore) +"vwp" = ( +/obj/structure/sign/departments/minsky/supply/cargo, +/turf/closed/wall, +/area/quartermaster/qm) +"vwL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/turf/open/floor/iron/dark, +/area/security/main) "vwR" = ( /obj/effect/turf_decal/bot, /obj/machinery/portable_atmospherics/canister/oxygen, @@ -67498,6 +67702,25 @@ }, /turf/open/floor/iron/dark, /area/quartermaster/miningdock) +"vxL" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/main) "vxY" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted, /obj/structure/disposalpipe/segment{ @@ -67523,6 +67746,21 @@ }, /turf/open/floor/iron, /area/medical/medbay/lobby) +"vyk" = ( +/obj/machinery/door/window/eastleft{ + dir = 2; + name = "Bar Door"; + req_access_txt = "25" + }, +/obj/structure/window/reinforced{ + dir = 8; + pixel_y = 1 + }, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/wideplating/dark, +/turf/open/floor/iron/dark, +/area/crew_quarters/bar) "vyO" = ( /obj/effect/turf_decal/tile/purple/fourcorners/contrasted, /obj/structure/cable/yellow{ @@ -67600,6 +67838,18 @@ /obj/item/knife/kitchen, /turf/open/floor/iron/white, /area/crew_quarters/kitchen) +"vzm" = ( +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/iron, +/area/security/brig) "vzt" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted, /obj/machinery/light{ @@ -67632,6 +67882,21 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/department/security) +"vAu" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Gas to Cooling Loop" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/iron/tech, +/area/engine/engine_room) "vAC" = ( /obj/structure/sign/warning/biohazard, /turf/closed/wall, @@ -67719,6 +67984,17 @@ dir = 1 }, /area/science/lobby) +"vBu" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/obj/effect/landmark/prisonspawn, +/turf/open/floor/iron/freezer, +/area/security/prison) "vBv" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -67747,27 +68023,22 @@ }, /turf/open/floor/iron, /area/engine/atmos) +"vBZ" = ( +/obj/structure/railing, +/obj/structure/chair/fancy/comfy{ + buildstackamount = 0; + color = "#742925"; + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating/dark, +/turf/open/floor/iron/dark/side, +/area/hallway/primary/central) "vCl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/rack, /obj/effect/spawner/lootdrop/maintenance/two, /turf/open/floor/plating, /area/maintenance/department/security) -"vCn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Gear Room"; - req_one_access_txt = "1" - }, -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/effect/turf_decal/stripes/closeup{ - dir = 1 - }, -/turf/open/floor/iron, -/area/security/main) "vCx" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -67806,22 +68077,6 @@ name = "mainframe floor" }, /area/tcommsat/server) -"vCZ" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering Security Door" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/iron/dark, -/area/engine/engineering) "vDd" = ( /obj/structure/railing{ dir = 9 @@ -67898,22 +68153,6 @@ }, /turf/open/floor/iron, /area/engine/engine_room) -"vDJ" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/effect/turf_decal/guideline/guideline_edge/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/closeup{ - dir = 1 - }, -/turf/open/floor/iron, -/area/security/main) "vDS" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 8 @@ -68005,22 +68244,6 @@ }, /turf/open/space/basic, /area/solar/port/fore) -"vFA" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/carpet/royalblack, -/area/library) "vFF" = ( /obj/effect/turf_decal/stripes{ dir = 1 @@ -68100,46 +68323,24 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/maintenance/department/security) -"vGZ" = ( -/obj/structure/window/reinforced, -/turf/open/floor/wood, -/area/medical/exam_room) +"vGR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north{ + c_tag = "Teleporter Room" + }, +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole/bookmanagement, +/turf/open/floor/carpet/royalblack, +/area/library) "vHd" = ( /obj/machinery/door/airlock/external{ name = "Escape Pod 1" }, /turf/open/floor/plating, /area/security/brig/medbay) -"vHl" = ( -/obj/structure/table/reinforced, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1423; - listening = 0; - name = "Interrogation Intercom"; - pixel_x = -27; - pixel_y = -3 - }, -/obj/item/flashlight/lamp, -/turf/open/floor/iron/dark, -/area/security/brig) -"vHy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/machinery/door/airlock/security{ - name = "Evidence Storage"; - req_one_access_txt = "1;4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/closeup, -/turf/open/floor/iron/dark, -/area/security/brig) "vHU" = ( /obj/structure/lattice/catwalk, /obj/structure/marker_beacon, @@ -68220,6 +68421,15 @@ /obj/structure/fans/tiny, /turf/open/floor/circuit/telecomms/server, /area/science/xenobiology) +"vJo" = ( +/obj/structure/railing, +/obj/structure/chair/fancy/comfy{ + color = "#596479"; + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating/dark, +/turf/open/floor/iron/dark/side, +/area/hallway/primary/central) "vJq" = ( /obj/machinery/computer/rdservercontrol, /obj/effect/turf_decal/bot, @@ -68293,18 +68503,17 @@ dir = 9 }, /area/science/research) -"vKD" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 4 +"vKL" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Vacant Office A"; + req_access_txt = "12" }, -/obj/machinery/dish_drive{ - pixel_y = 10 +/obj/structure/barricade/wooden/crude, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/machinery/digital_clock/directional/north, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/iron/cafeteria, -/area/crew_quarters/kitchen) +/turf/open/floor/iron, +/area/vacant_room/office) "vLA" = ( /obj/structure/disposalpipe/segment{ dir = 2 @@ -68349,16 +68558,6 @@ }, /turf/open/floor/iron/white, /area/science/lobby) -"vLJ" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/iron/dark, -/area/security/main) "vMa" = ( /obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ alpha = 180; @@ -68371,28 +68570,6 @@ /obj/effect/turf_decal/box, /turf/open/floor/iron/dark, /area/security/warden) -"vMg" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/guideline/guideline_edge/red, -/obj/machinery/light, -/turf/open/floor/iron, -/area/security/main) -"vMj" = ( -/obj/structure/bed/roller, -/obj/machinery/light, -/obj/machinery/door/window/eastleft{ - dir = 1; - name = "Quarantine Pen B"; - req_access_txt = "39" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/toy/plush/slimeplushie/green, -/turf/open/floor/iron/grid/steel, -/area/medical/virology) "vMx" = ( /obj/effect/turf_decal/tile/blue/fourcorners/contrasted{ alpha = 200; @@ -68413,16 +68590,6 @@ }, /turf/open/floor/iron/grid/steel, /area/hydroponics) -"vMG" = ( -/obj/structure/railing, -/obj/structure/chair/fancy/comfy{ - buildstackamount = 0; - color = "#742925"; - dir = 1 - }, -/obj/effect/turf_decal/siding/wideplating/dark, -/turf/open/floor/iron/dark/side, -/area/hallway/primary/central) "vMO" = ( /obj/effect/turf_decal/tile/dark_green/fourcorners/contrasted, /obj/machinery/chem_master/condimaster{ @@ -68458,21 +68625,6 @@ }, /turf/open/floor/catwalk_floor, /area/maintenance/central) -"vMT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/security/prison) "vMV" = ( /obj/effect/turf_decal/guideline/guideline_edge/blue{ dir = 1 @@ -68524,28 +68676,6 @@ }, /turf/open/floor/iron/dark, /area/science/robotics) -"vNX" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/yellow/anticorner_ramp/contrasted{ - alpha = 180; - dir = 8 - }, -/obj/effect/turf_decal/guideline/guideline_ramp/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron{ - dir = 8 - }, -/area/engine/engineering) "vOm" = ( /obj/structure/disposaloutlet{ dir = 4 @@ -68608,6 +68738,21 @@ }, /turf/open/space/basic, /area/solar/starboard/fore) +"vPl" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/bottle/beer{ + pixel_x = -5; + pixel_y = 16 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/science/misc_lab) "vPD" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, @@ -68620,24 +68765,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/port) -"vPE" = ( -/obj/machinery/computer/security/telescreen/toxins{ - dir = 1; - pixel_y = 38 - }, -/obj/machinery/button/massdriver{ - id = "toxinsdriver"; - pixel_y = 24 - }, -/obj/machinery/disposal/bin{ - pixel_y = 2 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/science/misc_lab) "vPW" = ( /obj/machinery/door/airlock/external{ req_one_access_txt = "49;47" @@ -68690,36 +68817,6 @@ }, /turf/open/floor/carpet, /area/maintenance/port/aft) -"vQE" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_y = 7 - }, -/obj/item/clothing/head/helmet/alt{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/clothing/head/helmet/alt{ - pixel_y = 1 - }, -/obj/machinery/light, -/obj/structure/extinguisher_cabinet{ - pixel_y = -33 - }, -/obj/machinery/camera/motion/directional/south{ - c_tag = "Armory - Internal"; - network = list("ss13","security") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/ai_monitored/security/armory) "vQL" = ( /obj/effect/decal/cleanable/generic, /obj/structure/cable/yellow{ @@ -68761,6 +68858,20 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/science/explab) +"vRg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosroom"; + name = "HoS Room Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) "vRh" = ( /obj/machinery/atmospherics/pipe/simple/dark/visible, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ @@ -68785,6 +68896,22 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/medical/chemistry) +"vRA" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/tool, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster{ + pixel_y = 34 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark, +/area/storage/primary) "vRI" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, @@ -68846,19 +68973,6 @@ /obj/effect/turf_decal/box, /turf/open/floor/iron/white, /area/medical/medbay/lobby) -"vSZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown/fourcorners/contrasted, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/iron, -/area/hallway/primary/port) "vTe" = ( /obj/structure/cable/yellow{ icon_state = "2-8" @@ -68878,6 +68992,13 @@ }, /turf/open/floor/iron, /area/engine/atmos) +"vTh" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/science/xenobiology) "vTx" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/blood/old, @@ -69096,26 +69217,23 @@ /obj/machinery/suit_storage_unit/standard_unit, /turf/open/floor/iron/tech, /area/ai_monitored/storage/eva) -"vWW" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ +"vWX" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 4 - }, -/obj/structure/closet/secure_closet/atmospherics{ - anchored = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 5 +/obj/structure/closet/secure_closet/evidence{ + density = 0; + opened = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 5 +/obj/item/storage/box/evidence, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom{ + dir = 1; + pixel_x = -32; + pixel_y = -2 }, -/obj/machinery/light/directional/south, /turf/open/floor/iron/dark, -/area/engine/atmos) +/area/security/brig) "vXn" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -69186,18 +69304,23 @@ dir = 8 }, /area/science/lobby) -"vYA" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 +"vYv" = ( +/obj/machinery/door/airlock{ + id_tag = "Cell"; + name = "Showers" }, -/obj/effect/turf_decal/guideline/guideline_edge/red{ - dir = 1 +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/turf/open/floor/iron, -/area/security/main) +/obj/effect/turf_decal/stripes/closeup{ + dir = 1 + }, +/turf/open/floor/prison, +/area/security/prison) "vYG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -69316,6 +69439,13 @@ "waw" = ( /turf/closed/wall, /area/quartermaster/sorting) +"waM" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/mob/living/carbon/monkey, +/turf/open/floor/vault, +/area/medical/genetics) "waT" = ( /obj/effect/turf_decal/guideline/guideline_in/darkblue{ dir = 8 @@ -69519,19 +69649,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, /area/science/server) -"wdB" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/structure/chair/fancy/bench{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = -31 - }, -/obj/effect/turf_decal/guideline/guideline_edge/red, -/turf/open/floor/iron, -/area/security/main) "wdC" = ( /obj/machinery/power/solar_control{ dir = 8 @@ -69541,15 +69658,6 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"wdN" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","cargo") - }, -/turf/open/floor/noslip/standard, -/area/quartermaster/storage) "wdS" = ( /obj/structure/chair/fancy/comfy{ buildstackamount = 0; @@ -69662,17 +69770,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/port/central) -"wgH" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 6 - }, -/obj/machinery/meter, -/obj/effect/turf_decal/bot, -/obj/structure/cable/yellow{ - icon_state = "4-8" +"wgN" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/curtain, +/obj/machinery/shower{ + dir = 8; + name = "emergency shower"; + pixel_x = -5; + pixel_y = -5 }, -/turf/open/floor/iron/dark, -/area/engine/engine_room) +/turf/open/floor/noslip/standard, +/area/security/prison) "wgX" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -69736,14 +69844,6 @@ /obj/item/beacon, /turf/open/floor/engine, /area/science/explab) -"wiv" = ( -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/machinery/chem_dispenser, -/turf/open/floor/iron, -/area/medical/apothecary) "wiy" = ( /obj/structure/weightmachine/weightlifter, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -69781,21 +69881,6 @@ /obj/machinery/light, /turf/open/floor/iron/dark, /area/gateway) -"wjG" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/bottle/beer{ - pixel_x = -5; - pixel_y = 16 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/science/misc_lab) "wjO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -69878,27 +69963,6 @@ /obj/effect/turf_decal/stripes/closeup, /turf/open/floor/iron/ridged/steel, /area/crew_quarters/heads/hos) -"wkK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "Prisongate"; - name = "Prison Blast Door" - }, -/obj/machinery/door/airlock/security/glass{ - name = "Solitary Confinement"; - req_one_access_txt = "2" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/closeup{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/security/prison/shielded) "wkM" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -69992,6 +70056,14 @@ /obj/structure/cable, /turf/open/space/basic, /area/solar/port/fore) +"wmw" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/security/main) "wmz" = ( /obj/machinery/computer/security/telescreen/entertainment{ network = list("thunder","court"); @@ -70055,12 +70127,6 @@ }, /turf/open/floor/iron/dark, /area/science/shuttledock) -"wns" = ( -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","engine") - }, -/turf/open/floor/engine/n2, -/area/engine/atmos) "wnx" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 10 @@ -70172,12 +70238,6 @@ }, /turf/open/floor/iron/sepia, /area/quartermaster/office) -"wqf" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/engine/supermatter) "wqi" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, @@ -70190,6 +70250,15 @@ /obj/structure/sign/warning/nosmoking/circle, /turf/closed/wall, /area/maintenance/port/aft) +"wqw" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/grid/steel, +/area/hydroponics) "wqA" = ( /obj/effect/turf_decal/tile/blue/fourcorners/contrasted{ alpha = 200; @@ -70208,18 +70277,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/crew_quarters/dorms) -"wqB" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/champagne{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/stack/cable_coil/random/five{ - pixel_x = 2; - pixel_y = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/dorms) "wrh" = ( /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ dir = 4 @@ -70230,6 +70287,16 @@ }, /turf/open/floor/iron/dark, /area/security/warden) +"wrx" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/main) "wrB" = ( /obj/machinery/light{ dir = 1 @@ -70253,6 +70320,17 @@ }, /turf/open/floor/iron/dark, /area/chapel/main) +"wrX" = ( +/obj/machinery/door/poddoor/preopen{ + id = "hosroom"; + name = "HoS Room Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) "wsJ" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/extinguisher_cabinet{ @@ -70303,39 +70381,30 @@ /obj/effect/landmark/start/atmospheric_technician, /turf/open/floor/iron/tech, /area/engine/atmos) -"wtP" = ( -/obj/machinery/camera/autoname/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/effect/turf_decal/guideline/guideline_half_edge/blue{ - color = "#267878"; - dir = 4 +"wtU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/effect/turf_decal/guideline/guideline_half_edge/blue{ - color = "#267878"; - dir = 10 +/turf/open/floor/iron, +/area/bridge) +"wul" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" }, -/obj/effect/turf_decal/guideline/guideline_edge_alt/blue{ - color = "#267878"; - dir = 8 +/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{ + alpha = 180 }, -/obj/effect/turf_decal/guideline/guideline_tri/blue{ - color = "#267878" +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ - dir = 2 +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridgedoors"; + name = "Bridge Access Blast Door" }, -/turf/open/floor/iron, -/area/crew_quarters/dorms) -"wtU" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" +/obj/structure/sign/departments/minsky/security/command{ + pixel_x = 32 }, /turf/open/floor/iron, /area/bridge) @@ -70349,6 +70418,15 @@ }, /turf/open/floor/iron/dark, /area/storage/primary) +"wuO" = ( +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/effect/turf_decal/guideline/guideline_edge/blue{ + color = "#267878"; + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/secondary/entry) "wvm" = ( /obj/machinery/door/airlock/research{ name = "Toxins Storage"; @@ -70474,6 +70552,18 @@ "wxS" = ( /turf/open/floor/carpet/royalblue, /area/crew_quarters/heads/chief) +"wyc" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/iron, +/area/hallway/primary/port) "wyg" = ( /obj/structure/chair/fancy/bench/pew/right{ dir = 8 @@ -70500,28 +70590,6 @@ }, /turf/open/floor/catwalk_floor, /area/maintenance/department/security) -"wyJ" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/curtain, -/obj/machinery/shower{ - dir = 8; - name = "emergency shower"; - pixel_x = -5; - pixel_y = -5 - }, -/turf/open/floor/noslip/standard, -/area/security/prison) -"wyP" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/camera/autoname/directional/south{ - network = list("ss13","engine") - }, -/turf/open/floor/iron, -/area/engine/atmos) "wyV" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -70532,20 +70600,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, /area/medical/genetics) -"wyX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/iron, -/area/hallway/primary/port) "wzb" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -70560,20 +70614,93 @@ }, /turf/open/floor/iron, /area/hallway/primary/port) -"wzE" = ( -/obj/item/radio/intercom{ - desc = "Talk through this. It looks like it has been modified to not broadcast."; - freerange = 1; - name = "Prison intercom"; - pixel_x = 25; - prison_radio = 1 +"wzF" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 }, -/obj/effect/turf_decal/siding/wood{ +/obj/effect/turf_decal/guideline/guideline_edge/red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/camera/autoname/directional/east, -/turf/open/floor/wood, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/iron, +/area/security/main) +"wzM" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/rack, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/tile/black/fourcorners, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/prison_scanner, +/obj/item/prison_scanner, +/obj/item/prison_scanner, +/obj/item/prison_scanner, +/obj/item/prison_scanner, +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","prison") + }, +/turf/open/floor/iron/techmaint, /area/security/prison) +"wzW" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "outerbrign"; + name = "Brig Exterior Doors Control"; + normaldoorcontrol = 1; + pixel_x = -26; + pixel_y = 7; + req_access_txt = "1" + }, +/obj/machinery/button/door{ + id = "brigentrance"; + name = "Brig Lockdown Control"; + pixel_x = -26; + pixel_y = -5; + req_access_txt = "1" + }, +/obj/machinery/button/flasher{ + id = "brigentryaux"; + pixel_x = -36; + pixel_y = 1; + req_access_txt = "1" + }, +/obj/effect/turf_decal/guideline/guideline_tri/red{ + dir = 4 + }, +/obj/effect/turf_decal/guideline/guideline_half_edge/red{ + dir = 9 + }, +/obj/effect/turf_decal/guideline/guideline_edge_alt/red, +/obj/effect/turf_decal/guideline/guideline_half_edge/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron, +/area/security/brig) "wzY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 5 @@ -70775,16 +70902,6 @@ }, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) -"wBP" = ( -/obj/machinery/genpop_interface{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/obj/structure/table, -/turf/open/floor/iron/dark, -/area/security/prison) "wBR" = ( /obj/machinery/fax{ fax_name = "Lawyer"; @@ -70871,6 +70988,23 @@ }, /turf/open/floor/iron/white, /area/science/lobby) +"wEG" = ( +/obj/structure/bed/roller, +/obj/machinery/door/window/eastleft{ + dir = 1; + name = "Quarantine Pen B"; + req_access_txt = "39" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/radio/intercom{ + dir = 1; + pixel_x = 1; + pixel_y = -33 + }, +/turf/open/floor/iron/grid/steel, +/area/medical/virology) "wEH" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -70917,6 +71051,22 @@ /obj/structure/sign/departments/minsky/security/evac, /turf/closed/wall, /area/ai_monitored/storage/eva) +"wFn" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table, +/obj/item/paper/guides/jobs/engi/gravity_gen, +/obj/item/stack/sheet/mineral/plasma/fifty, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/iron/tech/grid, +/area/engine/gravity_generator) "wFq" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -70945,13 +71095,6 @@ }, /turf/open/floor/iron, /area/crew_quarters/cafeteria) -"wFD" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/dark/smooth_large, -/area/hallway/primary/central) "wFG" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/stripes/line{ @@ -70971,10 +71114,6 @@ }, /turf/open/floor/iron/dark, /area/engine/atmos) -"wFR" = ( -/obj/machinery/smartfridge/organ, -/turf/open/floor/iron/dark, -/area/medical/morgue) "wFT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -71020,6 +71159,28 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/security/nuke_storage) +"wGw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/security/prison) "wGA" = ( /obj/effect/turf_decal/tile/dark_red/anticorner/contrasted, /obj/effect/decal/cleanable/dirt, @@ -71049,20 +71210,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"wHf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "bridgewindows"; - name = "Bridge View Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/bridge) "wHg" = ( /turf/open/floor/iron/white/side{ dir = 8 @@ -71088,16 +71235,6 @@ }, /turf/open/floor/iron, /area/engine/break_room) -"wHP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/obj/machinery/door/airlock/grunge{ - name = "Chapel Office"; - req_access_txt = "27" - }, -/turf/open/floor/wood, -/area/chapel/office) "wHQ" = ( /obj/effect/turf_decal/guideline/guideline_edge/purple{ dir = 4 @@ -71223,17 +71360,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/engine/atmos) -"wJQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "Engidesk"; - name = "engineering Security Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/engine/engineering) "wJS" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -71243,6 +71369,25 @@ }, /turf/open/floor/iron, /area/crew_quarters/cafeteria) +"wJU" = ( +/obj/effect/turf_decal/tile/red/fourcorners/contrasted, +/obj/machinery/status_display/door_timer{ + id = "cell"; + name = "Solitary confinement timer"; + pixel_x = 32 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/camera/autoname/directional/east{ + network = list("ss13","prison") + }, +/turf/open/floor/prison, +/area/security/prison) "wKp" = ( /obj/effect/turf_decal/tile/yellow/fourcorners/contrasted{ alpha = 180 @@ -71254,17 +71399,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron, /area/engine/storage) -"wKv" = ( -/obj/structure/chair/office, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = -7 - }, -/turf/open/floor/iron/dark, -/area/security/brig) "wKx" = ( /obj/effect/turf_decal/tile/purple/anticorner/contrasted, /obj/structure/disposalpipe/segment{ @@ -71282,6 +71416,16 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) +"wKC" = ( +/obj/structure/chair/fancy/sofa/old/left, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/turf/open/floor/carpet/green, +/area/security/main) "wKP" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, @@ -71329,25 +71473,18 @@ }, /turf/open/floor/iron/white, /area/security/brig/medbay) -"wLN" = ( -/obj/effect/turf_decal/guideline/guideline_half_edge/brown{ - dir = 10 - }, -/obj/effect/turf_decal/guideline/guideline_half_edge/brown{ - dir = 4 - }, -/obj/effect/turf_decal/guideline/guideline_edge_alt/brown{ - dir = 8 - }, -/obj/effect/turf_decal/guideline/guideline_tri/brown, -/obj/effect/turf_decal/stripes/line{ - dir = 4 +"wLG" = ( +/obj/machinery/door/airlock/public/glass{ + name = "visitation Area" }, -/obj/structure/disposalpipe/segment{ - dir = 5 +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/turf/open/floor/iron, -/area/hallway/primary/port) +/obj/effect/turf_decal/tile/red/fourcorners/contrasted, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/closeup, +/turf/open/floor/prison, +/area/security/prison) "wLT" = ( /obj/machinery/atmospherics/pipe/simple/purple/visible{ dir = 4 @@ -71466,19 +71603,6 @@ name = "mainframe floor" }, /area/tcommsat/server) -"wNt" = ( -/obj/machinery/door/window/northright{ - name = "Library Desk Door"; - req_access_txt = "37" - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/carpet/royalblack, -/area/library) "wNw" = ( /obj/structure/shuttle/engine/hugeionengine{ density = 0; @@ -71551,6 +71675,29 @@ }, /turf/open/floor/iron/white, /area/medical/sleeper) +"wOJ" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/camera/autoname/directional/north{ + view_range = 12 + }, +/obj/effect/turf_decal/siding/wideplating/dark/corner{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = 34 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/hallway/primary/central) "wPd" = ( /obj/effect/turf_decal/tile/dark_green/half/contrasted{ dir = 8 @@ -71592,6 +71739,23 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/department/medical) +"wPR" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -32 + }, +/obj/effect/turf_decal/guideline/guideline_edge/blue{ + color = "#267878"; + dir = 8 + }, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron, +/area/crew_quarters/dorms) "wPU" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, @@ -71617,6 +71781,10 @@ /obj/effect/landmark/start/chief_engineer, /turf/open/floor/iron/dark, /area/crew_quarters/heads/chief) +"wQv" = ( +/obj/machinery/smartfridge/sci, +/turf/open/floor/iron, +/area/science/robotics) "wQC" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/box/corners{ @@ -71659,24 +71827,6 @@ /obj/item/clothing/head/utility/chefhat, /turf/open/floor/iron/techmaint, /area/security/prison) -"wRh" = ( -/obj/machinery/status_display/evac{ - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light, -/obj/machinery/camera/motion{ - c_tag = "MiniSat Upload Chamber"; - network = list("aiupload") - }, -/obj/structure/cable, -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) "wRl" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -71729,6 +71879,21 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/catwalk_floor, /area/maintenance/department/medical/morgue) +"wSq" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/clothing/suit/utility/radiation, +/obj/item/clothing/head/utility/radiation, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/iron/dark, +/area/engine/engine_room) "wSs" = ( /obj/machinery/suit_storage_unit/cmo, /obj/machinery/computer/security/telescreen{ @@ -71788,36 +71953,6 @@ }, /turf/open/floor/iron, /area/engine/atmos) -"wSB" = ( -/obj/machinery/door/morgue{ - name = "Mass Driver Room"; - req_access_txt = "27" - }, -/obj/machinery/light_switch{ - pixel_x = -21; - pixel_y = 1 - }, -/turf/open/floor/carpet/purple, -/area/chapel/main) -"wTo" = ( -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Bridge" - }, -/turf/open/floor/iron, -/area/security/main) "wTw" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -71897,12 +72032,6 @@ /obj/effect/landmark/start/security_officer, /turf/open/floor/iron/dark, /area/security/brig/dock) -"wUI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/security/brig) "wUW" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ alpha = 180; @@ -71959,16 +72088,22 @@ /obj/effect/turf_decal/guideline/guideline_edge/red, /turf/open/floor/iron/dark, /area/security/brig/dock) -"wWq" = ( +"wWK" = ( /obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{ - dir = 8 +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 3 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 4 +/obj/machinery/door/window/eastleft{ + dir = 1; + name = "Medbay"; + req_one_access_txt = "5" }, -/turf/open/floor/iron/dark, -/area/security/brig/dock) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/turf/open/floor/iron, +/area/medical/sleeper) "wXg" = ( /obj/structure/closet/crate, /obj/machinery/conveyor/inverted{ @@ -72067,6 +72202,14 @@ dir = 9 }, /area/science/mixing/chamber) +"wYC" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/evidence, +/turf/open/floor/iron/dark, +/area/security/brig) "wYG" = ( /obj/structure/disposalpipe/segment{ dir = 1 @@ -72083,16 +72226,19 @@ }, /turf/open/floor/iron/white, /area/medical/medbay/central) -"wYJ" = ( -/obj/structure/chair{ +"wYR" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/purple/fourcorners/contrasted, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 }, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/neutral{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ dir = 4 }, -/turf/open/floor/iron/dark, -/area/security/main) +/turf/open/floor/iron/white, +/area/science/research) "wYT" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -72223,6 +72369,17 @@ }, /turf/open/floor/iron, /area/quartermaster/qm) +"xba" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/obj/machinery/camera/autoname/directional/east{ + network = list("ss13","prison") + }, +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/turf/open/floor/iron, +/area/security/prison) "xbr" = ( /obj/effect/turf_decal/tile/bar/opposingcorners, /obj/structure/cable/yellow{ @@ -72311,17 +72468,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"xdj" = ( -/obj/structure/railing{ - dir = 6 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 6 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/vending/hydroseeds, -/turf/open/floor/iron/dark/smooth_large, -/area/hallway/primary/central) "xdo" = ( /obj/effect/turf_decal/guideline/guideline_in/red{ dir = 4 @@ -72359,32 +72505,12 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron, /area/hallway/primary/starboard) -"xdU" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/iron/dark, -/area/security/brig) -"xeg" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/effect/turf_decal/guideline/guideline_edge/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ +"xec" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","security") - }, -/turf/open/floor/iron, -/area/security/brig) +/turf/open/floor/iron/dark, +/area/security/prison) "xel" = ( /obj/effect/turf_decal/guideline/guideline_in/red{ dir = 4 @@ -72398,37 +72524,17 @@ /obj/structure/disposalpipe/junction/flip, /turf/open/floor/iron, /area/hallway/primary/fore) -"xes" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/obj/structure/sign/painting/library{ - pixel_y = -32 - }, -/obj/machinery/camera/autoname/directional/south{ - c_tag = "Captain's Quarters" - }, -/turf/open/floor/iron, -/area/hallway/primary/starboard) -"xeJ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ - alpha = 180; - color = "#DE3A3A" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 4 +"xey" = ( +/obj/structure/railing{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 10 +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/black/fourcorners, +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/turf/open/floor/iron, -/area/hallway/primary/fore) +/turf/open/floor/iron/techmaint, +/area/security/prison) "xeN" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ dir = 4 @@ -72461,6 +72567,15 @@ }, /turf/open/floor/wood, /area/security/courtroom) +"xeZ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/hallway/primary/central) "xfs" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -72545,6 +72660,18 @@ }, /turf/open/floor/plating, /area/engine/supermatter) +"xhA" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + pixel_y = 1 + }, +/obj/structure/closet/firecloset/full, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/smooth_large, +/area/hallway/primary/central) "xhB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -72580,6 +72707,15 @@ }, /turf/open/floor/iron/techmaint, /area/hallway/secondary/service) +"xhZ" = ( +/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted{ + alpha = 180 + }, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/open/floor/iron, +/area/engine/engineering) "xik" = ( /obj/structure/chair/stool/directional/west, /obj/effect/turf_decal/siding/wood{ @@ -72592,29 +72728,6 @@ /obj/effect/turf_decal/stripes/box, /turf/open/floor/iron/dark, /area/quartermaster/storage) -"xis" = ( -/obj/machinery/dna_scannernew, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "geneticsdesk"; - name = "Genetics Desk Shutters" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron, -/area/medical/genetics) -"xiu" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/machinery/camera/autoname/directional/south{ - c_tag = "MiniSat Core Hallway 2"; - network = list("minisat") - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat_interior) "xiD" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -72687,20 +72800,6 @@ }, /turf/open/floor/catwalk_floor, /area/maintenance/department/security) -"xjE" = ( -/obj/structure/table/wood, -/obj/item/kirbyplants/random{ - pixel_y = 18 - }, -/obj/item/candle/infinite{ - pixel_x = 1; - pixel_y = 2 - }, -/obj/item/pen/fountain/captain{ - pixel_x = -7 - }, -/turf/open/floor/carpet/purple, -/area/chapel/main) "xjG" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ @@ -72761,6 +72860,20 @@ /obj/machinery/meter, /turf/open/floor/iron/tech, /area/engine/engine_room) +"xkn" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/east{ + c_tag = "Xenobiology Lab - Pen #7"; + network = list("ss13","rd","xeno") + }, +/obj/machinery/sparker{ + id = "Xenobio"; + pixel_x = 25 + }, +/turf/open/floor/engine, +/area/science/xenobiology) "xkq" = ( /obj/structure/table/wood, /obj/machinery/light{ @@ -72788,11 +72901,48 @@ }, /turf/open/floor/catwalk_floor, /area/maintenance/department/engine) +"xkF" = ( +/obj/structure/table, +/obj/item/toy/cards/deck{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/britcup{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/book/manual/wiki/sopsecurity{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/main) "xkS" = ( /obj/effect/turf_decal/loading_area, /obj/machinery/firealarm/directional/west, /turf/open/floor/iron, /area/science/lobby) +"xlk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/iron, +/area/hallway/primary/port) "xlC" = ( /obj/effect/turf_decal/siding/wideplating/dark, /obj/structure/cable/yellow{ @@ -72823,22 +72973,6 @@ }, /turf/open/floor/iron, /area/crew_quarters/cafeteria) -"xlU" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 3 - }, -/obj/machinery/door/window/eastleft{ - dir = 1; - name = "Medbay"; - req_one_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/iron, -/area/medical/sleeper) "xlV" = ( /obj/structure/table, /obj/effect/turf_decal/stripes/line{ @@ -72912,6 +73046,18 @@ }, /turf/open/floor/iron/dark, /area/engine/engineering) +"xng" = ( +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner, +/obj/structure/transit_tube, +/obj/machinery/door/poddoor{ + id = "AIwindows"; + name = "AI View Blast Door" + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/aisat/foyer) "xnB" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -73180,11 +73326,6 @@ }, /turf/open/floor/catwalk_floor, /area/maintenance/starboard/aft) -"xqx" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/iron/dark, -/area/vacant_room/commissary/commissary2) "xqY" = ( /obj/machinery/status_display/evac{ pixel_y = 32 @@ -73204,6 +73345,16 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) +"xrj" = ( +/obj/machinery/chem_master/condimaster, +/obj/machinery/camera/autoname/directional/north, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/crew_quarters/bar) "xrM" = ( /obj/effect/spawner/room/fivexfour, /obj/effect/decal/cleanable/dirt, @@ -73395,6 +73546,23 @@ }, /turf/open/floor/iron/white, /area/medical/medbay/central) +"xub" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/door/window{ + dir = 1; + name = "Captain's Desk"; + req_access_txt = "20" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/heads/captain) "xug" = ( /obj/effect/turf_decal/delivery, /obj/machinery/portable_atmospherics/canister/nitrous_oxide, @@ -73403,16 +73571,6 @@ }, /turf/open/floor/iron, /area/science/storage) -"xux" = ( -/obj/machinery/suit_storage_unit/security, -/obj/structure/sign/warning/radiation_shelter{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/security/brig/dock) "xuC" = ( /obj/effect/turf_decal/tile/blue/fourcorners/contrasted, /mob/living/simple_animal/bot/cleanbot/larry{ @@ -73427,12 +73585,6 @@ }, /turf/open/floor/iron/white, /area/medical/sleeper) -"xuJ" = ( -/obj/structure/sign/departments/medbay/alt{ - pixel_y = -32 - }, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/cmo) "xuM" = ( /obj/structure/closet/secure_closet/hop, /obj/item/modular_computer/tablet/pda, @@ -73542,23 +73694,6 @@ /obj/structure/chair/stool/directional/south, /turf/open/floor/carpet/royalblack, /area/library) -"xvS" = ( -/obj/machinery/computer/cargo/request{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 23 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/security/main) "xwd" = ( /obj/machinery/door/airlock/mining{ req_access_txt = "48" @@ -73592,16 +73727,6 @@ }, /turf/open/floor/carpet/blue, /area/bridge/meeting_room) -"xwE" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/fourcorners/contrasted, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/prison, -/area/security/prison) "xwG" = ( /obj/structure/lattice, /obj/item/stack/rods, @@ -73731,15 +73856,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"xxl" = ( -/obj/effect/turf_decal/tile/black/fourcorners, -/obj/effect/turf_decal/bot_white, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/weightmachine, -/turf/open/floor/prison, -/area/security/prison) "xxs" = ( /obj/effect/landmark/event_spawn, /obj/machinery/portable_atmospherics/scrubber, @@ -73997,6 +74113,15 @@ }, /turf/open/floor/iron, /area/engine/engine_room) +"xzR" = ( +/obj/machinery/newscaster{ + pixel_y = 34 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","security","court") + }, +/turf/open/floor/wood, +/area/security/courtroom) "xzU" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/techstorage/AI, @@ -74051,6 +74176,14 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/cafeteria, /area/crew_quarters/kitchen) +"xBF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "chemistry Shutters" + }, +/turf/open/floor/plating, +/area/medical/apothecary) "xBP" = ( /obj/effect/turf_decal/tile/blue/fourcorners/contrasted, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, @@ -74060,31 +74193,6 @@ }, /turf/open/floor/iron/white, /area/medical/sleeper) -"xBV" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "Engidesk"; - name = "engineering Security Door" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/northleft{ - dir = 2; - name = "Engi Desk"; - req_one_access_txt = "32;19" - }, -/obj/item/paper_bin{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/pen{ - pixel_x = 7; - pixel_y = 4 - }, -/obj/structure/desk_bell{ - pixel_x = -6 - }, -/turf/open/floor/iron/dark, -/area/engine/engineering) "xBW" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch"; @@ -74250,18 +74358,6 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/iron, /area/maintenance/department/medical/morgue) -"xFF" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridgewindows"; - name = "Bridge View Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/bridge) "xFS" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -74304,6 +74400,17 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/iron/dark, /area/science/robotics) +"xGI" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/main) "xGP" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ @@ -74317,20 +74424,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/central) -"xHa" = ( -/obj/machinery/door/poddoor/shutters{ - id = "atmosshutters"; - name = "Atmos Storage" - }, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/engine/atmos) "xHd" = ( /turf/closed/wall/r_wall/rust, /area/engine/atmos) @@ -74341,26 +74434,6 @@ }, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"xHk" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/item/kirbyplants/random{ - pixel_y = 6 - }, -/obj/effect/turf_decal/guideline/guideline_half_edge/brown, -/obj/effect/turf_decal/guideline/guideline_half_edge/brown{ - dir = 5 - }, -/obj/effect/turf_decal/guideline/guideline_edge_alt/brown{ - dir = 1 - }, -/obj/effect/turf_decal/guideline/guideline_tri/brown{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/port) "xHw" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -74402,10 +74475,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, /area/engine/atmos) -"xHY" = ( -/obj/structure/sign/departments/minsky/supply/cargo, -/turf/closed/wall, -/area/quartermaster/qm) "xHZ" = ( /obj/machinery/atmospherics/pipe/simple/green/visible, /obj/machinery/light{ @@ -74418,25 +74487,6 @@ }, /turf/open/floor/iron, /area/engine/atmos) -"xIb" = ( -/obj/effect/turf_decal/box, -/obj/machinery/door/window/westleft{ - dir = 1; - name = "plumbing Factory Duct Access"; - red_alert_access = 1; - req_one_access_txt = "5;33" - }, -/obj/machinery/door/window/westleft{ - dir = 2; - name = "plumbing Factory Duct Access"; - red_alert_access = 1; - req_one_access_txt = "5;33" - }, -/obj/machinery/plumbing/output{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/medical/chemistry) "xIe" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/disposalpipe/segment{ @@ -74551,6 +74601,32 @@ /obj/structure/sign/departments/medbay/alt2, /turf/closed/wall, /area/medical/medbay/lobby) +"xJI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "brigentrance"; + name = "Brig Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/brig) +"xKe" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/guideline/guideline_edge/red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/main) "xKh" = ( /obj/effect/turf_decal/tile/dark_blue{ alpha = 180; @@ -74620,18 +74696,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/bridge) -"xLa" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = -25 - }, -/turf/open/floor/iron/dark, -/area/security/prison) "xLd" = ( /obj/effect/turf_decal/tile/purple/fourcorners/contrasted, /obj/structure/cable/yellow{ @@ -74661,6 +74725,19 @@ }, /turf/open/floor/iron/tech, /area/engine/engine_room) +"xMI" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/security/main) "xMJ" = ( /obj/effect/turf_decal/tile/purple/fourcorners/contrasted, /obj/structure/cable/yellow{ @@ -74714,16 +74791,6 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat/foyer) -"xNG" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, -/turf/open/floor/iron/dark/smooth_large, -/area/hallway/primary/central) "xNU" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/landmark/start/shaft_miner, @@ -74751,6 +74818,16 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron, /area/hallway/primary/aft) +"xOB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2, +/obj/machinery/door/airlock/grunge{ + name = "Chapel Office"; + req_access_txt = "27" + }, +/turf/open/floor/wood, +/area/chapel/office) "xOE" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4, /obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2, @@ -74767,32 +74844,6 @@ dir = 8 }, /area/hallway/primary/central) -"xPh" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/storage/box/monkeycubes{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/storage/box/monkeycubes{ - pixel_x = 2 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "quarantineshutters"; - name = "Isolation Shutters" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24; - pixel_y = -3 - }, -/obj/machinery/camera/autoname/directional/east{ - network = list("ss13","medbay") - }, -/turf/open/floor/iron/grid/steel, -/area/medical/virology) "xPu" = ( /obj/effect/landmark/blobstart, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ @@ -74894,6 +74945,20 @@ /obj/structure/chair/stool/directional/west, /turf/open/floor/wood, /area/security/prison) +"xRs" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridgewindows"; + name = "Bridge View Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/bridge) "xRL" = ( /obj/structure/table/wood, /obj/structure/mirror{ @@ -75006,6 +75071,15 @@ /obj/item/stack/cable_coil, /turf/open/space/basic, /area/solar/port/fore) +"xUy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/machinery/door/poddoor/preopen{ + id = "brigentrance"; + name = "Brig Blast Door" + }, +/turf/open/floor/plating, +/area/security/prison) "xUA" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -75068,6 +75142,21 @@ }, /turf/open/floor/iron/dark, /area/engine/atmos) +"xVb" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/light/floor{ + brightness = 15; + bulb_emergency_brightness_mul = 2; + bulb_vacuum_brightness = 15; + nightshift_brightness = 10 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/hallway/primary/central) "xVk" = ( /obj/effect/turf_decal/tile/neutral/opposingcorners, /turf/open/floor/iron, @@ -75223,11 +75312,32 @@ /obj/machinery/atmospherics/pipe/manifold4w/general/visible, /turf/open/floor/iron/tech, /area/engine/atmos) +"xXY" = ( +/obj/effect/turf_decal/tile/dark_red/half/contrasted{ + alpha = 180; + color = "#DE3A3A" + }, +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/obj/item/toy/plush/carpplushie, +/obj/structure/sign/poster/contraband{ + pixel_x = 32 + }, +/turf/open/floor/prison, +/area/security/prison) "xYn" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4, /turf/open/floor/wood, /area/security/detectives_office) +"xYq" = ( +/obj/machinery/jukebox{ + dept_req_for_free = 0; + req_access = "0" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/holofloor/wood, +/area/security/main) "xYK" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 @@ -75295,10 +75405,6 @@ /obj/item/storage/belt/utility, /turf/open/floor/plating, /area/maintenance/port/central) -"xZd" = ( -/obj/effect/turf_decal/tile/black/fourcorners, -/turf/open/floor/iron/techmaint, -/area/security/prison) "xZj" = ( /obj/machinery/portable_atmospherics/canister, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ @@ -75477,13 +75583,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron, /area/vacant_room/commissary/commissary1) -"ybD" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/floor/iron/dark/smooth_large, -/area/hallway/primary/central) "ybW" = ( /obj/structure/sign/departments/medbay/alt2{ pixel_x = 33; @@ -75492,20 +75591,6 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron, /area/hallway/primary/central) -"ybZ" = ( -/obj/machinery/power/apc/auto_name/directional/west{ - pixel_x = -24 - }, -/obj/structure/closet/secure_closet/personal, -/obj/effect/turf_decal/box, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/camera/autoname/directional/west{ - network = list("ss13","medbay") - }, -/turf/open/floor/iron/grid/steel, -/area/medical/virology) "ycb" = ( /obj/effect/landmark/blobstart, /obj/effect/decal/cleanable/dirt, @@ -75577,17 +75662,6 @@ }, /turf/open/floor/iron, /area/medical/storage) -"ydt" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "quarantineshutters"; - name = "Isolation Shutters" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/medical/virology) "ydA" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -75598,25 +75672,6 @@ /obj/effect/decal/cleanable/shreds, /turf/open/floor/plating, /area/maintenance/port/aft) -"ydM" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/security/prison) "ydT" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -75651,35 +75706,6 @@ }, /turf/open/floor/carpet/orange, /area/quartermaster/qm) -"yel" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - dir = 2; - icon_state = "left"; - name = "Research and Development Desk"; - req_one_access_txt = "47;63" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/obj/structure/desk_bell{ - pixel_x = -7; - pixel_y = 3 - }, -/obj/item/paper_bin{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/pen{ - pixel_x = 7; - pixel_y = 3 - }, -/turf/open/floor/iron, -/area/science/lab) "yex" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, @@ -75718,20 +75744,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, /area/engine/engine_room) -"yfv" = ( -/obj/machinery/computer/cargo/request, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/box, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","medbay") - }, -/turf/open/floor/iron, -/area/medical/storage) "yfH" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, @@ -75765,26 +75777,6 @@ "ygl" = ( /turf/closed/wall/r_wall, /area/security/checkpoint/science) -"ygv" = ( -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/main) -"ygW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/iron/tech, -/area/engine/engine_room) "ygX" = ( /obj/structure/lattice/catwalk, /obj/structure/marker_beacon, @@ -75825,6 +75817,13 @@ /obj/item/bedsheet/green, /turf/open/floor/circuit/telecomms/server, /area/science/xenobiology) +"yid" = ( +/obj/machinery/smartfridge/sci{ + initial_contents = list(/obj/item/stock_parts/capacitor = 2, /obj/item/stock_parts/manipulator = 2, /obj/item/stock_parts/micro_laser = 2, /obj/item/stock_parts/matter_bin = 2, /obj/item/stock_parts/scanning_module = 2); + name = "Science vender" + }, +/turf/open/floor/iron, +/area/engine/storage) "yie" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 4 @@ -75842,6 +75841,45 @@ /obj/effect/turf_decal/tile/blue/opposingcorners, /turf/open/floor/iron, /area/maintenance/department/medical) +"yiX" = ( +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Prisongate"; + name = "Prison Blast Door" + }, +/obj/machinery/turnstile{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/closeup, +/obj/effect/turf_decal/stripes/red/line, +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/security/prison) +"yji" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/guideline/guideline_edge/red, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/brig) "yjo" = ( /obj/structure/janitorialcart, /turf/open/floor/plating, @@ -75999,39 +76037,12 @@ }, /turf/open/floor/iron, /area/security/brig) -"ylk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/guideline/guideline_edge_alt/red{ - dir = 4 - }, -/obj/effect/turf_decal/guideline/guideline_half_edge/red{ - dir = 8 - }, -/obj/effect/turf_decal/guideline/guideline_half_edge/red{ - dir = 6 - }, -/obj/effect/turf_decal/guideline/guideline_tri/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/security/main) -"ylw" = ( -/obj/machinery/camera/autoname/directional/north{ - network = list("ss13","rd") - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 +"ylp" = ( +/obj/structure/musician/piano{ + icon_state = "piano" }, -/turf/open/floor/iron, -/area/science/lobby) +/turf/open/floor/glass/reinforced, +/area/crew_quarters/cafeteria) "ylB" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/tree/jungle, @@ -76065,28 +76076,17 @@ }, /turf/open/floor/iron, /area/crew_quarters/dorms) -"ylT" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{ - dir = 4 - }, -/obj/item/radio/intercom{ - desc = "Talk through this. It looks like it has been modified to not broadcast."; - freerange = 1; - name = "Prison intercom"; - pixel_y = 25; - prison_radio = 1 +"yme" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ - dir = 8 +/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{ + alpha = 180; + color = "#DE3A3A" }, -/turf/open/floor/iron/dark, -/area/security/prison) +/obj/structure/disposalpipe/sorting/mail/destination/detective_office, +/turf/open/floor/iron, +/area/security/main) "ymh" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{ dir = 5 @@ -86053,7 +86053,7 @@ gsA nif nif tnI -sFj +uIB uzf nif nif @@ -96510,16 +96510,16 @@ yeA yeA yeA yeA -emF +nEb rYy -emF +nEb yeA -emF +nEb tYo -emF +nEb jSQ -emF -emF +nEb +nEb yeA dXg yeA @@ -96767,16 +96767,16 @@ gsA gsA yeA yeA -emF +nEb hLc -emF +nEb yeA -emF +nEb eWz -emF +nEb lIC wWh -emF +nEb gto xdv fft @@ -97016,24 +97016,24 @@ yeA gsA gsA gsA -emF -emF -sJA -emF +nEb +nEb +eUh +nEb gsA ewB gsA yeA -emF +nEb axV -emF +nEb jSQ -emF +nEb frI -emF +nEb lIC pEC -emF +nEb vIF tKq uAH @@ -97044,7 +97044,7 @@ jut bAQ eQu bAQ -tzI +aRk cxe gwI aui @@ -97081,14 +97081,14 @@ tnB dDa rBF cMW -bTR -oTU -mEi -gWq +pWP +gRJ +dvL +bgA hCg eua ayc -dlh +vam cMW fVz uKR @@ -97273,15 +97273,15 @@ yeA gsA gsA gsA -emF -pGd -wWq -emF +nEb +hsk +rjk +nEb gsA gsA yeA yeA -emF +nEb xjm eqJ kSR @@ -97290,19 +97290,19 @@ iQP dzx khv giZ -emF +nEb lIa lrw esM fYr sNa mhd -nOh -uTu -nHE -cRs +fiC +eWH +elY +sJS uku -pkX +mIc ctt oZa blr @@ -97358,8 +97358,8 @@ yay frc frc fFP -vPE -wjG +stS +vPl sLX sxX lfC @@ -97530,15 +97530,15 @@ gsA gsA ewB iqg -emF -emF -gCz -emF -emF -emF -emF -emF -emF +nEb +nEb +nRm +nEb +nEb +nEb +nEb +nEb +nEb bkD eku gGe @@ -97547,14 +97547,14 @@ svr owK dAE cNI -emF -onU +nEb +bcm aaB gUF hEC oUP ate -sal +nYQ fBg ueg eDI @@ -97566,7 +97566,7 @@ mKI uql cfA xmU -psU +gFt ptJ uql cfA @@ -97598,7 +97598,7 @@ cMW qpz tjh rtZ -qin +luL eLF tmn vXW @@ -97615,8 +97615,8 @@ qbS frc kwX fFP -kUY -jtJ +kCC +eEb sLX pSr lfC @@ -97787,11 +97787,11 @@ gsA gsA pia gsA -emF -pIC -maS -unq -emF +nEb +lXs +qfM +pun +nEb oTi oTi dHr @@ -97804,7 +97804,7 @@ oUy hVH hVH oFH -emF +nEb uyF sqR rAD @@ -97831,7 +97831,7 @@ kZM vZk krB mfp -gKA +fsi pFo kIo utS @@ -97855,7 +97855,7 @@ cMW pCS wHX khS -ojN +oEx jWD frZ wnj @@ -97873,7 +97873,7 @@ nFs gqI fFP rlT -qOG +oeC mfz hvo lfC @@ -98044,11 +98044,11 @@ gsA gsA gsA gsA -emF -xux -nAS -tej -mOO +nEb +fxf +ilz +aRy +gnN wDe wDe wDe @@ -98061,7 +98061,7 @@ qTn hVH hVH euH -emF +nEb oom wcV osV @@ -98075,7 +98075,7 @@ tQK kTN jSa ctt -wdN +ltG suJ haM haM @@ -98130,7 +98130,7 @@ tmS pOL fFP lfC -aYH +uBv lfC lfC lfC @@ -98301,11 +98301,11 @@ iqg pyp gsA gsA -emF -pIC -sCn -txn -grt +nEb +lXs +kos +hUO +rKl wBi wBi tJZ @@ -98318,13 +98318,13 @@ jwh kIy hVH puK -emF +nEb sIA sIA sIA sIA tXw -qGT +jkj bKM oaA eBV @@ -98343,7 +98343,7 @@ aid fSI uOR aWX -suS +tJL swi cJi aST @@ -98356,7 +98356,7 @@ vJE vYg snk snk -hDf +diT vJE vJE vJE @@ -98387,7 +98387,7 @@ jsN sLe ndC gxD -kKf +rri ayF ptU gci @@ -98555,15 +98555,15 @@ ewB gsA gsA gsA -jbe -gMa -crB -crB -crB -crB -crB -crB -emF +bNn +mkF +fHK +fHK +fHK +fHK +fHK +fHK +nEb pbb qFt bmx @@ -98575,13 +98575,13 @@ oLS cnZ arv iZm -emF +nEb bzp nBY pSz ddp tXw -fhb +cTF oZB lMv jRA @@ -98644,7 +98644,7 @@ cIJ pOL fFP jxU -bwy +hyP nTZ qob gci @@ -98812,27 +98812,27 @@ pyp yeA gsA gsA -paM -oFM -mJJ -pxm -poQ -uPV -xdU -dvk +mlK +eYp +wYC +vmt +vWX +uOf +kge +sUI bkK msW tuW msW -emF -emF -emF -emF -emF -emF -emF -emF -emF +nEb +nEb +nEb +nEb +nEb +nEb +nEb +nEb +nEb lfX bev xER @@ -98901,7 +98901,7 @@ eAT tQr fYo jxU -rrw +iGA xGh mHz gci @@ -99069,15 +99069,15 @@ iqg yeA gsA gsA -cKl -ofr -rDf -jZk -iGi -cEd -qMm -gzz -vHy +xJI +kfi +aNu +nzj +ogp +rUN +maj +bVn +dRc xdi yaG cgq @@ -99099,9 +99099,9 @@ vCJ xIL iMP tuQ -gZP +rln nFK -kHp +eyo ctt ppA lvd @@ -99158,7 +99158,7 @@ rYV vlw dND kHo -upD +ewd uLp izx gci @@ -99334,7 +99334,7 @@ kFx kFx kFx kFx -crB +fHK bXk wIy xxh @@ -99398,7 +99398,7 @@ rjY iqd stJ kpo -sXU +piB aZg iqm exi @@ -99410,12 +99410,12 @@ dCD aUi qLt fSH -dbb +gAQ mrM oYr tNg dJI -btT +vrt gUo wYW gci @@ -99586,14 +99586,14 @@ rhT wIb uJB aCn -hkA +scM wSw dNb rzL bAo mLS arO -nld +sHZ gaV trr yaP @@ -99647,7 +99647,7 @@ hKy edm jCR xkS -rZG +ops xys jcG oNC @@ -99667,12 +99667,12 @@ aOK hyK pYx hok -oER +lUg fnD fKo gTA fKo -aoI +sGI vlr qCL gci @@ -99893,7 +99893,7 @@ oQV pRN fpL cgb -ltP +bQj luB qPa olZ @@ -99904,7 +99904,7 @@ qPa eSE iwU ech -yel +bpF uyQ esO pVL @@ -99924,12 +99924,12 @@ kRR pev qLY eIH -uJI +pGg xRk lxk sXE sxG -nNz +mdm psz tWS gci @@ -100096,7 +100096,7 @@ yeA qFk eoQ xGA -gee +bYa hfH joN aCn @@ -100124,11 +100124,11 @@ nwf xLL eSK dTO -wLN -vSZ -xHk -hFj -dzQ +qCm +aHn +mGG +bnv +phH xHy aka scT @@ -100161,7 +100161,7 @@ hKT ngL pWo hFc -hVY +qwA joJ gBo gpc @@ -100181,12 +100181,12 @@ hip rKp rlB hhY -eUx -nmD -mms -psD -qio -qnA +mgB +peI +qBF +eJO +pKk +fQB nsa pkE gci @@ -100365,7 +100365,7 @@ bAo oMT bsA kHU -dAy +hei bAj bAj bAj @@ -100380,16 +100380,16 @@ jRd dDR sIt eSK -gxT -roG +dEF +tcI ibv ttt ttt -tda +paH kTs -nXu +olF ttt -xHY +vwp pqC ojG uHB @@ -100413,7 +100413,7 @@ uKi qQY uKi kaN -ylw +jIN mBq kht vBo @@ -100442,7 +100442,7 @@ vxi saH fKo ehV -qsE +pnj tNa cRQ ejW @@ -100605,7 +100605,7 @@ yeA yeA nCb kQM -erx +pfo iHF nCb obb @@ -100622,8 +100622,8 @@ bPZ sun xUR saW -dpI -gEo +kao +uun gsA gsA gsA @@ -100638,11 +100638,11 @@ eSK eSK eSK mui -hBT -jmm -npB -uDS -pZR +mMg +hxA +egH +cnx +riJ ftV jrO xaU @@ -100879,8 +100879,8 @@ bAo cUa pad xJC -pZl -qJw +lDP +biC yeA gsA yeA @@ -100923,7 +100923,7 @@ pon iDV eMu uKi -fiW +mRa auK rlV iiM @@ -101117,16 +101117,16 @@ yeA yeA yeA yeA -doe +iWc sSb lye -pZd +vtK nCb pAC bHj fxX iEZ -sOQ +dbk mbm kKx knW @@ -101136,8 +101136,8 @@ vJz icK wgX mky -pgq -crB +iwa +fHK vbe vbe vbe @@ -101163,8 +101163,8 @@ hJO ttt pqC mqZ -gFF -ows +opy +uVC waw oSk sdb @@ -101210,7 +101210,7 @@ pPA xxw oit wcx -htY +rEn iIL mou cPB @@ -101374,7 +101374,7 @@ yeA yeA gsA gsA -uiw +pIY gwB lLS qcc @@ -101384,17 +101384,17 @@ pIs gfJ xlC gqn -lXM -pYj +rZU +vzm cuQ -pYj -pYj -pYj -pYj +vzm +vzm +vzm +vzm dYM cUS -nke -cZo +rpG +jQP qIN aMm jBc @@ -101421,7 +101421,7 @@ ttt pqC mqZ bez -sVZ +wyc sjM fap sdb @@ -101458,7 +101458,7 @@ vFo goY oSt ygl -bzm +cOF dNX nuU izG @@ -101631,7 +101631,7 @@ yeA yeA pia gsA -mnf +dxs otU mlI fid @@ -101640,7 +101640,7 @@ qmE aiZ cwh iEZ -hMw +svJ guB vxY eOj @@ -101650,13 +101650,13 @@ hbX hcz rnz wxK -eQG -crB -crB -crB -crB -crB -crB +yji +fHK +fHK +fHK +fHK +fHK +fHK nlz wCj jBw @@ -101676,9 +101676,9 @@ miS ttt ttt hno -gpR +dLB vXq -wyX +xlk gmv nyM fiu @@ -101719,7 +101719,7 @@ dEP dEP dEP dEP -iFb +hWe kor bOF ahA @@ -101888,8 +101888,8 @@ yeA yeA pia gsA -oIb -gZS +vRg +lVm fon xCW nCb @@ -101898,22 +101898,22 @@ jHs lqk akh nCb -hBK -vCn -hBK -hBK -hBK -hBK -hBK +eto +iAj +eto +eto +eto +eto +eto jXu wxK -eQG -nrc -nnk -wKv -vHl -nKF -crB +yji +ftQ +kzB +knv +gdN +oOI +fHK qyI xoe pSN @@ -101927,7 +101927,7 @@ tUl wfJ vke ttt -nYN +rpJ jlP xeN jBT @@ -101935,7 +101935,7 @@ ttt dGY unO hYw -hZC +kFF smL fyK laG @@ -101996,7 +101996,7 @@ qZZ fAl sfR qZZ -lOL +buf mpA dSM cPk @@ -102146,7 +102146,7 @@ yeA pia gsA gsA -omT +wrX nCb gjf nCb @@ -102155,22 +102155,22 @@ dwT mev nCb nCb -hXG -oXo -upS -aAF -dDS -fhl -hBK +wmw +spH +ipR +bed +hcV +nDR +eto jPL wxK rgL -sOM -mPQ -bWU -pfZ -nKF -crB +aUH +kRQ +tiw +alu +oOI +fHK lKm wQr glO @@ -102191,8 +102191,8 @@ yeb ttt pqC uJv -qoz -gky +hMg +aMa saf ttg sdb @@ -102411,23 +102411,23 @@ uYx uYx uYx uYx -gAR -ipy -oXo -oxr -oXo -oXo -hBA -ygv +fKv +jSP +spH +cYg +spH +spH +cBb +ooD peb xsC brc -pYj -fMW -eFv -hYs -wUI -crB +vzm +aSs +mDm +dwo +hIT +fHK jFM aPu bFE @@ -102668,20 +102668,20 @@ dMH pHx oMO uYx -kpc -oXo -oXo -nlY -wYJ -oXo -hBA -pqn +pVN +spH +spH +xGI +wrx +spH +cBb +fJM bRp nrP aYi -crB -crB -crB +fHK +fHK +fHK nlm cfN nlm @@ -102722,7 +102722,7 @@ hkJ dHv bYw nnB -osf +rfF hSX cFQ clo @@ -102737,8 +102737,8 @@ smX jRK xmC iyT -jYo -gCl +bQR +ghh vRd uUA dEP @@ -102925,14 +102925,14 @@ wjp cxX myC iPm -dUj -gOz -hJW -asO -lUZ -bEM -kKw -cJH +hzk +bpo +qKg +rVu +xkF +vwL +bNr +dTx bRp nrP rgL @@ -102960,7 +102960,7 @@ ksd iAB dWa jBw -sVd +klx mqZ gZQ gbm @@ -102997,7 +102997,7 @@ gFy jMN lpa uve -ePU +jcs uUA hob hnb @@ -103182,14 +103182,14 @@ mAB lQp nNv uYx -lok -oXo -oXo -scv -dRZ -oXo -rbl -hBK +tWK +spH +spH +xMI +qUm +spH +oVB +eto uxe nrP fVQ @@ -103219,7 +103219,7 @@ xjC vQc oIY ibI -pEs +fcZ gbm xvg fiB @@ -103239,7 +103239,7 @@ sgg eyE iVf tVp -fZk +wQv vRW gvD gvD @@ -103439,21 +103439,21 @@ rHv lQp cWL qVx -xvS -jfL -oaL -vkp -vLJ -vLJ -baU -bSI -ruu +tcP +foT +nHc +kjQ +rfn +rfn +tiy +fzn +aLC oTf fVQ jlw rki cUa -uIo +hwu kkg pgT wdS @@ -103487,7 +103487,7 @@ jBf wLb uLR cFO -qaG +bND cFO wIm vvU @@ -103498,7 +103498,7 @@ sfs pYZ nnB dNu -eiI +gjP duA itL oTo @@ -103694,16 +103694,16 @@ bBH wDS rHv lQp -vQE +ayE uYx -hBK -hBK -hBK -isJ -njC -hgl -fLs -hBK +eto +eto +eto +tsy +nvc +khA +cIA +eto vpe saW bNo @@ -103720,12 +103720,12 @@ vbe ixe log yki -cyy -cyy -cyy -cyy -cyy -cyy +voS +voS +voS +voS +voS +voS gQP ybh gQP @@ -103765,9 +103765,9 @@ eAx pzV uUA uUA -evJ -aON -evJ +iem +hhq +iem uUA iEd iEd @@ -103961,7 +103961,7 @@ ovo kvh ovo csZ -xeg +khg bRl ylc cUa @@ -103970,19 +103970,19 @@ cUa wHT wHT wHT -isp +pjf rAk -odV +dWt vbe qRe mTE cur -cyy -niH -pCQ -sSB -dPd -cyy +voS +cxh +nEn +eQz +xYq +voS nWv fpn kii @@ -104029,19 +104029,19 @@ miw iEd tyx fwF -eoO +pOc boR dfe -hdv +amQ tyx dfe -jcP +gRR tyx fwF -uLK +mnC tyx dfe -olf +dfB iEd hcU lQJ @@ -104221,25 +104221,25 @@ aaQ dXY aap uwo -ceM +wzW gmg uEC eBC lQG -rXd -dbo -utM -cAq +obe +yme +oHu +oZd lLv goe dxA wGA -cyy -ctk -cpu -sRd -sRq -cyy +voS +wKC +tyK +jnw +pkz +voS puS rTU aGA @@ -104461,11 +104461,11 @@ gsA gsA pia uYx -osa -mUX +pIG +goC eNe -ips -tBL +fez +nYl uYx tVv vMa @@ -104480,23 +104480,23 @@ tmA iSZ iSZ wHb -gEo +uun xqc hMu -gUK -ijs -wTo -uim +uDz +htl +eyu +kGt ntc ntc djl ntc -cyy -aLm -prq -usU -aGv -cyy +voS +tDn +tNG +kNR +dXE +voS qjo esW uUI @@ -104506,7 +104506,7 @@ vEI wSx aGC vEI -ijJ +vKL jGK jap oKM @@ -104557,7 +104557,7 @@ tyx boR ijx iEd -dXJ +mGo pAt tKB fXp @@ -104732,7 +104732,7 @@ tfC oWD fkq cej -mYF +kEw aTX fQj hZQ @@ -104740,20 +104740,20 @@ ntE mWo oMs lnW -joR -kZz -dvd -dVX +tvZ +aLs +mjY +aeS ntc aum -rza +oLT hOJ -cyy -trP -quk -trP -bzc -cyy +voS +aqq +ruV +aqq +laI +voS gQP gQP gQP @@ -104817,7 +104817,7 @@ iEd cSe qtl jcW -raT +nll uMP hwE xMx @@ -104974,35 +104974,35 @@ gsA gsA pia pia -gIf +qLO mtI mtI mtI mtI mtI -gIf -pVO -aTs -gIf +qLO +rqE +hGk +qLO xNd nFk bDs pVy ifC cmw -wkK +avj ifC -gIf -crc -gIf -gIf -gIf -hBK -bXM -jJB -vMg +qLO +apD +qLO +qLO +qLO +eto +bPj +mOL +tQM ntc -gFU +xzR nUU jqL xkq @@ -105224,40 +105224,40 @@ gsA gsA gsA tKm -rmZ -hsU +bzt +aJG hhv tKJ kuK tKJ tKJ -gIf +qLO mtI mtI mtI mtI mtI -mLg +wzM wBe pbr -gIf -gIf -pLf -jCL -leQ +qLO +qLO +mJF +het +sSE ifC ugA byu ifC -sEO -nmZ -xLa -fqU -gIf -gKr -vYA -jJB -kLz +erK +tYT +csB +kkY +qLO +iSB +xKe +mOL +gVo unS vOA eji @@ -105488,7 +105488,7 @@ tRH dIl jGl pcO -gIf +qLO mtI mtI mtI @@ -105497,24 +105497,24 @@ mtI lcp bjP bjP -hIn -qVi -uhp -gEs -ncP +mBx +nmm +qFR +dkf +sbd ifC prX rGC ifC -nic -lMI -uvk -cmu -cOU -nac -rkv -eTn -fdw +bcg +wGw +jGH +hLn +xUy +ooz +wzF +fFX +uNT pzk nTI aTS @@ -105563,7 +105563,7 @@ tuP bHp aIj iEd -iMA +aps tyx tyx ajY @@ -105737,7 +105737,7 @@ gsA gsA yeA tKm -gBk +aYR iMO oUD dkb @@ -105745,7 +105745,7 @@ cHR azn vur lxb -gIf +qLO mtI mtI mtI @@ -105754,26 +105754,26 @@ mtI eKG bjP bjP -mut -tla -xZd -mjV -rId +xey +jNd +gVG +oQn +bsy ifC ifC bsl ifC -wBP -vMT -bzb -stN -gIf -gIf -vYA -blA -ylk +iLM +oPd +hFn +rHA +qLO +qLO +xKe +anx +jxw fLO -rqw +reL nDd iSo rws @@ -105825,7 +105825,7 @@ dRq dRq dRq dRq -qnR +mWT oWT qMR iEd @@ -105969,7 +105969,7 @@ ewB ewB gsA wsM -kDD +jZG oEY gsA yeA @@ -105991,7 +105991,7 @@ ewB gsA hsm hsm -taQ +est hsm hsm hsm @@ -106002,7 +106002,7 @@ hhv hhv hhv puk -gIf +qLO mtI mtI mtI @@ -106011,24 +106011,24 @@ mtI ogn bjP bjP -qZK -tom -tSg -uSo -lZI +qdm +jrH +tuz +lHT +bBO sFf cuM qEC -gIf -gIf -ylT -mnm -uzb -sWG -ual -cHW -smH -oXM +qLO +qLO +bYr +dVe +rOM +sUm +iLK +ify +roC +kwq hLk lJz kxz @@ -106064,11 +106064,11 @@ lkl bzO lkl uLR -pMZ +dki mZq oFg sSc -uWx +bwA sbe wAA ffm @@ -106082,7 +106082,7 @@ iFD iim mFm ixy -gQN +tye qnY oaH iEd @@ -106250,7 +106250,7 @@ hsm mbI gbU tpd -fmO +bel gXC hsm oAK @@ -106259,7 +106259,7 @@ aym aKu hhv sXT -gIf +qLO mtI mtI mtI @@ -106277,18 +106277,18 @@ iin pix dHc aSW -sgG -ydM -uiq -kBx -spx -dja -jMp -ixv -oOB +yiX +itK +hMq +sNg +xec +aTR +kpT +bIp +tPY ntc eSQ -hJD +isq rlm ntc xGt @@ -106300,12 +106300,12 @@ jEw pHU nju iQt -xNG +oQd kFb jsT thr jof -auq +hnx cvt vIY wzY @@ -106316,7 +106316,7 @@ eXl aSr pAb mnD -xqx +nyQ dxH pAR bzO @@ -106343,13 +106343,13 @@ xyC qot aXW iEd -dHF -onv -dHF +rfI +fFj +rfI cjX -oaw -dHF -ilD +baq +rfI +vTh iEd tDI gvJ @@ -106507,7 +106507,7 @@ hsm dLz aqv bzD -sBs +hWz kaA sHT qZB @@ -106516,7 +106516,7 @@ eAl hRN hhv euT -gIf +qLO mtI mtI mtI @@ -106524,7 +106524,7 @@ mtI mtI eDH wQT -aDR +pNF iee kOb kOb @@ -106534,15 +106534,15 @@ fun ade uMa gVP -pVO -qtD -eSn -mUA -pFk -gIf -eJN -tQh -gue +rqE +fKf +hxo +jOe +qkJ +qLO +ouR +nso +hvE ntc ntc iNl @@ -106563,7 +106563,7 @@ qBk ktQ hGy hCu -pbg +pTR lkm qEf iLp @@ -106756,15 +106756,15 @@ yeA yeA gsA gsA -lYb -ijC +tfi +vgS haY haY mlN xvx dUk llh -fIw +xub ldm hsm hHD @@ -106773,7 +106773,7 @@ cHl dIe hhv fCc -gIf +qLO lTA mqL mfP @@ -106781,7 +106781,7 @@ lWa mfP hQk uQP -aDR +pNF xtP uZg dyS @@ -106790,16 +106790,16 @@ wNH xRm daa rCn -gIf -gIf -gIf -gIf -gIf -gIf -gIf -cHW -ixv -wdB +qLO +qLO +qLO +qLO +qLO +qLO +qLO +ify +bIp +hTJ seT uXx ggO @@ -106811,7 +106811,7 @@ taf dcw qUt nJc -mqc +sIN yhv odf wlS @@ -106821,8 +106821,8 @@ ocD hGy wlS iDQ -aXE -qQj +gQT +obd qFJ njM bpQ @@ -106852,7 +106852,7 @@ nOR lTc vfR fBl -hYg +kUl uOK oIB pau @@ -106860,7 +106860,7 @@ iEd fBK tyx tyx -hic +xkn gjo qks tyx @@ -106880,18 +106880,18 @@ nlM bgK bBd peX -cXY -iBN -kvR -kvR -kvR -kvR -jxT -bod -opU -bJl -bJl -ygW +wSq +kOM +daC +daC +daC +daC +vAu +uMO +ufe +kOp +kOp +rve lDa ctA dPB @@ -107012,8 +107012,8 @@ gsA yeA yeA gsA -lYb -uyJ +tfi +rou luu gAB lGH @@ -107021,20 +107021,20 @@ prv sZS bmN llh -jJw +fZF kjm hsm hsm -eIK +aak piE coK hhv fmg -gIf -gtD +qLO +cty mOm tQy -saj +bht soj dHL mUn @@ -107043,20 +107043,20 @@ caA skp jje bUf -wzE +oGI jTr oiw pxh -gdY -qUY -sPh -gIf -kyO -rLJ -pmH -cYn -fNq -bMp +wLG +mZh +pJO +qLO +iMb +bYb +lMh +jQM +vxL +pPz seT ejb sgj @@ -107067,7 +107067,7 @@ hdp hdp xgv vjz -qBZ +acc hVF sTd ylB @@ -107080,7 +107080,7 @@ wlS jvs hCu qsq -jpI +xVb nbv oeh eXl @@ -107137,7 +107137,7 @@ ngR qek rSS qPO -lXO +mXk mXa akQ cqv @@ -107148,7 +107148,7 @@ fcK jvo uXJ uXJ -kcO +oLt pRZ iIs fpi @@ -107263,18 +107263,18 @@ xxc rIS fTn diF -nDt +xng qKq nlK qKq nlK qKq -kch +uRt dUm gtc tVL bzz -lnE +nXW cxs vUs llh @@ -107287,35 +107287,35 @@ hhv hhv hhv jiS -gIf +qLO ifC ifC -lWy +tDm ifC -axg -iIu -iIu -pBe -iIu -iIu -iIu -iIu -iIu -xxl -hVD +haB +mTK +mTK +vYv +mTK +mTK +mTK +mTK +mTK +tzd +oUK uce -gIf -heS -aRF -ilH -awG -oEA -gIf -eJN -fld -dKO +qLO +qaK +luM +cvc +cBH +lhc +qLO +ouR +hfG +fgj seT -qAW +ash qKl wRy nAt @@ -107338,7 +107338,7 @@ wlS wlS iDQ wlS -pUj +fVq lCr chV eXl @@ -107352,14 +107352,14 @@ cFO nxD lgh ykx -lkk +ltu mKM pwb oGJ -jxK +fpM ykx rpF -tqP +kTC qvD iEd pSM @@ -107394,18 +107394,18 @@ nSh pCW tEe kEL -wgH +hbe dVh eqr ofM ofM -hOz +qgx cSw hcM cqU -cEU +qxT cvi -fZJ +lpV nSh jTf hlL @@ -107516,22 +107516,22 @@ fme fme ilX uuQ -dDB +uHH udp fku arN -vcX +rqu yeA gsA yeA yeA gsA -vlb +tVh sIC qCQ gig eHM -swN +jSI iqR mwU fzg @@ -107541,38 +107541,38 @@ bOj hsm lyT vvg -gnD +bJo oif uwf -gIf +qLO qpo nQR pvz ifC -vgF -lxm -iIu -itM -fPs -hRZ -aVh -sKd -iIu +nIW +mfL +mTK +mnG +sGt +mae +sfp +vBu +mTK dIJ dIJ jWe -gIf -xwE -iIu -gIf -iIu -pjc -gIf -vYA -jth -swU +qLO +oEs +mTK +qLO +mTK +rpQ +qLO +xKe +aOq +gTK seT -dlE +dEt cBp iis uZs @@ -107580,7 +107580,7 @@ alb pHU oRP itB -fSM +nUu fbi wlS wlS @@ -107591,11 +107591,11 @@ dga fdc fhX lfW -kma +tiQ wlS wlS roY -pvw +gOA cFx lCr cFD @@ -107644,14 +107644,14 @@ mwr nNP xrM jcW -ixf +hJm rPp nSh ebv cjK lTH ayi -iFM +gMw arY hrP iTt @@ -107661,8 +107661,8 @@ oOn lbK poW mKJ -dgd -rVX +tZS +srl hvL pBG wQC @@ -107763,7 +107763,7 @@ wsM luJ tyh mZi -xiu +nIm uTv uTv uTv @@ -107777,21 +107777,21 @@ uuu lsS xNt mRw -sMU +vaU kCP vmM kCP kCP -jDF -bbP +byX +bCf jst cnN kYM sZZ -tiL +kjF tpC seW -qAr +jXy rYf uLj uWs @@ -107801,33 +107801,33 @@ oif tKJ pZZ eEJ -gIf +qLO aKq eyw oPx ifC -mRC -uKh -iIu -wyJ -kIg -nYw -iIu -mLU -iIu +xXY +tHa +mTK +wgN +lCM +uml +mTK +fOF +mTK dhT kTx mOI -gIf -cJu -aRF -ilH -awG -hYV -gIf -vYA -ova -kLz +qLO +wJU +luM +cvc +cBH +xba +qLO +xKe +sog +gVo seT luk cVP @@ -107836,12 +107836,12 @@ aoG aBO jwn itB -ybD +tdz iek wlS wlS hXo -nAd +lxS hmg mSV uCH @@ -107849,11 +107849,11 @@ eqi rhz iQm aty -feg +oDx wlS sTd smT -jPF +xeZ cFx qBR ppw @@ -107872,8 +107872,8 @@ vxe qKG tim ykx -lEN -mGt +eVX +wYR tDu iEd jYx @@ -107908,18 +107908,18 @@ niG hEa cwp tmN -dsw +ubE sYP gSo uxA kCQ mKJ -nNR +oZO cDx -wqf +aly mKJ nNW -opS +slc xuN qIp tQV @@ -108022,7 +108022,7 @@ xze uuQ uuQ uTv -dcd +dcy ahL vsb ycm @@ -108039,7 +108039,7 @@ yeA gsA yeA yeA -hze +lJj pAD nyE ole @@ -108058,40 +108058,40 @@ tKJ tKJ tKJ voz -gIf +qLO ifC ifC ifC ifC -gIf -gIf -gIf -gIf -gIf -gIf -gIf -gIf -gIf -gIf -hkQ -gIf -gIf -gIf -gIf -gIf -gIf -gIf -ciT -vDJ -vmS -alH +qLO +qLO +qLO +qLO +qLO +qLO +qLO +qLO +qLO +qLO +ltj +qLO +qLO +qLO +qLO +qLO +qLO +qLO +nHb +gba +cYB +sFB rwm seT seT seT rwm seT -bPu +eON qpu iDQ qKa @@ -108106,12 +108106,12 @@ bxa iKK jRe tWC -vMG +vBZ eOD cYH jgD tmM -wFD +hPC uPj bzO aDC @@ -108175,8 +108175,8 @@ wMj bDL uFI mKJ -guA -sMC +rIo +rsc crW kuR lOI @@ -108273,7 +108273,7 @@ ewB gsA gsA gsA -vcX +rqu arN seq bDv @@ -108296,7 +108296,7 @@ yeA gsA yeA yeA -hze +lJj nSR mMV eQk @@ -108305,7 +108305,7 @@ nOz beS bPV bPV -eDw +gRC vND twm qxi @@ -108357,10 +108357,10 @@ tBo inc dHP tWU -fne -oXn -oXn -cMl +bJk +eXq +eXq +bwK hTQ brn xOP @@ -108403,7 +108403,7 @@ mHq agM gJr rAf -xBV +nkr mxA iIv oOt @@ -108422,7 +108422,7 @@ sVR xVF xcR peX -rSm +hOQ sYP rPf hZz @@ -108530,12 +108530,12 @@ pia yeA yeA gsA -vcX +rqu cDk aWK dLf uGh -bwl +qZO kDi qcK deN @@ -108543,7 +108543,7 @@ rQI deN qcK pSc -bwl +qZO kDW xsD hZv @@ -108553,16 +108553,16 @@ yeA gsA yeA yeA -hze +lJj jPy pwO pep tBP xKh ses -edP -edP -kYE +nUo +nUo +bsw epF rhj qtB @@ -108596,8 +108596,8 @@ tIT sIW qcz glw -btR -xeJ +hHm +iCT glU mDX xel @@ -108614,10 +108614,10 @@ fCN xdo ghK muH -odp -jdh -eMU -ckg +sJX +pdh +maU +luO dfy hBG qdU @@ -108660,7 +108660,7 @@ xtp tOd xzI kLF -cKY +mTs mxA iIv xYL @@ -108679,7 +108679,7 @@ qaY iaC eNH peX -ttW +qBW ocl jsk uZu @@ -108782,17 +108782,17 @@ yeA yeA yeA yeA -cnW +fYN ewB yeA yeA gsA -vcX -mMd +rqu +mYz gVH gac kWV -nsY +dXN fXw dia tCh @@ -108800,17 +108800,17 @@ kBB lhw cNC wxk -ndM +eNB fvW nnO pJr -wRh +rSb dFs yeA gsA yeA yeA -hze +lJj nLJ qHp kZq @@ -108819,7 +108819,7 @@ gbE mfQ djx djx -mDW +cTi dCN fUM kuA @@ -108862,7 +108862,7 @@ vwo oao qkS rUQ -blK +jxl hIE tEm vGo @@ -108871,10 +108871,10 @@ xjh jsh rzS muH -odp -jdh -jdh -ckg +sJX +pdh +pdh +luO dfy kgi cBO @@ -108917,7 +108917,7 @@ hHG nzF dmD oEe -wJQ +aiM jWV iIv nSr @@ -109044,12 +109044,12 @@ pia yeA yeA gsA -vcX +rqu nrb ntn kpk uGh -iXg +aDL fBU uZd deN @@ -109057,7 +109057,7 @@ lhw kBs uZd foZ -iXg +aDL kDW sSD hvr @@ -109067,7 +109067,7 @@ yeA gsA yeA yeA -hze +lJj kCk mMV thE @@ -109076,7 +109076,7 @@ nrS beS kMM bPV -mox +wul jGN rlg mqa @@ -109128,10 +109128,10 @@ mIZ wpL tni hsJ -rAx -oeM -oeM -hJK +fnR +nNI +nNI +sec stl kZj qcI @@ -109174,7 +109174,7 @@ xzV ddL dPu aNk -csX +jOT eog gde aJk @@ -109301,11 +109301,11 @@ ewB gsA gsA gsA -vcX +rqu arN seq lqK -inb +hof uTv uTv aii @@ -109324,7 +109324,7 @@ yeA gsA yeA yeA -hze +lJj pRG kxb lZc @@ -109376,7 +109376,7 @@ oxQ oxQ rgh oxQ -paA +tYP bDH ahD smT @@ -109391,12 +109391,12 @@ nlx nfS vDd mTH -fLW +vJo nQW tLv tmM jgD -kxr +eLs lem dFC dFC @@ -109427,10 +109427,10 @@ fjc shZ shZ lPf -oVf -nLZ -tjz -bBa +acW +iNq +hSn +mWB kwh uBW mYV @@ -109440,7 +109440,7 @@ cGw oan cYW esC -bTi +pyt drZ nlR hFC @@ -109458,7 +109458,7 @@ mLR mKJ iIE bhn -hcm +qdt mKJ niY kNY @@ -109564,7 +109564,7 @@ iVd uuQ uuQ uTv -dcd +dcy ahL mhA aoX @@ -109581,8 +109581,8 @@ gsA jGx gsA gsA -rjq -xFF +xRs +gVk dVp bPV vkS @@ -109640,7 +109640,7 @@ spz wlS wlS hXo -qnW +wOJ fjM fEz twT @@ -109648,11 +109648,11 @@ uSz pmn pEb tYk -eTH +gXT wlS qKa iDQ -mCL +qlO wZl oeh dFC @@ -109671,12 +109671,12 @@ srn bPR gme tYn -plT +aCS rQG -ulM +xBF tIG pED -lUJ +aba lwM cKB dHW @@ -109686,7 +109686,7 @@ vEd lPf oso ckF -iuj +qCb vlm tvX qID @@ -109717,7 +109717,7 @@ fOj glH xtK mKJ -dgd +tZS tQv crW rFw @@ -109819,7 +109819,7 @@ aNU chu dGu pHE -qzm +ati uTv uTv uTv @@ -109833,13 +109833,13 @@ bxe sOU dCT arN -vcX +rqu yeA gsA yeA yeA gsA -pjO +gsd kYx moJ wtU @@ -109853,8 +109853,8 @@ dGR kll wGM wGM -gST -rgk +sST +nUb wGM cMI rKn @@ -109870,9 +109870,9 @@ oaZ jHW cqV ebF -iUV -eId -sID +wFn +tfK +gVY qPU oOu mAH @@ -109882,7 +109882,7 @@ htW voD dYG oxQ -auT +vRA dno chb xWL @@ -109904,11 +109904,11 @@ mQE pjQ qcI pOD -xdj +lBT wlS fcL wlS -jMm +xhA wZl ajn pBg @@ -109920,7 +109920,7 @@ frW fEl oIs eAC -aPL +bqy kqw vVE lLy @@ -109930,7 +109930,7 @@ kZE kfv vpR cSi -cIF +lky gmX nof dcG @@ -109943,19 +109943,19 @@ dHW lPf nae dbI -ouV -iXL -fPW -ndR -gOr -dPG +ePO +ivz +umX +ftC +kAI +iWM haH xEU ffc aZJ fmy iEO -rdM +yid sTA wKp tKh @@ -109969,11 +109969,11 @@ sYP pMy hEj hEj -egI +buA lbl jOP mtO -fed +uQB hTN oQJ fbZ @@ -110081,22 +110081,22 @@ aNU sDt vqq vqq -coe +dWD vqq vqq sDt aNU -dbs +jIR udp fZV chA -nDt +xng qKq nlK qKq nlK qKq -kch +uRt xgd bnm pOB @@ -110165,7 +110165,7 @@ wlS wlS kPT odf -hTM +ioI ajn nQt dFC @@ -110187,7 +110187,7 @@ wPi mRK qcl ikB -rlQ +nLi aGl uyB bZF @@ -110198,28 +110198,28 @@ cMi eHp dHW lPf -rON +fOm gNA mmN efU faG pYw hBZ -seo +tKP xbt uFp azr jdG -bPc -ldP -gCQ -hAD -ueh -fZM +gUW +fRG +mEB +qbA +xhZ +rif jJS oiZ ulu -lcj +bWj wQc wBq vDB @@ -110353,8 +110353,8 @@ gsA yeA yeA gsA -wHf -nhH +ksN +owz swK mkH dVy @@ -110364,13 +110364,13 @@ raw rBm sHi hqf -mVF +aFH tpz oNA evI flw uol -vei +bkV aCk kyM mCR @@ -110421,7 +110421,7 @@ wlS wlS cGr iDQ -iKw +mcz tRS igJ dFC @@ -110443,8 +110443,8 @@ vFI vST nnn vpR -uPp -gXJ +mPa +nIS fyZ wdr tNp @@ -110460,23 +110460,23 @@ wHI tAg ddM pZi -eZJ +aBC ghB -vNX -jaD -tlq -gfY -ixK -uYH -nQH -jnZ -iIy -iIy -aUb +jEi +ugK +qeG +nYt +dmC +hCt +jKN +eof +kbs +kbs +lCR mcM fTb oMV -vCZ +fdG jFm tUU gDB @@ -110611,8 +110611,8 @@ yeA yeA gsA gsA -wHf -ijC +ksN +vgS haY haY pXK @@ -110676,7 +110676,7 @@ lFf hGy smT smT -sMe +nDy ouv mIH fna @@ -110701,8 +110701,8 @@ rUT vyh quI xoD -pGh -wiv +hfq +iRV huh pWY uDE @@ -110717,7 +110717,7 @@ krE sYJ nqe gnw -tAu +gbe yfK nGG gZR @@ -110726,14 +110726,14 @@ rfO fVx uAv rSi -bRB +rkF mgs wOk jGD jJS -oLO +lVE spa -kZd +tMD wQc tki nfk @@ -110932,7 +110932,7 @@ qWY vVB whx nVO -poD +nwc cMZ jIv gNV @@ -110948,7 +110948,7 @@ bbf hTD oIs fxR -noo +jlQ mbT ukp lvJ @@ -110958,7 +110958,7 @@ rUT kfv vpR uig -ulM +xBF okF rAO oZL @@ -111137,7 +111137,7 @@ owZ xwj sAc sAc -ebP +nhB sAc sAc sAc @@ -111171,7 +111171,7 @@ qth oQr sFS tGT -snE +ssK qWt iYw hFP @@ -111213,11 +111213,11 @@ ijk xvs bPy mIQ -neH +cQP kmL -ulM -lwH -leR +xBF +sRe +ifV jNP yak cKB @@ -111230,12 +111230,12 @@ iRY uga sGZ vBI -tIS +mOp lJP sGZ xaj mWE -vWW +oUz kFd nXK wxS @@ -111398,7 +111398,7 @@ oQI xKW rzO qYG -jKm +gvk gsA yeA yeA @@ -111474,7 +111474,7 @@ lmw lmw cKB cKB -aEE +rpx aQU dun cKB @@ -111654,7 +111654,7 @@ dzW evp hhv aHX -aoS +nJK fSf rNr eHX @@ -111733,7 +111733,7 @@ tzk blC fkb vCB -xlU +wWK dwu fYI msM @@ -111758,7 +111758,7 @@ vhc vhc xxS kwh -hpC +hLI tBi tBi tBi @@ -112427,10 +112427,10 @@ uNj jGx jGx fHR -elO +fIB jyo oYk -wHP +xOB tEK pPj bDq @@ -112485,7 +112485,7 @@ wEe wEe jkr eGd -peg +pee fDs aNb nir @@ -112512,7 +112512,7 @@ xAe iRY iRY nLv -mhP +ncX eNK pTW pTW @@ -112737,7 +112737,7 @@ jMh jBo qDc eGd -dJN +pHZ jdC pJi agj @@ -112751,7 +112751,7 @@ avO ycR sLc bvR -bDw +oqv deZ poJ ppj @@ -112759,9 +112759,9 @@ rtj req gxo bWm -nZj +rGf cLH -uXK +waM bWm bQH dHW @@ -112971,7 +112971,7 @@ qsI syO paW cTn -tcL +xrj cxF eWK syI @@ -112998,7 +112998,7 @@ bfq fRl uff gKg -wFR +dEk kyD vSu aBo @@ -113039,15 +113039,15 @@ mib mib eTm iRY -qHP +dAa ePs vgn iRY -wns +cYS oRY lNN iRY -ayA +obU sUj mwi iRY @@ -113261,7 +113261,7 @@ mYT dxV ncf vRP -yfv +jfa ykU sOl myU @@ -113282,7 +113282,7 @@ shZ tTE kfB iRY -lKu +diM wVX eNK pTW @@ -113459,7 +113459,7 @@ wVK nPn lgK vtI -gLp +mYp upb rDS bUS @@ -113529,14 +113529,14 @@ hpq bUn req kFj -xis +buT szG nCo ePm bWm ibc iBH -pWx +hrr drU oUC tlT @@ -113549,9 +113549,9 @@ pTW pTW jnE auW -pnv -pnv -wyP +ihH +ihH +rOD iRY gVl sbZ @@ -113715,7 +113715,7 @@ gEV fHs mKX lgK -wSB +nWo lxn xxE pDn @@ -113741,10 +113741,10 @@ eeJ cTK rhw rhw -gwP +kxD hrR yaL -lon +vyk eLi cbH umL @@ -113973,7 +113973,7 @@ nql iAu trX vtI -xjE +sSn dYn pod bUS @@ -113990,7 +113990,7 @@ uQx xhM nzy jhr -uEB +oQg fKg mhZ fwL @@ -113998,7 +113998,7 @@ wbE lbY vlR ixJ -jDB +gUi xbr swv uHQ @@ -114064,8 +114064,8 @@ tlL jnE mbS vcG -ffa -ift +gSZ +uBo avH avH avH @@ -114225,7 +114225,7 @@ ewB gsA gsA vtI -oeB +jdj liz gCa sMa @@ -114254,10 +114254,10 @@ qFY eVo jgI bPM -jEe -gBm -rPU -diB +mQc +pGW +gmj +cbV pyP omR cqL @@ -114266,12 +114266,12 @@ kok bZA mWi iyq -rxB +ylp ovp iJe kgH wAl -xes +llT dFC xFA qzz @@ -114292,7 +114292,7 @@ baX wSs rLB sip -mzb +atD dqo efu oxh @@ -114492,7 +114492,7 @@ vkC boZ wII mws -wqB +lYy wII kEh jUB @@ -114549,7 +114549,7 @@ qIL pTy kGm lpn -mtz +toz bBM vQX ljZ @@ -114765,11 +114765,11 @@ jSk mBT qPH fwL -jce +cyp dVc vzi jHS -vpn +hvQ mLI cly xBb @@ -114802,11 +114802,11 @@ xCe dML wkX lph -oFo +awv qIL fgd rVQ -xuJ +aot pxM eSZ nPJ @@ -115026,7 +115026,7 @@ fZt lYd wlj sZT -dYk +jlg mLI elX oNv @@ -115070,7 +115070,7 @@ jcm las xat tzD -oBk +dNw pQZ shi puJ @@ -115265,11 +115265,11 @@ wII lvs gaY wII -mMT +pSb xPG jZC aWD -jiR +bTp vtI iES qnm @@ -115281,13 +115281,13 @@ kad fwL qOm mVo -oVm +asy sIj -nVz +gXQ bka cYQ eeJ -vKD +pTp diN cCP kMP @@ -115322,7 +115322,7 @@ lZU eYn dqV jVS -tvv +uKZ eUz nfh tYs @@ -115338,7 +115338,7 @@ ero dHW ibc oUC -lfc +qrt xVm eNK tlL @@ -115523,7 +115523,7 @@ fKs wII mAO aJO -gZc +aNz sUP pom kfH @@ -115538,8 +115538,8 @@ fwL fwL eeJ eeJ -eus -rCw +lrC +mzG eeJ mJD ibb @@ -115613,7 +115613,7 @@ eVa xYK xZk drp -fnU +sbk jzF jzF qMD @@ -115784,7 +115784,7 @@ rOL kkz dXw dYU -ffd +wPR jao ewP jao @@ -116287,7 +116287,7 @@ yeA qFk lsJ wII -wtP +dMx rya lCa kzI @@ -116349,7 +116349,7 @@ eWe mtP ipJ ghZ -tnK +biR cLT nFy qVE @@ -116574,7 +116574,7 @@ iks bPo vUH rYl -jkH +thD fmB xRe dyu @@ -116598,7 +116598,7 @@ nXU bME nXU fHx -oLf +nAg ipJ mCQ mCQ @@ -116838,7 +116838,7 @@ wJS nYu gtQ fJf -lAu +oyS uWD wAl tpI @@ -116863,7 +116863,7 @@ mCQ mCQ cgc csY -xIb +aCZ jRT lYY gRA @@ -117092,7 +117092,7 @@ dZm fWm gGZ wJS -oiV +tQA sud rfl iJe @@ -117146,9 +117146,9 @@ sLy xtQ xtQ xtQ -gkK -qki -xHa +peG +eSH +blB wlD wId hcF @@ -117334,7 +117334,7 @@ iTQ sQJ iyo grc -cOB +isT kUs acf nnb @@ -117398,7 +117398,7 @@ dHW gLb icl amt -mKZ +oOa uKv rkn qCD @@ -117581,7 +117581,7 @@ oCe oCe oCe wII -jaU +eJq iod mwN ylI @@ -117601,7 +117601,7 @@ jAG kjs otE mLT -hen +qMG inw xlS pKL @@ -117860,9 +117860,9 @@ otE otE eqb eqb -sCm +txQ vBv -fAw +kxx gMO eqb eqb @@ -117889,7 +117889,7 @@ sUd sUd sUd inp -sue +aAQ ciR sUd vAE @@ -118120,7 +118120,7 @@ wsJ qXS lcG juC -hbw +neJ eXZ eqb cId @@ -118139,7 +118139,7 @@ pWy qPp xFb cFr -uIi +lbg odu odu qAB @@ -118179,15 +118179,15 @@ mLj lBr tfX iRY -gkI +dUF lKh lKh iRY -iSF +lKP ocM gpe iRY -kus +ewZ pSx eiL iRY @@ -118366,7 +118366,7 @@ sxp fqh xtE tEB -dBn +wqw naP wUf dhI @@ -118381,12 +118381,12 @@ wTw fZb ijU ekZ -lZd +sPf eUC dDq eqb wmz -vhf +vvO amC heE uoF @@ -118409,11 +118409,11 @@ mZZ mbx kYH okN -iGW +nBW kal xJm kIj -ybZ +jeM edf iPs otP @@ -118432,7 +118432,7 @@ iJN apC niS niP -ekq +sLU lBr tfX iRY @@ -118638,12 +118638,12 @@ azp jvJ oMN pLG -wNt +gCN aUW buJ eqb wLX -ccG +pKW amC heE mHi @@ -118666,7 +118666,7 @@ iyH pLN paR gKz -icV +oYA hzd hzd hzd @@ -118874,7 +118874,7 @@ wiy sxp aUd sxp -lFd +ttz fjq sxp jht @@ -118889,13 +118889,13 @@ neh xgr gwd dJK -gLm +nkj ens xjK iRv rIm xuV -vFA +cMD fPe bxs eqb @@ -118923,7 +118923,7 @@ nOw oKQ aiX aig -qGM +asC eTc eTc fRw @@ -119138,7 +119138,7 @@ klS xok ycK neh -nAz +oxW hVv fmQ dQv @@ -119168,7 +119168,7 @@ qPp eHz kVX xPA -hsI +ttG nLw eBp lfZ @@ -119180,7 +119180,7 @@ hZp vMV aMB joU -cIe +kuf lBn loD loD @@ -119384,7 +119384,7 @@ mTL pIL cQN wML -sFt +ofG lkT gTM dVH @@ -119406,7 +119406,7 @@ nLK tBw fNg tfT -aeh +tYN wJh rBU eqb @@ -119414,7 +119414,7 @@ bsF bxs oCq nXU -vki +lRa rmV bqW fFf @@ -119431,17 +119431,17 @@ ojm kyR kyR kyR -oHV -oHV -oHV -oHV +kxl +kxl +kxl +kxl pql -oHV +kxl tfq sWR lsT wUw -njS +baz pZF uhG kJv @@ -119667,7 +119667,7 @@ tIJ uPJ xUI eqb -fOR +vGR xvM lZw nXU @@ -119689,7 +119689,7 @@ fzo qeU kyR jdT -qat +drF rMN tkf olR @@ -119711,7 +119711,7 @@ dHW dHW gLb xtQ -nLs +hWR gLb gLb jGx @@ -119885,16 +119885,16 @@ ngu ngu ngu nIs -mpK +mic eaE -klt +rrW hcr hcr hcr -pLp +bnK nCg sSH -fUT +wuO hcr hcr hcr @@ -119954,8 +119954,8 @@ nan tfq ktc hzd -jlZ -boB +nSi +rGU luD mmz lyw @@ -120203,7 +120203,7 @@ gnv hMs kpf bBG -vGZ +aPU kLq kLq vwY @@ -120211,12 +120211,12 @@ fbJ tfq ktc pFF -qNV +hOa mbJ eTq gSn abk -vMj +iAQ tfq dHW dHW @@ -120414,7 +120414,7 @@ gsA gsA gsA uCC -fMJ +skH kIZ tfZ nhi @@ -120460,20 +120460,20 @@ sRs fOw kyR qoI -bnW -oIr +fvs +oLk jGO soP rKv tfq qXN vhE -abL +jeg dxq oYZ men vdz -nWX +wEG tfq dHW dHW @@ -120718,19 +120718,19 @@ kyR kyR ghC ghC -pNG -pNG -dcD +fbp +fbp +qJG ghC tfq hzd oWM -xPh +qRi cxD coJ koC -bbs -eoI +oJV +uAc tfq dHW dHW @@ -120983,9 +120983,9 @@ tfq tfq tfq tfq -ydt -sXN -kob +iBr +nBh +oaY tfq tfq tfq diff --git a/_maps/shuttles/hunter/hunter_space_cop.dmm b/_maps/shuttles/hunter/hunter_space_cop.dmm index 7b59aca19b9f6..d79dd2d7bba92 100644 --- a/_maps/shuttles/hunter/hunter_space_cop.dmm +++ b/_maps/shuttles/hunter/hunter_space_cop.dmm @@ -177,13 +177,39 @@ }, /turf/open/floor/iron/dark, /area/shuttle/hunter) -"fn" = ( -/obj/effect/spawner/structure/window/shuttle, -/obj/machinery/door/poddoor/preopen{ - id = "hunter_police_bridge"; - name = "Bridge View Blast Door" +"eP" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -8; + pixel_y = 4 }, -/turf/open/floor/plating, +/obj/item/pen/fountain/captain{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/folder/blue{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/newspaper, +/obj/structure/railing{ + dir = 4 + }, +/obj/item/stamp{ + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/stamp/denied{ + pixel_x = -10; + pixel_y = 7 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/sign/poster/official/fruit_bowl{ + pixel_y = 32 + }, +/turf/open/floor/iron/dark, /area/shuttle/hunter) "fZ" = ( /obj/effect/turf_decal/siding/wood{ @@ -246,6 +272,13 @@ }, /turf/open/floor/plating/rust, /area/shuttle/hunter) +"ht" = ( +/obj/structure/railing{ + dir = 2 + }, +/obj/effect/turf_decal/siding/dark, +/turf/open/floor/iron/tech/grid, +/area/shuttle/hunter) "hx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/siding/dark, @@ -260,6 +293,36 @@ }, /turf/open/floor/iron/dark, /area/shuttle/hunter) +"ig" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/structure/railing{ + color = "#A47449"; + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/bot/left, +/obj/effect/turf_decal/bot/right, +/obj/structure/sign/directions/command{ + pixel_y = 22; + dir = 4 + }, +/obj/structure/sign/directions/engineering{ + pixel_y = 34; + dir = 8 + }, +/obj/structure/sign/directions/supply{ + pixel_y = 40; + dir = 1 + }, +/obj/structure/sign/directions/security{ + pixel_y = 28; + dir = 4 + }, +/obj/effect/mob_spawn/human/fugitive_hunter, +/turf/open/floor/iron/tech/grid, +/area/shuttle/hunter) "ir" = ( /obj/effect/turf_decal/siding/white{ dir = 1 @@ -360,38 +423,17 @@ /obj/machinery/atmospherics/pipe/simple/purple/hidden, /turf/open/floor/plating, /area/shuttle/hunter) -"kb" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/pen/fountain/captain{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/folder/blue{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/newspaper, +"kT" = ( /obj/structure/railing{ dir = 4 }, -/obj/item/stamp{ - pixel_x = -8; - pixel_y = 12 - }, -/obj/item/stamp/denied{ - pixel_x = -10; - pixel_y = 7 +/obj/machinery/computer/crew{ + dir = 8 }, /obj/effect/turf_decal/siding/dark{ dir = 4 }, -/obj/structure/sign/poster/official/fruit_bowl{ - pixel_y = 32 - }, +/obj/effect/turf_decal/delivery/white, /turf/open/floor/iron/dark, /area/shuttle/hunter) "li" = ( @@ -477,6 +519,14 @@ }, /turf/open/floor/iron, /area/shuttle/hunter) +"nB" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor/preopen{ + id = "hunter_police_bridge"; + name = "Bridge View Blast Door" + }, +/turf/open/floor/plating, +/area/shuttle/hunter) "nL" = ( /obj/structure/lattice/catwalk, /obj/structure/reagent_dispensers/watertank, @@ -667,6 +717,22 @@ }, /turf/open/floor/plating/airless, /area/shuttle/hunter) +"uv" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/bot/right, +/obj/effect/turf_decal/bot/left, +/obj/structure/railing{ + color = "#A47449"; + dir = 8 + }, +/obj/effect/mob_spawn/human/fugitive_hunter{ + dir = 1 + }, +/turf/open/floor/iron/tech/grid, +/area/shuttle/hunter) "uI" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/siding/thinplating/dark{ @@ -755,32 +821,9 @@ }, /turf/open/floor/iron/ridged/steel, /area/shuttle/hunter) -"xU" = ( -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/structure/railing{ - dir = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/grid/steel, -/area/shuttle/hunter) "yh" = ( /turf/open/floor/iron/yellowsiding, /area/shuttle/hunter) -"zM" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/computer/crew{ - dir = 8 - }, -/obj/effect/turf_decal/siding/dark{ - dir = 4 - }, -/obj/effect/turf_decal/delivery/white, -/turf/open/floor/iron/dark, -/area/shuttle/hunter) "Be" = ( /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor/preopen{ @@ -796,20 +839,6 @@ /obj/machinery/light, /turf/open/floor/iron, /area/shuttle/hunter) -"BT" = ( -/obj/effect/turf_decal/box/corners, -/obj/structure/railing{ - dir = 2 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/item/storage/firstaid/brute{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/medical, -/turf/open/floor/iron/grid/steel, -/area/shuttle/hunter) "CE" = ( /obj/structure/rack, /obj/item/melee/baton/loaded{ @@ -1028,6 +1057,27 @@ /obj/effect/turf_decal/caution/stand_clear, /turf/open/floor/iron, /area/shuttle/hunter) +"Ki" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/structure/railing{ + dir = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/grid/steel, +/area/shuttle/hunter) +"KH" = ( +/obj/machinery/computer/shuttle_flight/hunter{ + dir = 8 + }, +/obj/structure/railing{ + dir = 2 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/iron/tech/grid, +/area/shuttle/hunter) "Lc" = ( /obj/effect/turf_decal/siding/thinplating/dark{ dir = 1 @@ -1068,6 +1118,20 @@ }, /turf/open/floor/iron, /area/shuttle/hunter) +"Mn" = ( +/obj/effect/turf_decal/box/corners, +/obj/structure/railing{ + dir = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/item/storage/firstaid/brute{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/medical, +/turf/open/floor/iron/grid/steel, +/area/shuttle/hunter) "NK" = ( /obj/structure/fans/tiny, /obj/machinery/door/poddoor/shutters{ @@ -1114,29 +1178,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/shuttle/hunter) -"OP" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/bot/right, -/obj/effect/turf_decal/bot/left, -/obj/structure/railing{ - color = "#A47449"; - dir = 8 - }, -/obj/effect/mob_spawn/human/fugitive_hunter{ - dir = 1 - }, -/turf/open/floor/iron/tech/grid, -/area/shuttle/hunter) -"OU" = ( -/obj/structure/railing{ - dir = 2 - }, -/obj/effect/turf_decal/siding/dark, -/turf/open/floor/iron/tech/grid, -/area/shuttle/hunter) "Pc" = ( /turf/open/floor/iron/stairs, /area/shuttle/hunter) @@ -1151,17 +1192,6 @@ /obj/effect/decal/cleanable/vomit/old, /turf/open/floor/wood, /area/shuttle/hunter) -"Ri" = ( -/obj/machinery/computer/shuttle_flight/hunter{ - dir = 8 - }, -/obj/structure/railing{ - dir = 2 - }, -/obj/effect/turf_decal/siding/dark, -/obj/effect/turf_decal/delivery/white, -/turf/open/floor/iron/tech/grid, -/area/shuttle/hunter) "Rq" = ( /obj/effect/turf_decal/caution{ dir = 4; @@ -1186,36 +1216,6 @@ }, /turf/open/floor/wood, /area/shuttle/hunter) -"SN" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/obj/structure/railing{ - color = "#A47449"; - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/bot/left, -/obj/effect/turf_decal/bot/right, -/obj/structure/sign/directions/command{ - pixel_y = 22; - dir = 4 - }, -/obj/structure/sign/directions/engineering{ - pixel_y = 34; - dir = 8 - }, -/obj/structure/sign/directions/supply{ - pixel_y = 40; - dir = 1 - }, -/obj/structure/sign/directions/security{ - pixel_y = 28; - dir = 4 - }, -/obj/effect/mob_spawn/human/fugitive_hunter, -/turf/open/floor/iron/tech/grid, -/area/shuttle/hunter) "SW" = ( /obj/effect/decal/cleanable/oil{ pixel_y = 11 @@ -1248,51 +1248,6 @@ }, /turf/open/floor/engine, /area/shuttle/hunter) -"TV" = ( -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/structure/closet/crate/bin, -/obj/item/trash/candy, -/obj/item/trash/plate, -/obj/item/trash/cheesie{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/trash/sosjerky{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/effect/decal/cleanable/shreds{ - pixel_x = -5; - pixel_y = -11 - }, -/obj/item/cigbutt, -/obj/item/cigbutt{ - pixel_y = -6 - }, -/obj/item/cigbutt{ - pixel_y = 1; - pixel_x = -4 - }, -/obj/item/cigbutt{ - pixel_y = -3; - pixel_x = -4 - }, -/obj/item/cigbutt{ - pixel_x = -9; - pixel_y = -2 - }, -/obj/item/cigbutt{ - pixel_y = 4; - pixel_x = -4 - }, -/obj/machinery/airalarm/directional/east{ - req_access = null; - req_access_txt = "181" - }, -/turf/open/floor/iron, -/area/shuttle/hunter) "Ua" = ( /obj/machinery/atmospherics/components/unary/plasma_refiner, /obj/effect/turf_decal/stripes/line{ @@ -1360,6 +1315,51 @@ /obj/effect/mob_spawn/human/fugitive_hunter, /turf/open/floor/iron/tech/grid, /area/shuttle/hunter) +"Ww" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/structure/closet/crate/bin, +/obj/item/trash/candy, +/obj/item/plate, +/obj/item/trash/cheesie{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/trash/sosjerky{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/effect/decal/cleanable/shreds{ + pixel_x = -5; + pixel_y = -11 + }, +/obj/item/cigbutt, +/obj/item/cigbutt{ + pixel_y = -6 + }, +/obj/item/cigbutt{ + pixel_y = 1; + pixel_x = -4 + }, +/obj/item/cigbutt{ + pixel_y = -3; + pixel_x = -4 + }, +/obj/item/cigbutt{ + pixel_x = -9; + pixel_y = -2 + }, +/obj/item/cigbutt{ + pixel_y = 4; + pixel_x = -4 + }, +/obj/machinery/airalarm/directional/east{ + req_access = null; + req_access_txt = "181" + }, +/turf/open/floor/iron, +/area/shuttle/hunter) "WJ" = ( /obj/machinery/computer/camera_advanced/bounty_hunter{ dir = 8 @@ -1543,7 +1543,7 @@ Sf dM nz Zk -TV +Ww gd Bx GC @@ -1609,13 +1609,13 @@ GC bB GC li -xU +Ki Ey uI GC -SN +ig Rq -OP +uv GC wV "} @@ -1623,7 +1623,7 @@ wV iD GC Jh -BT +Mn Ey dE GC @@ -1668,8 +1668,8 @@ GC Iw aH GC -kb -zM +eP +kT tj GC iD @@ -1697,9 +1697,9 @@ GC DY GC Gl -OU +ht bs -fn +nB iD iD "} @@ -1711,9 +1711,9 @@ wV GC GC WJ -Ri -fn -fn +KH +nB +nB iD iD "} @@ -1724,9 +1724,9 @@ iD iD wV GC -fn -fn -fn +nB +nB +nB iD iD iD diff --git a/_maps/shuttles/ruin/ruin_caravan_victim.dmm b/_maps/shuttles/ruin/ruin_caravan_victim.dmm index d8d67dfcca68d..25d3c5aee961b 100644 --- a/_maps/shuttles/ruin/ruin_caravan_victim.dmm +++ b/_maps/shuttles/ruin/ruin_caravan_victim.dmm @@ -25,13 +25,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/airless, /area/shuttle/caravan/freighter1) -"aQ" = ( -/obj/effect/turf_decal/box/white/corners{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/airless, -/area/shuttle/caravan/freighter1) "aX" = ( /obj/structure/chair/stool, /obj/effect/turf_decal/tile/yellow/half/contrasted, @@ -64,19 +57,6 @@ initial_gas_mix = "TEMP=2.7" }, /area/shuttle/caravan/freighter1) -"cr" = ( -/obj/effect/turf_decal/box/white/corners{ - dir = 1 - }, -/obj/structure/closet/crate, -/obj/item/stack/sheet/rglass{ - amount = 20 - }, -/obj/item/stack/sheet/rglass{ - amount = 20 - }, -/turf/open/floor/iron/dark/airless, -/area/shuttle/caravan/freighter1) "ct" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -96,7 +76,7 @@ initial_gas_mix = "TEMP=2.7" }, /area/shuttle/caravan/freighter1) -"dd" = ( +"du" = ( /obj/effect/turf_decal/box/white/corners{ dir = 1 }, @@ -110,29 +90,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/airless, /area/shuttle/caravan/freighter1) -"du" = ( -/obj/machinery/light/small, -/obj/structure/bed, -/obj/item/bedsheet, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/button/door{ - id = "caravantrade1_cabin1"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_x = -25; - pixel_y = 6; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron/dark/airless, -/area/shuttle/caravan/freighter1) "dL" = ( /obj/machinery/light/small, /obj/effect/decal/cleanable/dirt, @@ -167,6 +124,12 @@ initial_gas_mix = "TEMP=2.7" }, /area/shuttle/caravan/freighter1) +"eK" = ( +/obj/effect/turf_decal/box/white/corners{ + dir = 8 + }, +/turf/open/floor/iron/dark/airless, +/area/shuttle/caravan/freighter1) "eP" = ( /obj/machinery/door/poddoor{ id = "caravantrade1_cargo"; @@ -184,16 +147,6 @@ "fD" = ( /turf/template_noop, /area/shuttle/caravan/freighter1) -"ge" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating/airless{ - broken = 1 - }, -/area/shuttle/caravan/freighter1) "gw" = ( /obj/structure/chair/fancy/shuttle{ dir = 4 @@ -206,6 +159,19 @@ initial_gas_mix = "TEMP=2.7" }, /area/shuttle/caravan/freighter1) +"gU" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/airalarm/all_access{ + pixel_y = 24; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/iron/airless, +/area/shuttle/caravan/freighter1) "if" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -213,6 +179,13 @@ /mob/living/simple_animal/hostile/syndicate/ranged/smg/space, /turf/open/floor/iron/airless, /area/shuttle/caravan/freighter1) +"iq" = ( +/obj/effect/turf_decal/box/white/corners{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/airless, +/area/shuttle/caravan/freighter1) "it" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/effect/mapping_helpers/airlock/locked, @@ -253,15 +226,11 @@ initial_gas_mix = "TEMP=2.7" }, /area/shuttle/caravan/freighter1) -"kN" = ( -/obj/effect/turf_decal/box/white/corners{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/item/stack/sheet/mineral/gold{ - amount = 25 +"kM" = ( +/obj/structure/closet/crate{ + opened = 1 }, +/obj/item/stack/sheet/iron/fifty, /turf/open/floor/iron/dark/airless, /area/shuttle/caravan/freighter1) "lt" = ( @@ -313,17 +282,17 @@ }, /turf/open/floor/plating/airless, /area/shuttle/caravan/freighter1) -"mF" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 24; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 +"mt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 }, -/turf/open/floor/iron/airless, +/turf/open/floor/iron/dark/airless, /area/shuttle/caravan/freighter1) -"nX" = ( +"mI" = ( +/obj/effect/turf_decal/box/white/corners, +/obj/structure/closet/crate, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/airless, /area/shuttle/caravan/freighter1) @@ -342,6 +311,30 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron/dark/airless, /area/shuttle/caravan/freighter1) +"ps" = ( +/obj/machinery/airalarm/all_access{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating/airless{ + broken = 1 + }, +/area/shuttle/caravan/freighter1) +"qA" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/plate{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron/dark/airless, +/area/shuttle/caravan/freighter1) "qC" = ( /obj/effect/turf_decal/bot_white, /obj/structure/closet/emcloset, @@ -365,6 +358,16 @@ }, /turf/open/floor/plating, /area/shuttle/caravan/freighter1) +"so" = ( +/obj/machinery/airalarm/all_access{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/iron/dark/airless, +/area/shuttle/caravan/freighter1) "sp" = ( /obj/machinery/door/airlock{ id_tag = "caravantrade1_cabin2"; @@ -388,33 +391,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron/dark/airless, /area/shuttle/caravan/freighter1) -"sE" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 24; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/iron/airless, -/area/shuttle/caravan/freighter1) -"tM" = ( -/obj/structure/table, -/obj/item/storage/box/donkpockets{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/trash/plate{ - pixel_x = -5; - pixel_y = -3 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron/dark/airless, -/area/shuttle/caravan/freighter1) "tQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/frame/computer{ @@ -434,12 +410,6 @@ }, /turf/open/floor/plating/airless, /area/shuttle/caravan/freighter1) -"vB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/iron/dark/airless, -/area/shuttle/caravan/freighter1) "vS" = ( /obj/structure/closet/secure_closet/freezer{ locked = 0; @@ -476,12 +446,6 @@ initial_gas_mix = "TEMP=2.7" }, /area/shuttle/caravan/freighter1) -"wA" = ( -/obj/effect/turf_decal/box/white/corners{ - dir = 4 - }, -/turf/open/floor/iron/dark/airless, -/area/shuttle/caravan/freighter1) "xz" = ( /obj/effect/turf_decal/box/white/corners{ dir = 4 @@ -490,6 +454,10 @@ icon_state = "damaged5" }, /area/shuttle/caravan/freighter1) +"yf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/airless, +/area/shuttle/caravan/freighter1) "yC" = ( /obj/machinery/button/door{ id = "caravantrade1_bolt"; @@ -519,9 +487,6 @@ icon_state = "floorscorched2" }, /area/shuttle/caravan/freighter1) -"AA" = ( -/turf/open/floor/iron/dark/airless, -/area/shuttle/caravan/freighter1) "Bu" = ( /obj/item/stack/sheet/mineral/titanium, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -551,16 +516,6 @@ }, /turf/open/floor/plating/airless, /area/shuttle/caravan/freighter1) -"Cz" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/iron/dark/airless, -/area/shuttle/caravan/freighter1) "CU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -577,6 +532,20 @@ /obj/item/stack/sheet/mineral/titanium, /turf/template_noop, /area/shuttle/caravan/freighter1) +"Eu" = ( +/obj/machinery/light/small, +/obj/effect/turf_decal/box/white/corners, +/obj/machinery/button/door{ + id = "caravantrade1_cargo"; + name = "Cargo Blast Door Control"; + pixel_y = -24 + }, +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/diamond{ + amount = 5 + }, +/turf/open/floor/iron/dark/airless, +/area/shuttle/caravan/freighter1) "ED" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -614,7 +583,20 @@ }, /turf/template_noop, /area/shuttle/caravan/freighter1) -"GH" = ( +"FS" = ( +/obj/effect/turf_decal/box/white/corners{ + dir = 1 + }, +/obj/structure/closet/crate, +/obj/item/stack/sheet/rglass{ + amount = 20 + }, +/obj/item/stack/sheet/rglass{ + amount = 20 + }, +/turf/open/floor/iron/dark/airless, +/area/shuttle/caravan/freighter1) +"Gb" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/mineral/silver{ amount = 25 @@ -624,37 +606,32 @@ }, /turf/open/floor/iron/dark/airless, /area/shuttle/caravan/freighter1) -"GJ" = ( -/obj/machinery/firealarm{ - pixel_y = 24 +"Go" = ( +/obj/machinery/light{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/crowbar, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/airalarm/all_access{ + pixel_y = 24; dir = 1 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/airless, /area/shuttle/caravan/freighter1) -"Hp" = ( -/obj/machinery/light/small, -/obj/structure/bed, -/obj/item/bedsheet, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/button/door{ - id = "caravantrade1_cabin2"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_x = -25; - pixel_y = 6; - specialfunctions = 4 +"GJ" = ( +/obj/machinery/firealarm{ + pixel_y = 24 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron/dark/airless, +/turf/open/floor/iron/airless, /area/shuttle/caravan/freighter1) "Hv" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -662,6 +639,16 @@ }, /turf/open/floor/iron/airless, /area/shuttle/caravan/freighter1) +"HL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/command{ + name = "Bridge" + }, +/turf/open/floor/iron/dark/airless, +/area/shuttle/caravan/freighter1) "Id" = ( /obj/effect/turf_decal/bot_white, /obj/effect/decal/cleanable/dirt, @@ -814,6 +801,45 @@ initial_gas_mix = "TEMP=2.7" }, /area/shuttle/caravan/freighter1) +"Ms" = ( +/obj/machinery/airalarm/all_access{ + pixel_y = 24; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/iron/airless, +/area/shuttle/caravan/freighter1) +"NE" = ( +/obj/effect/turf_decal/box/white/corners{ + dir = 4 + }, +/turf/open/floor/iron/dark/airless, +/area/shuttle/caravan/freighter1) +"NJ" = ( +/obj/machinery/light/small, +/obj/structure/bed, +/obj/item/bedsheet, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/all_access{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/button/door{ + id = "caravantrade1_cabin2"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + pixel_x = -25; + pixel_y = 6; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron/dark/airless, +/area/shuttle/caravan/freighter1) "Ov" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/airless{ @@ -831,6 +857,17 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron/dark/airless, /area/shuttle/caravan/freighter1) +"OR" = ( +/obj/effect/turf_decal/box/white/corners{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/gold{ + amount = 25 + }, +/turf/open/floor/iron/dark/airless, +/area/shuttle/caravan/freighter1) "Qk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 @@ -876,20 +913,6 @@ /obj/structure/lattice, /turf/template_noop, /area/shuttle/caravan/freighter1) -"Tl" = ( -/obj/machinery/light/small, -/obj/effect/turf_decal/box/white/corners, -/obj/machinery/button/door{ - id = "caravantrade1_cargo"; - name = "Cargo Blast Door Control"; - pixel_y = -24 - }, -/obj/structure/closet/crate, -/obj/item/stack/sheet/mineral/diamond{ - amount = 5 - }, -/turf/open/floor/iron/dark/airless, -/area/shuttle/caravan/freighter1) "Tq" = ( /obj/effect/decal/cleanable/blood, /mob/living/simple_animal/hostile/syndicate/melee/sword/space/stormtrooper, @@ -900,19 +923,15 @@ initial_gas_mix = "TEMP=2.7" }, /area/shuttle/caravan/freighter1) +"TF" = ( +/turf/open/floor/iron/dark/airless, +/area/shuttle/caravan/freighter1) "Ua" = ( /obj/structure/girder, /turf/open/floor/plating/airless{ broken = 1 }, /area/shuttle/caravan/freighter1) -"Ud" = ( -/obj/structure/closet/crate{ - opened = 1 - }, -/obj/item/stack/sheet/iron/fifty, -/turf/open/floor/iron/dark/airless, -/area/shuttle/caravan/freighter1) "Ur" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/computer/shuttle_flight/caravan/trade1{ @@ -929,12 +948,27 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/airless, /area/shuttle/caravan/freighter1) -"Vs" = ( -/obj/effect/turf_decal/box/white/corners, -/obj/structure/closet/crate, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, +"Vi" = ( +/obj/machinery/light/small, +/obj/structure/bed, +/obj/item/bedsheet, /obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/all_access{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/button/door{ + id = "caravantrade1_cabin1"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + pixel_x = -25; + pixel_y = 6; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron/dark/airless, /area/shuttle/caravan/freighter1) "VN" = ( @@ -1002,40 +1036,6 @@ }, /turf/open/floor/plating/airless, /area/shuttle/caravan/freighter1) -"Xo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/command{ - name = "Bridge" - }, -/turf/open/floor/iron/dark/airless, -/area/shuttle/caravan/freighter1) -"Yf" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/crowbar, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 24; - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/airless, -/area/shuttle/caravan/freighter1) -"YY" = ( -/obj/effect/turf_decal/box/white/corners{ - dir = 8 - }, -/turf/open/floor/iron/dark/airless, -/area/shuttle/caravan/freighter1) "Zw" = ( /mob/living/simple_animal/hostile/syndicate/ranged/smg/space, /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, @@ -1086,12 +1086,12 @@ El oj ec Qs -ge +ps fk El -dd -GH -aQ +du +Gb +iq El "} (5,1,1) = {" @@ -1102,16 +1102,16 @@ El El BN El -kN -AA -Tl +OR +TF +Eu El "} (6,1,1) = {" El GJ sp -Hp +NJ El Qk ct @@ -1128,22 +1128,22 @@ El El ss CU -cr -nX -YY +FS +yf +eK BB "} (8,1,1) = {" El -mF +Ms iL -du +Vi Fv -Yf +Go VT -wA -nX -Vs +NE +yf +mI Xh "} (9,1,1) = {" @@ -1168,7 +1168,7 @@ El ap VN lx -Ud +kM WX Xh "} @@ -1214,7 +1214,7 @@ fD (14,1,1) = {" El oN -tM +qA El aP El @@ -1229,7 +1229,7 @@ El El El El -sE +gU LK El Jv @@ -1255,7 +1255,7 @@ Fv El El El -Xo +HL El El Jv @@ -1267,8 +1267,8 @@ Jv Jv El Mi -Cz -vB +so +mt JD El Jv diff --git a/_maps/shuttles/whiteship/whiteship_box.dmm b/_maps/shuttles/whiteship/whiteship_box.dmm index 19c9f7293d8fb..37f06f6ff915a 100644 --- a/_maps/shuttles/whiteship/whiteship_box.dmm +++ b/_maps/shuttles/whiteship/whiteship_box.dmm @@ -80,36 +80,6 @@ "at" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/shuttle/abandoned/engine) -"au" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/table, -/obj/item/storage/box/gloves{ - pixel_x = 5; - pixel_y = 8 - }, -/obj/item/storage/box/masks{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 24; - dir = 1 - }, -/obj/item/storage/backpack/duffelbag/med/surgery{ - pixel_y = 4 - }, -/obj/item/clothing/suit/apron/surgical, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/iron/white/side{ - dir = 9 - }, -/area/shuttle/abandoned/medbay) "av" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -416,23 +386,6 @@ }, /turf/open/floor/plating, /area/shuttle/abandoned/engine) -"bp" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - pixel_y = 24; - dir = 1 - }, -/obj/machinery/light/small/built{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/shuttle/abandoned/engine) "bq" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/components/unary/tank/air{ @@ -463,27 +416,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/shuttle/abandoned/medbay) -"bt" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 7; - pixel_y = 1 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 24; - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/shuttle/abandoned/medbay) "bu" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -520,22 +452,6 @@ dir = 1 }, /area/shuttle/abandoned/medbay) -"bA" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small/built{ - dir = 4 - }, -/obj/structure/closet/secure_closet/medical2{ - anchored = 1 - }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/iron/white/side{ - dir = 5 - }, -/area/shuttle/abandoned/medbay) "bB" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/sleeper, @@ -1117,32 +1033,6 @@ dir = 1 }, /area/shuttle/abandoned/medbay) -"cG" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/table, -/obj/item/folder/white{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/paper{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/item/pen{ - pixel_x = 4 - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 24; - dir = 1 - }, -/obj/item/flashlight/pen{ - pixel_x = -6; - pixel_y = -2 - }, -/turf/open/floor/iron/white/side{ - dir = 1 - }, -/area/shuttle/abandoned/medbay) "cH" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -1197,17 +1087,6 @@ }, /turf/open/floor/iron/white, /area/shuttle/abandoned/medbay) -"cL" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/vending/medical{ - req_access = null - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 24; - dir = 1 - }, -/turf/open/floor/iron/white, -/area/shuttle/abandoned/medbay) "cM" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/rack, @@ -1631,6 +1510,17 @@ }, /turf/open/floor/iron, /area/shuttle/abandoned/crew) +"eh" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/vending/medical{ + req_access = null + }, +/obj/machinery/airalarm/all_access{ + pixel_y = 24; + dir = 1 + }, +/turf/open/floor/iron/white, +/area/shuttle/abandoned/medbay) "el" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -1688,6 +1578,23 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron, /area/shuttle/abandoned/crew) +"fQ" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/airalarm/all_access{ + pixel_y = 24; + dir = 1 + }, +/obj/machinery/light/small/built{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/shuttle/abandoned/engine) "hK" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -1703,6 +1610,22 @@ }, /turf/closed/wall/mineral/titanium/nodiagonal, /area/shuttle/abandoned/engine) +"iw" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/built{ + dir = 4 + }, +/obj/structure/closet/secure_closet/medical2{ + anchored = 1 + }, +/obj/machinery/airalarm/all_access{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/iron/white/side{ + dir = 5 + }, +/area/shuttle/abandoned/medbay) "iK" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/closet/secure_closet/personal, @@ -1720,6 +1643,32 @@ }, /turf/open/floor/iron, /area/shuttle/abandoned/crew) +"jr" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/table, +/obj/item/folder/white{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/paper{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/pen{ + pixel_x = 4 + }, +/obj/machinery/airalarm/all_access{ + pixel_y = 24; + dir = 1 + }, +/obj/item/flashlight/pen{ + pixel_x = -6; + pixel_y = -2 + }, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/shuttle/abandoned/medbay) "oY" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/stripes/line{ @@ -1766,6 +1715,27 @@ }, /turf/open/floor/iron, /area/shuttle/abandoned/crew) +"sz" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/airalarm/all_access{ + pixel_y = 24; + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/shuttle/abandoned/medbay) "tY" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -1788,6 +1758,22 @@ }, /turf/open/floor/iron, /area/shuttle/abandoned/bridge) +"uv" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/built{ + dir = 1 + }, +/obj/structure/bed, +/obj/machinery/airalarm/all_access{ + pixel_y = 24; + dir = 1 + }, +/obj/item/bedsheet, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron/dark, +/area/shuttle/abandoned/crew) "uP" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -1821,11 +1807,11 @@ }, /turf/open/floor/iron, /area/shuttle/abandoned/bridge) -"wE" = ( +"vX" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/table, -/obj/item/trash/plate{ +/obj/item/plate{ pixel_x = 6 }, /obj/item/kitchen/fork{ @@ -1866,26 +1852,6 @@ }, /turf/open/floor/iron/white/side, /area/shuttle/abandoned/medbay) -"BR" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 24; - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/shuttle/abandoned/crew) "ED" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -1911,22 +1877,6 @@ }, /turf/closed/wall/mineral/titanium, /area/shuttle/abandoned/engine) -"Kw" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small/built{ - dir = 1 - }, -/obj/structure/bed, -/obj/machinery/airalarm/all_access{ - pixel_y = 24; - dir = 1 - }, -/obj/item/bedsheet, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron/dark, -/area/shuttle/abandoned/crew) "Oi" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -1970,6 +1920,36 @@ }, /turf/closed/wall/mineral/titanium/nodiagonal, /area/shuttle/abandoned/engine) +"TW" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/table, +/obj/item/storage/box/gloves{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/storage/box/masks{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/machinery/airalarm/all_access{ + pixel_y = 24; + dir = 1 + }, +/obj/item/storage/backpack/duffelbag/med/surgery{ + pixel_y = 4 + }, +/obj/item/clothing/suit/apron/surgical, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/iron/white/side{ + dir = 9 + }, +/area/shuttle/abandoned/medbay) "Vy" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -2052,6 +2032,26 @@ /obj/effect/turf_decal/tile/neutral/anticorner/contrasted, /turf/open/floor/iron, /area/shuttle/abandoned/crew) +"Zy" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/airalarm/all_access{ + pixel_y = 24; + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/shuttle/abandoned/crew) (1,1,1) = {" aa @@ -2273,7 +2273,7 @@ aV at aa at -bp +fQ ct at ar @@ -2342,11 +2342,11 @@ aa aa ag al -au +TW aI aZ al -bA +iw bO ce al @@ -2388,7 +2388,7 @@ bB bQ cf al -cG +jr cQ db dl @@ -2397,7 +2397,7 @@ ag "} (19,1,1) = {" ac -Kw +uv Vy xG iK @@ -2418,10 +2418,10 @@ al ac ac ac -BR +Zy dw al -bt +sz bD bS ch @@ -2435,7 +2435,7 @@ al "} (21,1,1) = {" ac -Kw +uv WR ra Yb @@ -2496,7 +2496,7 @@ ac ac aC aO -wE +vX ac bG bW @@ -2540,7 +2540,7 @@ be bY be be -cL +eh cW dj al diff --git a/_maps/shuttles/whiteship/whiteship_delta.dmm b/_maps/shuttles/whiteship/whiteship_delta.dmm index e3934bd4cec80..0f936fec3d7c2 100644 --- a/_maps/shuttles/whiteship/whiteship_delta.dmm +++ b/_maps/shuttles/whiteship/whiteship_delta.dmm @@ -379,24 +379,6 @@ /obj/machinery/suit_storage_unit/standard_unit, /turf/open/floor/iron/dark, /area/shuttle/abandoned/crew) -"bt" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/clothing/head/utility/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/shuttle/abandoned/crew) "bx" = ( /obj/machinery/light/small/built{ dir = 4 @@ -425,26 +407,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/shuttle/abandoned/engine) -"bA" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 4 - }, -/obj/item/flashlight{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/head/utility/welding{ - pixel_x = -2; - pixel_y = 1 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plating, -/area/shuttle/abandoned/engine) "bB" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/shuttle/abandoned/bridge) @@ -1406,29 +1368,6 @@ }, /turf/open/floor/plating, /area/shuttle/abandoned/medbay) -"eD" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/airalarm/all_access{ - pixel_y = 24; - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/spider/stickyweb, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/shuttle/abandoned/crew) "gj" = ( /obj/machinery/computer/shuttle_flight/white_ship{ dir = 8 @@ -1469,20 +1408,6 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/shuttle/abandoned/bar) -"iJ" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/closet/wardrobe/mixed, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/item/storage/wallet/random, -/obj/item/clothing/under/rank/centcom/official, -/obj/item/clothing/under/rank/centcom/commander, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/shuttle/abandoned/crew) "iK" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -1519,23 +1444,23 @@ }, /turf/open/floor/iron, /area/shuttle/abandoned/crew) -"jw" = ( -/obj/effect/decal/cleanable/dirt/dust, +"jI" = ( +/obj/effect/turf_decal/bot_white, /obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable/yellow{ - icon_state = "1-2" +/obj/structure/rack, +/obj/item/storage/belt/utility, +/obj/item/radio/off{ + pixel_x = -3; + pixel_y = 3 }, +/obj/item/radio/off, /obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/light/small/built{ - dir = 4 + pixel_y = 24; + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/iron, -/area/shuttle/abandoned/crew) +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/iron/dark, +/area/shuttle/abandoned/medbay) "kd" = ( /obj/structure/table, /obj/item/paper_bin{ @@ -1652,6 +1577,29 @@ }, /turf/open/floor/iron/dark, /area/shuttle/abandoned/bridge) +"mZ" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/airalarm/all_access{ + pixel_y = 24; + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/spider/stickyweb, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron, +/area/shuttle/abandoned/crew) "ny" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/chair/stool/bar, @@ -1672,23 +1620,38 @@ }, /turf/open/floor/iron, /area/shuttle/abandoned/crew) -"nZ" = ( +"ob" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/structure/table, -/obj/item/trash/plate{ - pixel_x = 12 +/obj/effect/decal/remains/human{ + desc = "They look like human remains, and have clearly been gnawed at." }, -/obj/item/kitchen/fork{ - pixel_x = 12; - pixel_y = 3 +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/item/clothing/head/hats/centcom_cap{ + desc = "There's a gouge through the top where something has clawed clean through it. Whoever was wearing it probably doesn't need a hat any more."; + name = "\improper damaged CentCom hat"; + pixel_x = 2; + pixel_y = 2 }, -/obj/item/storage/box/donkpockets{ - pixel_x = -8; - pixel_y = 4 +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/effect/turf_decal/tile/bar/opposingcorners, -/turf/open/floor/iron, -/area/shuttle/abandoned/bar) +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/iron/dark, +/area/shuttle/abandoned/bridge) +"ou" = ( +/obj/machinery/light/small/built{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/bed, +/obj/item/bedsheet/centcom, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/airalarm/all_access{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/wood, +/area/shuttle/abandoned/crew) "oT" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/chair/stool/bar, @@ -1717,49 +1680,6 @@ /obj/effect/turf_decal/tile/blue/half/contrasted, /turf/open/floor/iron/dark, /area/shuttle/abandoned/bridge) -"uw" = ( -/obj/item/storage/toolbox/emergency, -/obj/item/storage/toolbox/emergency, -/obj/item/flashlight/flare{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/flashlight/flare{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/crowbar, -/obj/item/wrench, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/extinguisher, -/obj/item/extinguisher, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - pixel_y = 24; - dir = 1 - }, -/obj/effect/turf_decal/box/white/corners{ - dir = 4 - }, -/obj/structure/closet/crate/internals, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron/dark, -/area/shuttle/abandoned/cargo) -"uS" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/box/white/corners{ - dir = 1 - }, -/obj/structure/closet/crate, -/obj/item/grenade/chem_grenade/metalfoam, -/obj/item/t_scanner, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, -/turf/open/floor/iron/dark, -/area/shuttle/abandoned/cargo) "vm" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/shuttle/abandoned/medbay) @@ -1840,18 +1760,6 @@ /obj/effect/turf_decal/tile/blue, /turf/open/floor/iron, /area/shuttle/abandoned/crew) -"yX" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small/built{ - dir = 4 - }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/spider/stickyweb, -/turf/open/floor/iron/white/side, -/area/shuttle/abandoned/medbay) "zg" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -1927,6 +1835,26 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/shuttle/abandoned/bar) +"BO" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 4 + }, +/obj/item/flashlight{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/head/utility/welding{ + pixel_x = -2; + pixel_y = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plating, +/area/shuttle/abandoned/engine) "BT" = ( /obj/machinery/light/small/built, /obj/effect/decal/cleanable/dirt/dust, @@ -1964,6 +1892,18 @@ }, /turf/open/floor/iron, /area/shuttle/abandoned/crew) +"DA" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/built{ + dir = 4 + }, +/obj/machinery/airalarm/all_access{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/spider/stickyweb, +/turf/open/floor/iron/white/side, +/area/shuttle/abandoned/medbay) "DG" = ( /obj/machinery/light/small/built{ dir = 8 @@ -1982,6 +1922,34 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/shuttle/abandoned/bar) +"DQ" = ( +/obj/item/storage/toolbox/emergency, +/obj/item/storage/toolbox/emergency, +/obj/item/flashlight/flare{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/flashlight/flare{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/crowbar, +/obj/item/wrench, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/extinguisher, +/obj/item/extinguisher, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/airalarm/all_access{ + pixel_y = 24; + dir = 1 + }, +/obj/effect/turf_decal/box/white/corners{ + dir = 4 + }, +/obj/structure/closet/crate/internals, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron/dark, +/area/shuttle/abandoned/cargo) "DZ" = ( /obj/effect/turf_decal/delivery/white, /obj/effect/decal/cleanable/dirt/dust, @@ -1996,6 +1964,53 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron/dark, /area/shuttle/abandoned/cargo) +"FY" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/box/white/corners{ + dir = 1 + }, +/obj/structure/closet/crate, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/item/t_scanner, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, +/turf/open/floor/iron/dark, +/area/shuttle/abandoned/cargo) +"Gm" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/bed, +/obj/item/bedsheet/centcom, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/airalarm/all_access{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/wood, +/area/shuttle/abandoned/crew) +"GA" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/head/utility/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/machinery/airalarm/all_access{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/shuttle/abandoned/crew) "GD" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -2027,23 +2042,20 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/shuttle/abandoned/bar) -"Ix" = ( -/obj/effect/turf_decal/bot_white, +"Ig" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/structure/rack, -/obj/item/storage/belt/utility, -/obj/item/radio/off{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/radio/off, -/obj/machinery/airalarm/all_access{ - pixel_y = 24; +/obj/structure/closet/wardrobe/mixed, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/iron/dark, -/area/shuttle/abandoned/medbay) +/obj/item/storage/wallet/random, +/obj/item/clothing/under/rank/centcom/official, +/obj/item/clothing/under/rank/centcom/commander, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/shuttle/abandoned/crew) "IY" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/box/white/corners{ @@ -2128,20 +2140,6 @@ }, /turf/open/floor/iron, /area/shuttle/abandoned/medbay) -"Rv" = ( -/obj/machinery/light/small/built{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/bed, -/obj/item/bedsheet/centcom, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/wood, -/area/shuttle/abandoned/crew) "SY" = ( /obj/effect/spawner/structure/window/shuttle, /obj/machinery/door/poddoor{ @@ -2166,20 +2164,6 @@ /obj/effect/turf_decal/tile/blue/half/contrasted, /turf/open/floor/iron/dark, /area/shuttle/abandoned/bridge) -"TK" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/bed, -/obj/item/bedsheet/centcom, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/wood, -/area/shuttle/abandoned/crew) "TO" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable/yellow{ @@ -2224,24 +2208,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron/dark, /area/shuttle/abandoned/cargo) -"WG" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/remains/human{ - desc = "They look like human remains, and have clearly been gnawed at." - }, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/item/clothing/head/hats/centcom_cap{ - desc = "There's a gouge through the top where something has clawed clean through it. Whoever was wearing it probably doesn't need a hat any more."; - name = "\improper damaged CentCom hat"; - pixel_x = 2; - pixel_y = 2 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/iron/dark, -/area/shuttle/abandoned/bridge) "WI" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/spider/stickyweb, @@ -2300,6 +2266,40 @@ /obj/effect/turf_decal/tile/neutral/fourcorners/contrasted, /turf/open/floor/iron/dark, /area/shuttle/abandoned/cargo) +"YP" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/table, +/obj/item/plate{ + pixel_x = 12 + }, +/obj/item/kitchen/fork{ + pixel_x = 12; + pixel_y = 3 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/iron, +/area/shuttle/abandoned/bar) +"ZQ" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/airalarm/all_access{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light/small/built{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/iron, +/area/shuttle/abandoned/crew) (1,1,1) = {" aa @@ -2383,7 +2383,7 @@ ai aB dd bl -bA +BO bB bB bB @@ -2425,7 +2425,7 @@ bC bR bX cf -WG +ob ct bC hY @@ -2439,7 +2439,7 @@ ac aj aC nA -iJ +Ig bD Ts bY @@ -2449,7 +2449,7 @@ qA bD Qd dg -yX +DA dN vm "} @@ -2476,7 +2476,7 @@ vm ac ac ac -eD +mZ ac bE bT @@ -2493,7 +2493,7 @@ vm "} (11,1,1) = {" bI -Rv +ou aE Kx bp @@ -2517,7 +2517,7 @@ ac Cw bq xP -jw +ZQ lp cj TO @@ -2531,7 +2531,7 @@ vm "} (13,1,1) = {" bI -TK +Gm aF BT ac @@ -2610,7 +2610,7 @@ ac ac ac aZ -bt +GA ac aa aa @@ -2618,7 +2618,7 @@ aa aa aa vm -Ix +jI dp vm vm @@ -2668,13 +2668,13 @@ XO ny zg xn -nZ +YP af aa aa aa cz -uS +FY IY ds EA @@ -2712,7 +2712,7 @@ aa aa aa cy -uw +DQ YG dC UM diff --git a/_maps/shuttles/whiteship/whiteship_meta.dmm b/_maps/shuttles/whiteship/whiteship_meta.dmm index fb3f02d582df0..b1f197c7226cc 100644 --- a/_maps/shuttles/whiteship/whiteship_meta.dmm +++ b/_maps/shuttles/whiteship/whiteship_meta.dmm @@ -1458,22 +1458,22 @@ "fb" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/table, -/obj/item/trash/plate{ +/obj/item/plate{ pixel_x = -6; pixel_y = -2 }, -/obj/item/trash/plate{ +/obj/item/plate{ pixel_x = -6 }, -/obj/item/trash/plate{ +/obj/item/plate{ pixel_x = -6; pixel_y = 2 }, -/obj/item/trash/plate{ +/obj/item/plate{ pixel_x = -6; pixel_y = 4 }, -/obj/item/trash/plate{ +/obj/item/plate{ pixel_x = -6; pixel_y = 6 }, diff --git a/_maps/templates/holodeck_kitchen.dmm b/_maps/templates/holodeck_kitchen.dmm index 080ef30f9d86b..8a37b15c0d56a 100644 --- a/_maps/templates/holodeck_kitchen.dmm +++ b/_maps/templates/holodeck_kitchen.dmm @@ -8,11 +8,6 @@ "b" = ( /turf/open/floor/holofloor/white, /area/template_noop) -"c" = ( -/obj/structure/table/reinforced, -/obj/item/trash/plate, -/turf/open/floor/holofloor/white, -/area/template_noop) "d" = ( /obj/machinery/door/window{ dir = 1 @@ -64,14 +59,6 @@ icon_state = "wood" }, /area/template_noop) -"k" = ( -/obj/structure/table/wood, -/obj/item/trash/plate, -/turf/open/floor/holofloor{ - dir = 9; - icon_state = "wood" - }, -/area/template_noop) "l" = ( /obj/machinery/chem_master/condimaster, /turf/open/floor/holofloor/white, @@ -93,7 +80,20 @@ icon_state = "wood" }, /area/template_noop) -"p" = ( +"B" = ( +/obj/structure/table/wood, +/obj/item/plate, +/turf/open/floor/holofloor{ + dir = 9; + icon_state = "wood" + }, +/area/template_noop) +"K" = ( +/obj/structure/table/reinforced, +/obj/item/plate, +/turf/open/floor/holofloor/white, +/area/template_noop) +"M" = ( /obj/structure/window, /obj/structure/rack, /obj/item/clothing/head/utility/chefhat, @@ -129,16 +129,16 @@ a h "} (3,1,1) = {" -k +B a f -c -c -c -c +K +K +K +K g a -k +B "} (4,1,1) = {" j @@ -172,21 +172,21 @@ b b b b -p +M a h "} (7,1,1) = {" -k +B a f -c -c -c -c +K +K +K +K g a -k +B "} (8,1,1) = {" j diff --git a/beestation.dme b/beestation.dme index a65cde70d91f8..d4abc6470f3b1 100644 --- a/beestation.dme +++ b/beestation.dme @@ -13,6 +13,7 @@ // END_PREFERENCES // BEGIN_INCLUDE +#include "__odlint.dm" #include "_maps\_basemap.dm" #include "code\__byond_version_compat.dm" #include "code\_compile_options.dm" @@ -39,6 +40,7 @@ #include "code\__DEFINES\areas.dm" #include "code\__DEFINES\armor.dm" #include "code\__DEFINES\art.dm" +#include "code\__DEFINES\assemblies.dm" #include "code\__DEFINES\assets.dm" #include "code\__DEFINES\async.dm" #include "code\__DEFINES\atmospherics.dm" @@ -65,6 +67,7 @@ #include "code\__DEFINES\construction.dm" #include "code\__DEFINES\contracts.dm" #include "code\__DEFINES\cooldowns.dm" +#include "code\__DEFINES\crafting.dm" #include "code\__DEFINES\cult.dm" #include "code\__DEFINES\database.dm" #include "code\__DEFINES\departments.dm" @@ -719,10 +722,35 @@ #include "code\datums\components\waddling.dm" #include "code\datums\components\wearertargeting.dm" #include "code\datums\components\wet_floor.dm" +#include "code\datums\components\crafting\_recipes.dm" #include "code\datums\components\crafting\crafting.dm" #include "code\datums\components\crafting\guncrafting.dm" -#include "code\datums\components\crafting\recipes.dm" -#include "code\datums\components\crafting\tailoring.dm" +#include "code\datums\components\crafting\crafting_lists\drinks.dm" +#include "code\datums\components\crafting\crafting_lists\misc.dm" +#include "code\datums\components\crafting\crafting_lists\primal.dm" +#include "code\datums\components\crafting\crafting_lists\robots.dm" +#include "code\datums\components\crafting\crafting_lists\structures.dm" +#include "code\datums\components\crafting\crafting_lists\foodstuffs\_recipes.dm" +#include "code\datums\components\crafting\crafting_lists\foodstuffs\recipes_bread.dm" +#include "code\datums\components\crafting\crafting_lists\foodstuffs\recipes_burger.dm" +#include "code\datums\components\crafting\crafting_lists\foodstuffs\recipes_cake.dm" +#include "code\datums\components\crafting\crafting_lists\foodstuffs\recipes_egg.dm" +#include "code\datums\components\crafting\crafting_lists\foodstuffs\recipes_frozen.dm" +#include "code\datums\components\crafting\crafting_lists\foodstuffs\recipes_meat.dm" +#include "code\datums\components\crafting\crafting_lists\foodstuffs\recipes_mexican.dm" +#include "code\datums\components\crafting\crafting_lists\foodstuffs\recipes_misc.dm" +#include "code\datums\components\crafting\crafting_lists\foodstuffs\recipes_pastry.dm" +#include "code\datums\components\crafting\crafting_lists\foodstuffs\recipes_pie.dm" +#include "code\datums\components\crafting\crafting_lists\foodstuffs\recipes_pizza.dm" +#include "code\datums\components\crafting\crafting_lists\foodstuffs\recipes_salad.dm" +#include "code\datums\components\crafting\crafting_lists\foodstuffs\recipes_sandwich.dm" +#include "code\datums\components\crafting\crafting_lists\foodstuffs\recipes_seafood.dm" +#include "code\datums\components\crafting\crafting_lists\foodstuffs\recipes_soup.dm" +#include "code\datums\components\crafting\crafting_lists\foodstuffs\recipes_spaghetti.dm" +#include "code\datums\components\crafting\crafting_lists\tailoring\clothing.dm" +#include "code\datums\components\crafting\crafting_lists\tailoring\eyewear.dm" +#include "code\datums\components\crafting\crafting_lists\weaponry\ammunitions.dm" +#include "code\datums\components\crafting\crafting_lists\weaponry\weapons.dm" #include "code\datums\components\food\edible.dm" #include "code\datums\components\food\food_storage.dm" #include "code\datums\components\plumbing\_plumbing.dm" @@ -844,6 +872,7 @@ #include "code\datums\elements\ranged_attacks.dm" #include "code\datums\elements\rust.dm" #include "code\datums\elements\series.dm" +#include "code\datums\elements\shatters_when_thrown.dm" #include "code\datums\elements\squish.dm" #include "code\datums\elements\strippable.dm" #include "code\datums\elements\undertile.dm" @@ -2664,6 +2693,7 @@ #include "code\modules\flufftext\Hallucination.dm" #include "code\modules\food_and_drinks\food.dm" #include "code\modules\food_and_drinks\pizzabox.dm" +#include "code\modules\food_and_drinks\plate.dm" #include "code\modules\food_and_drinks\drinks\drinks.dm" #include "code\modules\food_and_drinks\drinks\drinks\bottle.dm" #include "code\modules\food_and_drinks\drinks\drinks\drinkingglass.dm" @@ -2681,23 +2711,6 @@ #include "code\modules\food_and_drinks\recipes\drinks_recipes.dm" #include "code\modules\food_and_drinks\recipes\food_mixtures.dm" #include "code\modules\food_and_drinks\recipes\processor_recipes.dm" -#include "code\modules\food_and_drinks\recipes\tablecraft\recipes_bread.dm" -#include "code\modules\food_and_drinks\recipes\tablecraft\recipes_burger.dm" -#include "code\modules\food_and_drinks\recipes\tablecraft\recipes_cake.dm" -#include "code\modules\food_and_drinks\recipes\tablecraft\recipes_drink.dm" -#include "code\modules\food_and_drinks\recipes\tablecraft\recipes_egg.dm" -#include "code\modules\food_and_drinks\recipes\tablecraft\recipes_frozen.dm" -#include "code\modules\food_and_drinks\recipes\tablecraft\recipes_meat.dm" -#include "code\modules\food_and_drinks\recipes\tablecraft\recipes_mexican.dm" -#include "code\modules\food_and_drinks\recipes\tablecraft\recipes_misc.dm" -#include "code\modules\food_and_drinks\recipes\tablecraft\recipes_pastry.dm" -#include "code\modules\food_and_drinks\recipes\tablecraft\recipes_pie.dm" -#include "code\modules\food_and_drinks\recipes\tablecraft\recipes_pizza.dm" -#include "code\modules\food_and_drinks\recipes\tablecraft\recipes_salad.dm" -#include "code\modules\food_and_drinks\recipes\tablecraft\recipes_sandwich.dm" -#include "code\modules\food_and_drinks\recipes\tablecraft\recipes_seafood.dm" -#include "code\modules\food_and_drinks\recipes\tablecraft\recipes_soup.dm" -#include "code\modules\food_and_drinks\recipes\tablecraft\recipes_spaghetti.dm" #include "code\modules\games\cas.dm" #include "code\modules\games\tarot.dm" #include "code\modules\games\unum.dm" diff --git a/code/__DEFINES/assemblies.dm b/code/__DEFINES/assemblies.dm new file mode 100644 index 0000000000000..45eeb611fae8e --- /dev/null +++ b/code/__DEFINES/assemblies.dm @@ -0,0 +1,8 @@ +/// When combined in a holder, blacklists duplicate assemblies +#define ASSEMBLY_NO_DUPLICATES (1<<0) + +/// How loud do assemblies beep at +#define ASSEMBLY_BEEP_VOLUME 5 + +/// The max amount of assemblies attachable on an assembly holder +#define HOLDER_MAX_ASSEMBLIES 2 diff --git a/code/__DEFINES/construction.dm b/code/__DEFINES/construction.dm index afca149e46d0d..a8f6a84cded44 100644 --- a/code/__DEFINES/construction.dm +++ b/code/__DEFINES/construction.dm @@ -77,53 +77,23 @@ /// maximum amount of cable in a coil #define MAXCOIL 30 -// tablecrafting defines -#define CAT_NONE "" -#define CAT_WEAPONRY "Weaponry" -#define CAT_WEAPON "Weapons" -#define CAT_AMMO "Ammunition" -#define CAT_ROBOT "Robots" -#define CAT_MISC "Misc" -#define CAT_PRIMAL "Tribal" -#define CAT_CLOTHING "Clothing" -#define CAT_EYEWEAR "Eyewear" -#define CAT_FOOD "Foods" -#define CAT_BREAD "Breads" -#define CAT_BURGER "Burgers" -#define CAT_CAKE "Cakes" -#define CAT_EGG "Egg-Based Food" -#define CAT_MEAT "Meats" -#define CAT_MISCFOOD "Misc. Food" -#define CAT_MEXICAN "Mexican Food" -#define CAT_PASTRY "Pastries" -#define CAT_PIE "Pies" -#define CAT_PIZZA "Pizzas" -#define CAT_SALAD "Salads" -#define CAT_SANDWICH "Sandwiches" -#define CAT_SEAFOOD "Seafood" -#define CAT_SOUP "Soups" -#define CAT_SPAGHETTI "Spaghettis" -#define CAT_ICE "Frozen" -#define CAT_DRINK "Drinks" -#define CAT_STRUCTURE "Structures" - - -//rcd modes -#define RCD_FLOORWALL 0 -#define RCD_AIRLOCK 1 -#define RCD_DECONSTRUCT 2 -#define RCD_WINDOWGRILLE 3 -#define RCD_MACHINE 4 -#define RCD_COMPUTER 5 -#define RCD_FURNISHING 6 -#define RCD_LADDER 7 - -#define RCD_UPGRADE_FRAMES 0 -#define RCD_UPGRADE_SIMPLE_CIRCUITS 1 -#define RCD_UPGRADE_SILO_LINK 2 -#define RCD_UPGRADE_FURNISHING 3 - -#define RPD_UPGRADE_UNWRENCH 0 +// rcd buildtype defines +// these aren't even used as bitflags so who even knows why they are treated like them +#define RCD_FLOORWALL (1<<0) +#define RCD_AIRLOCK (1<<1) +#define RCD_DECONSTRUCT (1<<2) +#define RCD_WINDOWGRILLE (1<<3) +#define RCD_MACHINE (1<<4) +#define RCD_COMPUTER (1<<5) +#define RCD_FURNISHING (1<<6) +#define RCD_LADDER (1<<7) + +#define RCD_UPGRADE_FRAMES (1<<0) +#define RCD_UPGRADE_SIMPLE_CIRCUITS (1<<1) +#define RCD_UPGRADE_SILO_LINK (1<<2) +#define RCD_UPGRADE_FURNISHING (1<<3) + +#define RPD_UPGRADE_UNWRENCH (1<<0) #define RCD_WINDOW_FULLTILE "full tile" #define RCD_WINDOW_DIRECTIONAL "directional" diff --git a/code/__DEFINES/cooldowns.dm b/code/__DEFINES/cooldowns.dm index 31a92638dc460..4a0502d319458 100644 --- a/code/__DEFINES/cooldowns.dm +++ b/code/__DEFINES/cooldowns.dm @@ -38,6 +38,9 @@ #define COOLDOWN_CIRCUIT_PATHFIND_DIF "circuit_pathfind_different" #define COOLDOWN_CIRCUIT_TARGET_INTERCEPT "circuit_target_intercept" +//Item cooldowns +#define COOLDOWN_SIGNALLER_SEND "cooldown_signaller_send" + //Mecha cooldowns #define COOLDOWN_MECHA_MESSAGE "mecha_message" #define COOLDOWN_MECHA_EQUIPMENT "mecha_equipment" diff --git a/code/__DEFINES/crafting.dm b/code/__DEFINES/crafting.dm new file mode 100644 index 0000000000000..cbcda324daf7b --- /dev/null +++ b/code/__DEFINES/crafting.dm @@ -0,0 +1,32 @@ +// tablecrafting defines +#define CAT_NONE "" +#define CAT_WEAPONRY "Weaponry" +#define CAT_WEAPON "Weapons" +#define CAT_AMMO "Ammunition" +#define CAT_ROBOT "Robots" +#define CAT_MISC "Misc" +#define CAT_PRIMAL "Primal" +#define CAT_TAILORING "tailoring" +#define CAT_CLOTHING "Clothing" +#define CAT_EYEWEAR "Eyewear" +#define CAT_STRUCTURE "Structures" + +// foodstuffs & drinks +#define CAT_FOOD "Foods" +#define CAT_BREAD "Breads" +#define CAT_BURGER "Burgers" +#define CAT_CAKE "Cakes" +#define CAT_EGG "Egg-Based Food" +#define CAT_MEAT "Meats" +#define CAT_MISCFOOD "Misc. Food" +#define CAT_MEXICAN "Mexican Food" +#define CAT_PASTRY "Pastries" +#define CAT_PIE "Pies" +#define CAT_PIZZA "Pizzas" +#define CAT_SALAD "Salads" +#define CAT_SEAFOOD "Seafood" +#define CAT_SANDWICH "Sandwiches" +#define CAT_SOUP "Soups" +#define CAT_SPAGHETTI "Spaghettis" +#define CAT_ICE "Frozen" +#define CAT_DRINK "Drinks" diff --git a/code/__DEFINES/dcs/signals/signals_atom/signals_atom.dm b/code/__DEFINES/dcs/signals/signals_atom/signals_atom.dm index 02079493f1cbc..21a56d0f7dc56 100644 --- a/code/__DEFINES/dcs/signals/signals_atom/signals_atom.dm +++ b/code/__DEFINES/dcs/signals/signals_atom/signals_atom.dm @@ -126,6 +126,8 @@ ///This signal return value bitflags can be found in __DEFINES/misc.dm ///called for each movable in a turf contents on /turf/attempt_z_impact(): (atom/movable/A, levels) #define COMSIG_ATOM_INTERCEPT_Z_FALL "movable_intercept_z_impact" +///signal sent out by an atom upon onZImpact : (turf/impacted_turf, levels) +#define COMSIG_ATOM_ON_Z_IMPACT "movable_on_z_impact" #define COMSIG_ATOM_AFTER_SUCCESSFUL_INITIALIZE "atom_init_success" diff --git a/code/__DEFINES/dcs/signals/signals_mob/signals_carbon.dm b/code/__DEFINES/dcs/signals/signals_mob/signals_carbon.dm index 76cdcd04b38a0..ad2b38da0ddd2 100644 --- a/code/__DEFINES/dcs/signals/signals_mob/signals_carbon.dm +++ b/code/__DEFINES/dcs/signals/signals_mob/signals_carbon.dm @@ -25,6 +25,7 @@ ///from base of /obj/item/bodypart/proc/try_attach_limb(): (new_limb, special) #define COMSIG_CARBON_ATTACH_LIMB "carbon_attach_limb" + #define COMPONENT_NO_ATTACH (1<<0) /// Called from bodypart being attached /obj/item/bodypart/proc/try_attach_limb(mob/living/carbon/new_owner, special) #define COMSIG_BODYPART_ATTACHED "bodypart_attached" ///from base of /obj/item/bodypart/proc/try_attach_limb(): (new_limb, special) diff --git a/code/__DEFINES/dcs/signals/signals_mob/signals_living.dm b/code/__DEFINES/dcs/signals/signals_mob/signals_living.dm index 66dd862db99d7..0f6068756a8e6 100644 --- a/code/__DEFINES/dcs/signals/signals_mob/signals_living.dm +++ b/code/__DEFINES/dcs/signals/signals_mob/signals_living.dm @@ -13,6 +13,8 @@ #define COMSIG_LIVING_ELECTROCUTE_ACT "living_electrocute_act" ///from base of mob/living/revive() (full_heal, admin_revive) #define COMSIG_LIVING_REVIVE "living_revive" +///from base of /mob/living/regenerate_limbs(): (noheal, excluded_limbs) +#define COMSIG_LIVING_REGENERATE_LIMBS "living_regen_limbs" ///from base of mob/living/set_buckled(): (new_buckled) #define COMSIG_LIVING_SET_BUCKLED "living_set_buckled" #define COMSIG_LIVING_MINOR_SHOCK "living_minor_shock" //! sent by stuff like stunbatons and tasers: () diff --git a/code/__DEFINES/dcs/signals/signals_obj/signals_item/signals_item.dm b/code/__DEFINES/dcs/signals/signals_obj/signals_item/signals_item.dm index 1e123e41a5d4f..7feed06591d9a 100644 --- a/code/__DEFINES/dcs/signals/signals_obj/signals_item/signals_item.dm +++ b/code/__DEFINES/dcs/signals/signals_obj/signals_item/signals_item.dm @@ -82,3 +82,18 @@ /// Tell a deployable item to force its deployment (datum/source, atom/location) #define COMSIG_DEPLOYABLE_FORCE_DEPLOY "force_deploy" #define DEPLOYMENT_SUCCESS (1 << 0) //Indicates that something was successfully deployed + +#define COMSIG_IGNITER_ACTIVATE "ignite_activate" //called when an igniter activates + +/// Called before beam is redrawn +#define COMSIG_BEAM_BEFORE_DRAW "beam_before_draw" + #define BEAM_CANCEL_DRAW (1 << 0) + +/// Sent to a beam when an atom enters any turf the beam covers: (obj/effect/ebeam/hit_beam, atom/movable/entered) +#define COMSIG_BEAM_ENTERED "beam_entered" + +/// Sent to a beam when an atom exits any turf the beam covers: (obj/effect/ebeam/hit_beam, atom/movable/exited) +#define COMSIG_BEAM_EXITED "beam_exited" + +/// Sent to a beam when any turf the beam covers changes: (list/datum/callback/post_change_callbacks) +#define COMSIG_BEAM_TURFS_CHANGED "beam_turfs_changed" diff --git a/code/__DEFINES/dcs/signals/signals_obj/signals_object.dm b/code/__DEFINES/dcs/signals/signals_obj/signals_object.dm index a8f84509c1816..c3eb6af24a09d 100644 --- a/code/__DEFINES/dcs/signals/signals_obj/signals_object.dm +++ b/code/__DEFINES/dcs/signals/signals_obj/signals_object.dm @@ -32,3 +32,5 @@ ///Called when a payment component changes value #define COMSIG_OBJ_ATTEMPT_CHARGE_CHANGE "obj_attempt_simple_charge_change" +///from /obj/item/assembly/proc/pulsed(mob/pulser) +#define COMSIG_ASSEMBLY_PULSED "assembly_pulsed" diff --git a/code/__DEFINES/logging.dm b/code/__DEFINES/logging.dm index 69b78270635b4..b4d9de4343f4d 100644 --- a/code/__DEFINES/logging.dm +++ b/code/__DEFINES/logging.dm @@ -22,6 +22,9 @@ #define INVESTIGATE_VERB_DROPPED "dropped" #define INVESTIGATE_VERB_EQUIPPED "equipped" +// The maximum number of entries allowed in the signaler investigate log, keep this relatively small to prevent performance issues when an admin tries to query it +#define INVESTIGATE_SIGNALER_LOG_MAX_LENGTH 500 + // Logging types for log_message() #define LOG_ATTACK (1 << 0) #define LOG_SAY (1 << 1) diff --git a/code/__DEFINES/machines.dm b/code/__DEFINES/machines.dm index 18c1b7f0fbf3a..7e1b5088279d5 100644 --- a/code/__DEFINES/machines.dm +++ b/code/__DEFINES/machines.dm @@ -214,7 +214,6 @@ GLOBAL_LIST_INIT(approved_status_pictures, list( #define WIRE_PULSE_SPECIAL (1<<2) #define WIRE_RADIO_RECEIVE (1<<3) #define WIRE_RADIO_PULSE (1<<4) -#define ASSEMBLY_BEEP_VOLUME 5 // Camera defines // --------------------------------------------------- diff --git a/code/__DEFINES/time.dm b/code/__DEFINES/time.dm index e0beecbd2b4b6..be4328a02d2cf 100644 --- a/code/__DEFINES/time.dm +++ b/code/__DEFINES/time.dm @@ -34,7 +34,7 @@ When using time2text(), please use "DDD" to find the weekday. Refrain from using */ #define MONDAY "Mon" -#define TUESDAY "Tue" +#define TUESDAY "Tue" #define WEDNESDAY "Wed" #define THURSDAY "Thu" #define FRIDAY "Fri" diff --git a/code/__HELPERS/maths.dm b/code/__HELPERS/maths.dm index 52a88ef88dda2..ae404c8ca3491 100644 --- a/code/__HELPERS/maths.dm +++ b/code/__HELPERS/maths.dm @@ -14,6 +14,28 @@ else if(dx < 0) . += 360 +/// Calculate the angle produced by a pair of x and y deltas +/proc/delta_to_angle(x, y) + if(!y) + return (x >= 0) ? 90 : 270 + . = arctan(x/y) + if(y < 0) + . += 180 + else if(x < 0) + . += 360 + +/// Angle between two arbitrary points and horizontal line same as [/proc/get_angle] +/proc/get_angle_raw(start_x, start_y, start_pixel_x, start_pixel_y, end_x, end_y, end_pixel_x, end_pixel_y) + var/dy = (32 * end_y + end_pixel_y) - (32 * start_y + start_pixel_y) + var/dx = (32 * end_x + end_pixel_x) - (32 * start_x + start_pixel_x) + if(!dy) + return (dx >= 0) ? 90 : 270 + . = arctan(dx/dy) + if(dy < 0) + . += 180 + else if(dx < 0) + . += 360 + ///for getting the angle when animating something's pixel_x and pixel_y /proc/get_pixel_angle(y, x) if(!y) @@ -70,52 +92,6 @@ line += locate(current_x_step, current_y_step, starting_z) return line -/** - * Get a list of turfs in a line from `starting_atom` to `ending_atom`. - * - * Uses the ultra-fast [Bresenham Line-Drawing Algorithm](https://en.wikipedia.org/wiki/Bresenham%27s_line_algorithm). - */ -/proc/get_line(atom/starting_atom, atom/ending_atom) - var/current_x_step = starting_atom.x//start at x and y, then add 1 or -1 to these to get every turf from starting_atom to ending_atom - var/current_y_step = starting_atom.y - var/starting_z = starting_atom.z - - var/list/line = list(get_turf(starting_atom))//get_turf(atom) is faster than locate(x, y, z) - - var/x_distance = ending_atom.x - current_x_step //x distance - var/y_distance = ending_atom.y - current_y_step - - var/abs_x_distance = abs(x_distance)//Absolute value of x distance - var/abs_y_distance = abs(y_distance) - - var/x_distance_sign = SIGN(x_distance) //Sign of x distance (+ or -) - var/y_distance_sign = SIGN(y_distance) - - var/x = abs_x_distance >> 1 //Counters for steps taken, setting to distance/2 - var/y = abs_y_distance >> 1 //Bit-shifting makes me l33t. It also makes get_line() unnessecarrily fast. - - if(abs_x_distance >= abs_y_distance) //x distance is greater than y - for(var/distance_counter in 0 to (abs_x_distance - 1))//It'll take abs_x_distance steps to get there - y += abs_y_distance - - if(y >= abs_x_distance) //Every abs_y_distance steps, step once in y direction - y -= abs_x_distance - current_y_step += y_distance_sign - - current_x_step += x_distance_sign //Step on in x direction - line += locate(current_x_step, current_y_step, starting_z)//Add the turf to the list - else - for(var/distance_counter in 0 to (abs_y_distance - 1)) - x += abs_x_distance - - if(x >= abs_y_distance) - x -= abs_y_distance - current_x_step += x_distance_sign - - current_y_step += y_distance_sign - line += locate(current_x_step, current_y_step, starting_z) - return line - //chances are 1:value. anyprob(1) will always return true /proc/anyprob(value) return (rand(1,value)==value) diff --git a/code/__HELPERS/mobs.dm b/code/__HELPERS/mobs.dm index 3a763818771b6..96bba3a97a2dd 100644 --- a/code/__HELPERS/mobs.dm +++ b/code/__HELPERS/mobs.dm @@ -775,6 +775,25 @@ GLOBAL_DATUM_INIT(dview_mob, /mob/dview, new) return TRUE return FALSE +/// Special handler for cyborg naming to check if cyborg name preferences match a name that has already been used. Returns TRUE if preferences are good to use and FALSE if not. +/mob/proc/check_cyborg_name(client/C, obj/item/mmi/mmi) + var/name = C?.prefs?.read_character_preference(/datum/preference/name/cyborg) + + //Name is original, add it to the list to prevent it from being used again and return TRUE + if(!(name in GLOB.cyborg_name_list)) + GLOB.cyborg_name_list += name + mmi.original_name = name + return TRUE + + //Name is not original, but is this the original user of the name? If so we still return TRUE but do not need to add it to the list + else if(name == mmi.original_name) + return TRUE + + //This name has already been taken and this is not the original user, return FALSE + else + to_chat(C.mob, "Cyborg name already used this round by another character, your name has been randomized") + return FALSE + /proc/view_or_range(distance = world.view , center = usr , type) switch(type) if("view") diff --git a/code/_globalvars/bitfields.dm b/code/_globalvars/bitfields.dm index a0976f7aca51d..8841f49209c72 100644 --- a/code/_globalvars/bitfields.dm +++ b/code/_globalvars/bitfields.dm @@ -177,20 +177,21 @@ DEFINE_BITFIELD(resistance_flags, list( )) DEFINE_BITFIELD(flags_1, list( - "NOJAUNT_1" = NOJAUNT_1, - "UNUSED_RESERVATION_TURF_1" = UNUSED_RESERVATION_TURF_1, - "NO_LAVA_GEN_1" = NO_LAVA_GEN_1, + "ADMIN_SPAWNED_1" = ADMIN_SPAWNED_1, "CAN_BE_DIRTY_1" = CAN_BE_DIRTY_1, "CONDUCT_1" = CONDUCT_1, + "HOLOGRAM_1" = HOLOGRAM_1, + "INITIALIZED_1" = INITIALIZED_1, + "IS_ONTOP_1" = IS_ONTOP_1, "NODECONSTRUCT_1" = NODECONSTRUCT_1, + "NOJAUNT_1" = NOJAUNT_1, + "NO_RUINS_1" = NO_RUINS_1, + "NO_LAVA_GEN_1" = NO_LAVA_GEN_1, + "UNUSED_RESERVATION_TURF_1" = UNUSED_RESERVATION_TURF_1, "OVERLAY_QUEUED_1" = OVERLAY_QUEUED_1, "ON_BORDER_1" = ON_BORDER_1, - "NO_RUINS_1" = NO_RUINS_1, "PREVENT_CLICK_UNDER_1" = PREVENT_CLICK_UNDER_1, - "HOLOGRAM_1" = HOLOGRAM_1, "TESLA_IGNORE_1" = TESLA_IGNORE_1, - "INITIALIZED_1" = INITIALIZED_1, - "ADMIN_SPAWNED_1" = ADMIN_SPAWNED_1, "PREVENT_CONTENTS_EXPLOSION_1" = PREVENT_CONTENTS_EXPLOSION_1, "UNPAINTABLE_1" = UNPAINTABLE_1, )) diff --git a/code/_globalvars/lists/mobs.dm b/code/_globalvars/lists/mobs.dm index 73b9a2c418b4a..4daa7b969bfd6 100644 --- a/code/_globalvars/lists/mobs.dm +++ b/code/_globalvars/lists/mobs.dm @@ -52,7 +52,7 @@ GLOBAL_LIST_EMPTY(mob_config_movespeed_type_lookup) GLOBAL_LIST_EMPTY(emote_list) -GLOBAL_LIST_EMPTY(posi_key_list) +GLOBAL_LIST_EMPTY(cyborg_name_list) GLOBAL_LIST_INIT(construct_radial_images, list( CONSTRUCT_JUGGERNAUT = image(icon = 'icons/mob/cult.dmi', icon_state = "juggernaut"), diff --git a/code/_globalvars/logging.dm b/code/_globalvars/logging.dm index d706b5c99c5d1..09a4a668b2f52 100644 --- a/code/_globalvars/logging.dm +++ b/code/_globalvars/logging.dm @@ -88,6 +88,15 @@ GLOBAL_PROTECT(admin_log) GLOBAL_LIST_EMPTY(lastsignalers) //! keeps last 100 signals here in format: "[src] used [REF(src)] @ location [src.loc]: [freq]/[code]" GLOBAL_PROTECT(lastsignalers) +/// Used to add a text log to the signaler investigation log. +/// Do not add to the list directly; if the list is too large it can cause lag when an admin tries to view it. +/proc/add_to_signaler_investigate_log(text) + var/log_length = length(GLOB.lastsignalers) + if(log_length >= INVESTIGATE_SIGNALER_LOG_MAX_LENGTH) + GLOB.lastsignalers = GLOB.lastsignalers.Copy((INVESTIGATE_SIGNALER_LOG_MAX_LENGTH - log_length) + 2) + GLOB.lastsignalers += list(text) + + GLOBAL_LIST_EMPTY(lawchanges) //! Stores who uploaded laws to which silicon-based lifeform, and what the law was GLOBAL_PROTECT(lawchanges) diff --git a/code/_onclick/click.dm b/code/_onclick/click.dm index 746143d90e357..d6136f765d699 100644 --- a/code/_onclick/click.dm +++ b/code/_onclick/click.dm @@ -185,6 +185,7 @@ var/list/closed = list() var/list/checking = list(ultimate_target) + while (checking.len && depth > 0) var/list/next = list() --depth @@ -192,7 +193,8 @@ for(var/atom/target in checking) // will filter out nulls if(closed[target] || isarea(target)) // avoid infinity situations continue - if(isturf(target) || isturf(target.loc) || HasDirectAccess(target) || (isobj(target) && target.flags_1 & IS_ONTOP_1)) //Directly accessible atoms + + if(isturf(target) || isturf(target.loc) || HasDirectAccess(target) || (ismovable(target) && target.flags_1 & IS_ONTOP_1)) //Directly accessible atoms if(Adjacent(target) || (tool && CheckToolReach(src, target, tool.reach))) //Adjacent or reaching attacks return TRUE diff --git a/code/datums/beam.dm b/code/datums/beam.dm index 13535f0dc5bca..117eac2b758b9 100644 --- a/code/datums/beam.dm +++ b/code/datums/beam.dm @@ -27,14 +27,50 @@ var/beam_type = /obj/effect/ebeam ///This is used as the visual_contents of beams, so you can apply one effect to this and the whole beam will look like that. never gets deleted on redrawing. var/obj/effect/ebeam/visuals + ///The color of the beam we're drawing. + var/beam_color + ///If we use an emissive appearance + var/emissive = TRUE + /// If set will be used instead of origin's pixel_x in offset calculations + var/override_origin_pixel_x = null + /// If set will be used instead of origin's pixel_y in offset calculations + var/override_origin_pixel_y = null + /// If set will be used instead of targets's pixel_x in offset calculations + var/override_target_pixel_x = null + /// If set will be used instead of targets's pixel_y in offset calculations + var/override_target_pixel_y = null + ///the layer of our beam + var/beam_layer -/datum/beam/New(beam_origin, beam_target, beam_icon='icons/effects/beam.dmi', beam_icon_state="b_beam", time=INFINITY, maxdistance=INFINITY, btype = /obj/effect/ebeam) - origin = beam_origin - target = beam_target - max_distance = maxdistance - icon = beam_icon - icon_state = beam_icon_state - beam_type = btype +/datum/beam/New( + origin, + target, + icon = 'icons/effects/beam.dmi', + icon_state = "b_beam", + time = INFINITY, + max_distance = INFINITY, + beam_type = /obj/effect/ebeam, + beam_color = null, + emissive = TRUE, + override_origin_pixel_x = null, + override_origin_pixel_y = null, + override_target_pixel_x = null, + override_target_pixel_y = null, + beam_layer = ABOVE_ALL_MOB_LAYER +) + src.origin = origin + src.target = target + src.icon = icon + src.icon_state = icon_state + src.max_distance = max_distance + src.beam_type = beam_type + src.beam_color = beam_color + src.emissive = emissive + src.override_origin_pixel_x = override_origin_pixel_x + src.override_origin_pixel_y = override_origin_pixel_y + src.override_target_pixel_x = override_target_pixel_x + src.override_target_pixel_y = override_target_pixel_y + src.beam_layer = beam_layer if(time < INFINITY) QDEL_IN(src, time) @@ -45,9 +81,14 @@ visuals = new beam_type() visuals.icon = icon visuals.icon_state = icon_state + visuals.color = beam_color + visuals.vis_flags = VIS_INHERIT_PLANE|VIS_INHERIT_LAYER + visuals.emissive = emissive + visuals.layer = beam_layer + visuals.update_appearance() Draw() - RegisterSignal(origin, COMSIG_MOVABLE_MOVED, PROC_REF(redrawing)) - RegisterSignal(target, COMSIG_MOVABLE_MOVED, PROC_REF(redrawing)) + RegisterSignal(origin, COMSIG_MOVABLE_MOVED, PROC_REF(redrawing), override = TRUE) + RegisterSignal(target, COMSIG_MOVABLE_MOVED, PROC_REF(redrawing), override = TRUE) /** * Triggered by signals set up when the beam is set up. If it's still sane to create a beam, it removes the old beam, creates a new one. Otherwise it kills the beam. @@ -58,15 +99,16 @@ * direction: in what direction mover moved from. */ /datum/beam/proc/redrawing(atom/movable/mover, atom/oldloc, direction) - if(origin && target && get_dist(origin,target)length) //went past the target, we draw a box of space to cut away from the beam sprite so the icon actually ends at the center of the target sprite var/icon/II = new(icon, icon_state)//this means we exclude the overshooting object from the visual contents which does mean those visuals don't show up for the final bit of the beam... II.DrawBox(null,1,(length-N),32,32)//in the future if you want to improve this, remove the drawbox and instead use a 513 filter to cut away at the final object's icon - X.icon = II + segment.icon = II + segment.color = beam_color else - X.vis_contents += visuals - X.transform = rot_matrix + segment.vis_contents += visuals + segment.transform = rot_matrix //Calculate pixel offsets (If necessary) var/Pixel_x @@ -118,34 +166,111 @@ Pixel_y = round(cos(Angle)+32*cos(Angle)*(N+16)/32) //Position the effect so the beam is one continous line - var/a + var/final_x = segment.x + var/final_y = segment.y if(abs(Pixel_x)>32) - a = Pixel_x > 0 ? round(Pixel_x/32) : CEILING(Pixel_x/32, 1) - X.x += a + final_x += Pixel_x > 0 ? round(Pixel_x/32) : CEILING(Pixel_x/32, 1) Pixel_x %= 32 if(abs(Pixel_y)>32) - a = Pixel_y > 0 ? round(Pixel_y/32) : CEILING(Pixel_y/32, 1) - X.y += a + final_y += Pixel_y > 0 ? round(Pixel_y/32) : CEILING(Pixel_y/32, 1) Pixel_y %= 32 - X.pixel_x = Pixel_x - X.pixel_y = Pixel_y + segment.forceMove(locate(final_x, final_y, segment.z)) + segment.pixel_x = origin_px + Pixel_x + segment.pixel_y = origin_py + Pixel_y CHECK_TICK /obj/effect/ebeam mouse_opacity = MOUSE_OPACITY_TRANSPARENT + layer = ABOVE_ALL_MOB_LAYER anchored = TRUE + var/emissive = TRUE var/datum/beam/owner + +/obj/effect/ebeam/Initialize(mapload, beam_owner) + owner = beam_owner + return ..() + +/obj/effect/ebeam/update_overlays() + . = ..() + if(!emissive) + return + var/mutable_appearance/emissive_overlay = emissive_appearance(icon, icon_state, layer, alpha, appearance_flags, filters) + emissive_overlay.transform = transform + emissive_overlay.alpha = alpha + ADD_LUM_SOURCE(src, LUM_SOURCE_MANAGED_OVERLAY) + . += emissive_overlay + /obj/effect/ebeam/Destroy() owner = null return ..() /obj/effect/ebeam/singularity_pull() return + /obj/effect/ebeam/singularity_act() return +/// A beam subtype used for advanced beams, to react to atoms entering the beam +/obj/effect/ebeam/reacting + /// If TRUE, atoms that exist in the beam's loc when inited count as "entering" the beam + var/react_on_init = FALSE + +/obj/effect/ebeam/reacting/Initialize(mapload, beam_owner) + . = ..() + var/static/list/loc_connections = list( + COMSIG_ATOM_ENTERED = PROC_REF(on_entered), + COMSIG_ATOM_EXITED = PROC_REF(on_exited), + COMSIG_TURF_CHANGE = PROC_REF(on_turf_change), + ) + AddElement(/datum/element/connect_loc, loc_connections) + + if(!isturf(loc) || isnull(owner) || mapload || !react_on_init) + return + + for(var/atom/movable/existing as anything in loc) + beam_entered(existing) + +/obj/effect/ebeam/reacting/proc/on_entered(datum/source, atom/movable/entered) + SIGNAL_HANDLER + + if(isnull(owner)) + return + + beam_entered(entered) + +/obj/effect/ebeam/reacting/proc/on_exited(datum/source, atom/movable/exited) + SIGNAL_HANDLER + + if(isnull(owner)) + return + + beam_exited(exited) + +/obj/effect/ebeam/reacting/proc/on_turf_change(datum/source, path, new_baseturfs, flags, list/datum/callback/post_change_callbacks) + SIGNAL_HANDLER + + if(isnull(owner)) + return + + beam_turfs_changed(post_change_callbacks) + +/// Some atom entered the beam's line +/obj/effect/ebeam/reacting/proc/beam_entered(atom/movable/entered) + SHOULD_CALL_PARENT(TRUE) + SEND_SIGNAL(owner, COMSIG_BEAM_ENTERED, src, entered) + +/// Some atom exited the beam's line +/obj/effect/ebeam/reacting/proc/beam_exited(atom/movable/exited) + SHOULD_CALL_PARENT(TRUE) + SEND_SIGNAL(owner, COMSIG_BEAM_EXITED, src, exited) + +/// Some turf the beam covers has changed to a new turf type +/obj/effect/ebeam/reacting/proc/beam_turfs_changed(list/datum/callback/post_change_callbacks) + SHOULD_CALL_PARENT(TRUE) + SEND_SIGNAL(owner, COMSIG_BEAM_TURFS_CHANGED, post_change_callbacks) + /** * This is what you use to start a beam. Example: origin.Beam(target, args). **Store the return of this proc if you don't set maxdist or time, you need it to delete the beam.** * @@ -158,7 +283,18 @@ * maxdistance: how far the beam will go before stopping itself. Used mainly for two things: preventing lag if the beam may go in that direction and setting a range to abilities that use beams. * beam_type: The type of your custom beam. This is for adding other wacky stuff for your beam only. Most likely, you won't (and shouldn't) change it. */ -/atom/proc/Beam(atom/BeamTarget,icon_state="b_beam",icon='icons/effects/beam.dmi',time=INFINITY,maxdistance=INFINITY,beam_type=/obj/effect/ebeam) - var/datum/beam/newbeam = new(src,BeamTarget,icon,icon_state,time,maxdistance,beam_type) +/atom/proc/Beam(atom/BeamTarget, + icon_state="b_beam", + icon='icons/effects/beam.dmi', + time=INFINITY,maxdistance=INFINITY, + beam_type=/obj/effect/ebeam, + beam_color = null, emissive = TRUE, + override_origin_pixel_x = null, + override_origin_pixel_y = null, + override_target_pixel_x = null, + override_target_pixel_y = null, + layer = ABOVE_ALL_MOB_LAYER +) + var/datum/beam/newbeam = new(src,BeamTarget,icon,icon_state,time,maxdistance,beam_type, beam_color, emissive, override_origin_pixel_x, override_origin_pixel_y, override_target_pixel_x, override_target_pixel_y, layer) INVOKE_ASYNC(newbeam, TYPE_PROC_REF(/datum/beam, Start)) return newbeam diff --git a/code/datums/components/crafting/_recipes.dm b/code/datums/components/crafting/_recipes.dm new file mode 100644 index 0000000000000..6abf3118728d2 --- /dev/null +++ b/code/datums/components/crafting/_recipes.dm @@ -0,0 +1,40 @@ + +/datum/crafting_recipe + ///in-game display name - Optional, if not set uses result name + var/name = "" + ///type paths of items consumed associated with how many are needed + var/list/reqs[] = list() + //type paths of items explicitly not allowed as an ingredient + var/list/blacklist[] = list() + //type path of item resulting from this craft + var/result + //type paths of items needed but not consumed + var/list/tools[] = list() + //time in Seconds + var/time = 3 SECONDS + //type paths of items that will be placed in the result + var/list/parts[] = list() + //type paths of reagents that will be placed in the result + var/list/chem_catalysts[] = list() + //where it shows up in the crafting UI, as well it's subcategory + var/category = CAT_NONE + var/subcategory = CAT_NONE + //Set to FALSE if it needs to be learned first. + var/always_available = TRUE + ///Should only one object exist on the same turf? + var/one_per_turf = FALSE + /// Should admins be notified about this getting created by a non-antagonist? + var/dangerous_craft = FALSE + +/datum/crafting_recipe/New() + if(!(result in reqs)) + blacklist += result + +/** + * Run custom pre-craft checks for this recipe + * + * user: the /mob that initiated the crafting + * collected_requirements: A list of lists of /obj/item instances that satisfy reqs. Top level list is keyed by requirement path. + */ +/datum/crafting_recipe/proc/check_requirements(mob/user, list/collected_requirements) + return TRUE diff --git a/code/datums/components/crafting/crafting.dm b/code/datums/components/crafting/crafting.dm index 64514d2d33831..b401e93ffd7e5 100644 --- a/code/datums/components/crafting/crafting.dm +++ b/code/datums/components/crafting/crafting.dm @@ -3,6 +3,7 @@ RegisterSignal(parent, COMSIG_MOB_CLIENT_LOGIN, PROC_REF(create_mob_button)) /datum/component/personal_crafting/proc/create_mob_button(mob/user, client/CL) + SIGNAL_HANDLER var/datum/hud/H = user.hud_used var/atom/movable/screen/craft/C = new() C.icon = H.ui_style @@ -12,16 +13,15 @@ /datum/component/personal_crafting var/busy - var/viewing_category = 1 //typical powergamer starting on the Weapons tab - var/viewing_subcategory = 1 var/list/categories = list( CAT_WEAPONRY = list( CAT_WEAPON, CAT_AMMO, ), - CAT_ROBOT = CAT_NONE, - CAT_MISC = CAT_NONE, - CAT_PRIMAL = CAT_NONE, + CAT_TAILORING = list( + CAT_CLOTHING, + CAT_EYEWEAR, + ), CAT_FOOD = list( CAT_BREAD, CAT_BURGER, @@ -38,16 +38,19 @@ CAT_SEAFOOD, CAT_SOUP, CAT_SPAGHETTI, + CAT_MEXICAN, ), + CAT_ROBOT = CAT_NONE, + CAT_MISC = CAT_NONE, + CAT_PRIMAL = CAT_NONE, + CAT_STRUCTURE = CAT_NONE, CAT_DRINK = CAT_NONE, - CAT_CLOTHING = CAT_NONE, ) - var/cur_category = CAT_NONE var/cur_subcategory = CAT_NONE - var/datum/action/innate/crafting/button var/display_craftable_only = FALSE var/display_compact = TRUE + var/datum/action/innate/crafting/button /* This is what procs do: get_environment - gets a list of things accessable for crafting by user diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_drink.dm b/code/datums/components/crafting/crafting_lists/drinks.dm similarity index 87% rename from code/modules/food_and_drinks/recipes/tablecraft/recipes_drink.dm rename to code/datums/components/crafting/crafting_lists/drinks.dm index e2b13d4b0f2bc..b29a16082f3d3 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_drink.dm +++ b/code/datums/components/crafting/crafting_lists/drinks.dm @@ -1,117 +1,117 @@ -// This is the home of drink related tablecrafting recipes, I have opted to only let players bottle fancy boozes to reduce the number of entries. - -///////////////// Booze & Bottles /////////////////// +/// Booze and bottles crafting +/// This is the home of drink related tablecrafting recipes, I have opted to only let players bottle fancy boozes to reduce the number of entries. /datum/crafting_recipe/lizardwine name = "Lizard Wine" - time = 40 + result = /obj/item/reagent_containers/food/drinks/bottle/lizardwine + time = 4 SECONDS reqs = list( /obj/item/organ/tail/lizard = 1, /datum/reagent/consumable/ethanol = 100 ) - result = /obj/item/reagent_containers/food/drinks/bottle/lizardwine category = CAT_DRINK /datum/crafting_recipe/moonshinejug name = "Moonshine Jug" - time = 30 + result = /obj/item/reagent_containers/food/drinks/bottle/moonshine + time = 3 SECONDS reqs = list( /obj/item/reagent_containers/food/drinks/bottle/blank = 1, /datum/reagent/consumable/ethanol/moonshine = 100 ) - result = /obj/item/reagent_containers/food/drinks/bottle/moonshine category = CAT_DRINK /datum/crafting_recipe/hoochbottle name = "Hooch Bottle" - time = 30 + result = /obj/item/reagent_containers/food/drinks/bottle/hooch + time = 3 SECONDS reqs = list( /obj/item/reagent_containers/food/drinks/bottle/blank = 1, /obj/item/storage/box/papersack = 1, /datum/reagent/consumable/ethanol/hooch = 100 ) - result = /obj/item/reagent_containers/food/drinks/bottle/hooch category = CAT_DRINK /datum/crafting_recipe/blazaambottle name = "Blazaam Bottle" - time = 20 + result = /obj/item/reagent_containers/food/drinks/bottle/blazaam + time = 2 SECONDS reqs = list( /obj/item/reagent_containers/food/drinks/bottle/blank = 1, /datum/reagent/consumable/ethanol/blazaam = 100 ) - result = /obj/item/reagent_containers/food/drinks/bottle/blazaam category = CAT_DRINK /datum/crafting_recipe/champagnebottle name = "Champagne Bottle" - time = 30 + result = /obj/item/reagent_containers/food/drinks/bottle/champagne + time = 3 SECONDS reqs = list( /obj/item/reagent_containers/food/drinks/bottle/blank = 1, /datum/reagent/consumable/ethanol/champagne = 100 ) - result = /obj/item/reagent_containers/food/drinks/bottle/champagne category = CAT_DRINK /datum/crafting_recipe/trappistbottle name = "Trappist Bottle" - time = 15 + result = /obj/item/reagent_containers/food/drinks/bottle/trappist + time = 1.5 SECONDS reqs = list( /obj/item/reagent_containers/food/drinks/bottle/blank/small = 1, /datum/reagent/consumable/ethanol/trappist = 50 ) - result = /obj/item/reagent_containers/food/drinks/bottle/trappist category = CAT_DRINK /datum/crafting_recipe/goldschlagerbottle name = "Goldschlager Bottle" - time = 30 + result = /obj/item/reagent_containers/food/drinks/bottle/goldschlager + time = 3 SECONDS reqs = list( /obj/item/reagent_containers/food/drinks/bottle/blank = 1, /datum/reagent/consumable/ethanol/goldschlager = 100 ) - result = /obj/item/reagent_containers/food/drinks/bottle/goldschlager category = CAT_DRINK /datum/crafting_recipe/patronbottle name = "Patron Bottle" - time = 30 + result = /obj/item/reagent_containers/food/drinks/bottle/patron + time = 3 SECONDS reqs = list( /obj/item/reagent_containers/food/drinks/bottle/blank = 1, /datum/reagent/consumable/ethanol/patron = 100 ) - result = /obj/item/reagent_containers/food/drinks/bottle/patron category = CAT_DRINK ////////////////////// Non-alcoholic recipes /////////////////// /datum/crafting_recipe/holybottle name = "Holy Water Flask" - time = 30 + result = /obj/item/reagent_containers/food/drinks/bottle/holywater + time = 3 SECONDS reqs = list( /obj/item/reagent_containers/food/drinks/bottle/blank = 1, /datum/reagent/water/holywater = 100 ) - result = /obj/item/reagent_containers/food/drinks/bottle/holywater category = CAT_DRINK //flask of unholy water is a beaker for some reason, I will try making it a bottle and add it here once the antag freeze is over. t. kryson +//lazy lazy devs not doing their job and letting the code debt getting bigger and bigger IT'S BEEN 7 YEARS FFS /datum/crafting_recipe/nothingbottle name = "Nothing Bottle" - time = 30 + result = /obj/item/reagent_containers/food/drinks/bottle/bottleofnothing + time = 3 SECONDS reqs = list( /obj/item/reagent_containers/food/drinks/bottle/blank = 1, /datum/reagent/consumable/nothing = 100 ) - result = /obj/item/reagent_containers/food/drinks/bottle/bottleofnothing category = CAT_DRINK /datum/crafting_recipe/smallcarton name = "Small Carton" result = /obj/item/reagent_containers/food/drinks/sillycup/smallcarton - time = 10 + time = 1 SECONDS reqs = list(/obj/item/stack/sheet/cardboard = 1) category = CAT_DRINK @@ -119,7 +119,7 @@ name = "Honeycomb" result = /obj/item/reagent_containers/food/drinks/honeycomb always_available = FALSE - time = 30 + time = 3 SECONDS reqs = list(/datum/reagent/consumable/sugar = 50) category = CAT_DRINK diff --git a/code/datums/components/crafting/crafting_lists/foodstuffs/_recipes.dm b/code/datums/components/crafting/crafting_lists/foodstuffs/_recipes.dm new file mode 100644 index 0000000000000..cb9d37ebdfb83 --- /dev/null +++ b/code/datums/components/crafting/crafting_lists/foodstuffs/_recipes.dm @@ -0,0 +1,9 @@ +///Ok foodstuffs act kinda in a funky way, as their category is pre-defined in here as you can see, sononly the subcategory needs to be defined! + +/datum/crafting_recipe/food + var/real_parts + category = CAT_FOOD + +/datum/crafting_recipe/food/New() + real_parts = parts.Copy() + parts |= reqs diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_bread.dm b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_bread.dm similarity index 92% rename from code/modules/food_and_drinks/recipes/tablecraft/recipes_bread.dm rename to code/datums/components/crafting/crafting_lists/foodstuffs/recipes_bread.dm index bbc7500a17297..5bce825143af0 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_bread.dm +++ b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_bread.dm @@ -1,160 +1,160 @@ -// see code/module/crafting/table.dm - -////////////////////////////////////////////////BREAD//////////////////////////////////////////////// +/// Bread stuff crafting /datum/crafting_recipe/food/meatbread name = "Meat bread" + result = /obj/item/food/bread/meat reqs = list( /obj/item/food/bread/plain = 1, /obj/item/food/meat/cutlet/plain = 3, /obj/item/food/cheese/wedge = 3 - ) - result = /obj/item/food/bread/meat + ) subcategory = CAT_BREAD /datum/crafting_recipe/food/xenomeatbread name = "Xenomeat bread" + result = /obj/item/food/bread/xenomeat reqs = list( /obj/item/food/bread/plain = 1, /obj/item/food/meat/cutlet/xeno = 3, /obj/item/food/cheese/wedge = 3 - ) - result = /obj/item/food/bread/xenomeat + ) subcategory = CAT_BREAD /datum/crafting_recipe/food/spidermeatbread name = "Spidermeat bread" + result = /obj/item/food/bread/spidermeat reqs = list( /obj/item/food/bread/plain = 1, /obj/item/food/meat/cutlet/spider = 3, /obj/item/food/cheese/wedge = 3 - ) - result = /obj/item/food/bread/spidermeat + ) subcategory = CAT_BREAD /datum/crafting_recipe/food/banananutbread name = "Banana nut bread" + result = /obj/item/food/bread/banana reqs = list( /datum/reagent/consumable/milk = 5, /obj/item/food/bread/plain = 1, /obj/item/food/boiledegg = 3, /obj/item/food/grown/banana = 1 - ) - result = /obj/item/food/bread/banana + ) subcategory = CAT_BREAD /datum/crafting_recipe/food/tofubread name = "Tofu bread" + result = /obj/item/food/bread/tofu reqs = list( /obj/item/food/bread/plain = 1, /obj/item/food/tofu = 3, /obj/item/food/cheese/wedge = 3 - ) - result = /obj/item/food/bread/tofu + ) subcategory = CAT_BREAD /datum/crafting_recipe/food/creamcheesebread name = "Cream cheese bread" + result = /obj/item/food/bread/creamcheese reqs = list( /datum/reagent/consumable/milk = 5, /obj/item/food/bread/plain = 1, /obj/item/food/cheese/wedge = 2 - ) - result = /obj/item/food/bread/creamcheese + ) subcategory = CAT_BREAD /datum/crafting_recipe/food/mimanabread name = "Mimana bread" + result = /obj/item/food/bread/mimana reqs = list( /datum/reagent/consumable/soymilk = 5, /obj/item/food/bread/plain = 1, /obj/item/food/tofu = 3, /obj/item/food/grown/banana/mime = 1 - ) - result = /obj/item/food/bread/mimana + ) subcategory = CAT_BREAD /datum/crafting_recipe/food/garlicbread name = "Garlic Bread" - time = 40 - reqs = list(/obj/item/food/grown/garlic = 1, - /obj/item/food/breadslice/plain = 1, - /obj/item/food/butter = 1 - ) + time = 4 SECONDS result = /obj/item/food/garlicbread + reqs = list( + /obj/item/food/grown/garlic = 1, + /obj/item/food/breadslice/plain = 1, + /obj/item/food/butter = 1 + ) subcategory = CAT_BREAD /datum/crafting_recipe/food/butterbiscuit name = "Butter Biscuit" + result = /obj/item/food/butterbiscuit reqs = list( /obj/item/food/bun = 1, /obj/item/food/butter = 1 - ) - result = /obj/item/food/butterbiscuit + ) subcategory = CAT_BREAD /datum/crafting_recipe/food/butterdog name = "Butterdog" + result = /obj/item/food/butterdog reqs = list( /obj/item/food/bun = 1, - /obj/item/food/butter = 3, + /obj/item/food/butter = 3 ) - result = /obj/item/food/butterdog subcategory = CAT_BREAD /datum/crafting_recipe/food/baguette name = "Baguette" - time = 40 + time = 2 SECONDS + result = /obj/item/food/baguette reqs = list(/datum/reagent/consumable/sodiumchloride = 1, /datum/reagent/consumable/blackpepper = 1, /obj/item/food/pastrybase = 2 - ) - result = /obj/item/food/baguette + ) subcategory = CAT_BREAD ////////////////////////////////////////////////TOAST//////////////////////////////////////////////// /datum/crafting_recipe/food/slimetoast name = "Slime toast" + result = /obj/item/food/jelliedtoast/slime reqs = list( /datum/reagent/toxin/slimejelly = 5, /obj/item/food/breadslice/plain = 1 - ) - result = /obj/item/food/jelliedtoast/slime + ) subcategory = CAT_BREAD /datum/crafting_recipe/food/jelliedyoast name = "Jellied toast" + result = /obj/item/food/jelliedtoast/cherry reqs = list( /datum/reagent/consumable/cherryjelly = 5, /obj/item/food/breadslice/plain = 1 ) - result = /obj/item/food/jelliedtoast/cherry subcategory = CAT_BREAD /datum/crafting_recipe/food/butteredtoast name = "Buttered Toast" + result = /obj/item/food/butteredtoast reqs = list( /obj/item/food/breadslice/plain = 1, /obj/item/food/butter = 1 ) - result = /obj/item/food/butteredtoast subcategory = CAT_BREAD /datum/crafting_recipe/food/twobread name = "Two bread" + result = /obj/item/food/twobread reqs = list( /datum/reagent/consumable/ethanol/wine = 5, /obj/item/food/breadslice/plain = 2 ) - result = /obj/item/food/twobread subcategory = CAT_BREAD ////////////////////////////////////////////////WEIRD//////////////////////////////////////////////// /datum/crafting_recipe/food/breadcat name = "Bread cat/bread hybrid" + result = /mob/living/simple_animal/pet/cat/breadcat reqs = list( /obj/item/food/bread/plain = 1, /obj/item/organ/ears/cat = 1, @@ -163,5 +163,4 @@ /datum/reagent/blood = 50, /datum/reagent/medicine/strange_reagent = 5 ) - result = /mob/living/simple_animal/pet/cat/breadcat subcategory = CAT_BREAD diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_burger.dm b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_burger.dm similarity index 81% rename from code/modules/food_and_drinks/recipes/tablecraft/recipes_burger.dm rename to code/datums/components/crafting/crafting_lists/foodstuffs/recipes_burger.dm index 24bc4b08519b5..ae720b3a7a88f 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_burger.dm +++ b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_burger.dm @@ -1,225 +1,219 @@ -// see code/module/crafting/table.dm - -////////////////////////////////////////////////BURGERS//////////////////////////////////////////////// - +/// Burgers crafting /datum/crafting_recipe/food/humanburger name = "Human burger" + result = /obj/item/food/burger/human reqs = list( /obj/item/food/bun = 1, /obj/item/food/patty/human = 1 ) - parts = list( - /obj/item/food/patty = 1 - ) - result = /obj/item/food/burger/human + parts = list(/obj/item/food/patty = 1) subcategory = CAT_BURGER /datum/crafting_recipe/food/burger name = "Burger" + result = /obj/item/food/burger/plain reqs = list( - /obj/item/food/patty/plain = 1, - /obj/item/food/bun = 1 + /obj/item/food/patty/plain = 1, + /obj/item/food/bun = 1 ) - - result = /obj/item/food/burger/plain subcategory = CAT_BURGER /datum/crafting_recipe/food/corgiburger name = "Corgi burger" + result = /obj/item/food/burger/corgi reqs = list( - /obj/item/food/patty/corgi = 1, - /obj/item/food/bun = 1 + /obj/item/food/patty/corgi = 1, + /obj/item/food/bun = 1 ) - - result = /obj/item/food/burger/corgi subcategory = CAT_BURGER /datum/crafting_recipe/food/appendixburger name = "Appendix burger" + result = /obj/item/food/burger/appendix reqs = list( /obj/item/organ/appendix = 1, /obj/item/food/bun = 1 ) - result = /obj/item/food/burger/appendix subcategory = CAT_BURGER /datum/crafting_recipe/food/brainburger name = "Brain burger" + result = /obj/item/food/burger/brain reqs = list( /obj/item/organ/brain = 1, /obj/item/food/bun = 1 ) - result = /obj/item/food/burger/brain subcategory = CAT_BURGER /datum/crafting_recipe/food/xenoburger name = "Xeno burger" + result = /obj/item/food/burger/xeno reqs = list( /obj/item/food/patty/xeno = 1, /obj/item/food/bun = 1 ) - result = /obj/item/food/burger/xeno subcategory = CAT_BURGER /datum/crafting_recipe/food/bearger name = "Bearger" + result = /obj/item/food/burger/bearger reqs = list( /obj/item/food/patty/bear = 1, /obj/item/food/bun = 1 ) - result = /obj/item/food/burger/bearger subcategory = CAT_BURGER /datum/crafting_recipe/food/fishburger name = "Fish burger" + result = /obj/item/food/burger/fish reqs = list( /obj/item/food/fishmeat/carp = 1, /obj/item/food/cheese/wedge = 1, /obj/item/food/bun = 1 ) - result = /obj/item/food/burger/fish subcategory = CAT_BURGER /datum/crafting_recipe/food/tofuburger name = "Tofu burger" + result = /obj/item/food/burger/tofu reqs = list( /obj/item/food/tofu = 1, /obj/item/food/bun = 1 ) - result = /obj/item/food/burger/tofu subcategory = CAT_BURGER /datum/crafting_recipe/food/ghostburger name = "Ghost burger" + result = /obj/item/food/burger/ghost reqs = list( /obj/item/ectoplasm = 1, /datum/reagent/consumable/sodiumchloride = 2, /obj/item/food/bun = 1 ) - result = /obj/item/food/burger/ghost subcategory = CAT_BURGER /datum/crafting_recipe/food/clownburger name = "Clown burger" + result = /obj/item/food/burger/clown reqs = list( /obj/item/clothing/mask/gas/clown_hat = 1, /obj/item/food/bun = 1 ) - result = /obj/item/food/burger/clown subcategory = CAT_BURGER /datum/crafting_recipe/food/mimeburger name = "Mime burger" + result = /obj/item/food/burger/mime reqs = list( /obj/item/clothing/mask/gas/mime = 1, /obj/item/food/bun = 1 ) - result = /obj/item/food/burger/mime subcategory = CAT_BURGER /datum/crafting_recipe/food/redburger name = "Red burger" + result = /obj/item/food/burger/red reqs = list( /obj/item/food/patty/plain = 1, /obj/item/toy/crayon/red = 1, /obj/item/food/bun = 1 ) - result = /obj/item/food/burger/red subcategory = CAT_BURGER /datum/crafting_recipe/food/orangeburger name = "Orange burger" + result = /obj/item/food/burger/orange reqs = list( /obj/item/food/patty/plain = 1, /obj/item/toy/crayon/orange = 1, /obj/item/food/bun = 1 ) - result = /obj/item/food/burger/orange subcategory = CAT_BURGER /datum/crafting_recipe/food/yellowburger name = "Yellow burger" + result = /obj/item/food/burger/yellow reqs = list( /obj/item/food/patty/plain = 1, /obj/item/toy/crayon/yellow = 1, /obj/item/food/bun = 1 ) - result = /obj/item/food/burger/yellow subcategory = CAT_BURGER /datum/crafting_recipe/food/greenburger name = "Green burger" + result = /obj/item/food/burger/green reqs = list( /obj/item/food/patty/plain = 1, /obj/item/toy/crayon/green = 1, /obj/item/food/bun = 1 ) - result = /obj/item/food/burger/green subcategory = CAT_BURGER /datum/crafting_recipe/food/blueburger name = "Blue burger" + result = /obj/item/food/burger/blue reqs = list( /obj/item/food/patty/plain = 1, /obj/item/toy/crayon/blue = 1, /obj/item/food/bun = 1 ) - result = /obj/item/food/burger/blue subcategory = CAT_BURGER /datum/crafting_recipe/food/purpleburger name = "Purple burger" + result = /obj/item/food/burger/purple reqs = list( /obj/item/food/patty/plain = 1, /obj/item/toy/crayon/purple = 1, /obj/item/food/bun = 1 ) - result = /obj/item/food/burger/purple subcategory = CAT_BURGER /datum/crafting_recipe/food/blackburger name = "Black burger" + result = /obj/item/food/burger/black reqs = list( /obj/item/food/patty/plain = 1, /obj/item/toy/crayon/black = 1, /obj/item/food/bun = 1 ) - result = /obj/item/food/burger/black subcategory = CAT_BURGER /datum/crafting_recipe/food/whiteburger name = "White burger" + result = /obj/item/food/burger/white reqs = list( /obj/item/food/patty/plain = 1, /obj/item/toy/crayon/white = 1, /obj/item/food/bun = 1 ) - result = /obj/item/food/burger/white subcategory = CAT_BURGER /datum/crafting_recipe/food/spellburger name = "Spell burger" + result = /obj/item/food/burger/spell reqs = list( /obj/item/clothing/head/wizard = 1, /obj/item/food/bun = 1 ) - result = /obj/item/food/burger/spell subcategory = CAT_BURGER /datum/crafting_recipe/food/bigbiteburger name = "Big bite burger" + result = /obj/item/food/burger/bigbite reqs = list( /obj/item/food/patty/plain = 3, /obj/item/food/cheese/wedge = 2, /obj/item/food/bun = 1 ) - result = /obj/item/food/burger/bigbite subcategory = CAT_BURGER /datum/crafting_recipe/food/superbiteburger name = "Super bite burger" + result = /obj/item/food/burger/superbite reqs = list( /datum/reagent/consumable/sodiumchloride = 5, /datum/reagent/consumable/blackpepper = 5, @@ -229,147 +223,142 @@ /obj/item/food/boiledegg = 1, /obj/item/food/meat/bacon = 1, /obj/item/food/bun = 1 - ) - result = /obj/item/food/burger/superbite subcategory = CAT_BURGER /datum/crafting_recipe/food/slimeburger name = "Jelly burger" + result = /obj/item/food/burger/jelly/slime reqs = list( /datum/reagent/toxin/slimejelly = 5, /obj/item/food/bun = 1 ) - result = /obj/item/food/burger/jelly/slime subcategory = CAT_BURGER /datum/crafting_recipe/food/jellyburger name = "Jelly burger" + result = /obj/item/food/burger/jelly/cherry reqs = list( - /datum/reagent/consumable/cherryjelly = 5, - /obj/item/food/bun = 1 + /datum/reagent/consumable/cherryjelly = 5, + /obj/item/food/bun = 1 ) - result = /obj/item/food/burger/jelly/cherry subcategory = CAT_BURGER /datum/crafting_recipe/food/fivealarmburger name = "Five alarm burger" + result = /obj/item/food/burger/fivealarm reqs = list( - /obj/item/food/patty/plain = 1, - /obj/item/food/grown/ghost_chili = 2, - /obj/item/food/bun = 1 + /obj/item/food/patty/plain = 1, + /obj/item/food/grown/ghost_chili = 2, + /obj/item/food/bun = 1 ) - result = /obj/item/food/burger/fivealarm subcategory = CAT_BURGER /datum/crafting_recipe/food/ratburger name = "Rat burger" + result = /obj/item/food/burger/rat reqs = list( - /obj/item/food/deadmouse = 1, - /obj/item/food/bun = 1 + /obj/item/food/deadmouse = 1, + /obj/item/food/bun = 1 ) - result = /obj/item/food/burger/rat subcategory = CAT_BURGER /datum/crafting_recipe/food/baseballburger name = "Home run baseball burger" + result = /obj/item/food/burger/baseball reqs = list( - /obj/item/melee/baseball_bat = 1, - /obj/item/food/bun = 1 + /obj/item/melee/baseball_bat = 1, + /obj/item/food/bun = 1 ) - result = /obj/item/food/burger/baseball subcategory = CAT_BURGER /datum/crafting_recipe/food/baconburger name = "Bacon Burger" + result = /obj/item/food/burger/baconburger reqs = list( - /obj/item/food/meat/bacon = 3, - /obj/item/food/bun = 1 + /obj/item/food/meat/bacon = 3, + /obj/item/food/bun = 1 ) - - result = /obj/item/food/burger/baconburger subcategory = CAT_BURGER /datum/crafting_recipe/food/empoweredburger name = "Empowered Burger" + result = /obj/item/food/burger/empoweredburger reqs = list( - /obj/item/stack/sheet/mineral/plasma = 2, - /obj/item/food/bun = 1 + /obj/item/stack/sheet/mineral/plasma = 2, + /obj/item/food/bun = 1 ) - - result = /obj/item/food/burger/empoweredburger subcategory = CAT_BURGER /datum/crafting_recipe/food/crabburger name = "Crab Burger" + result = /obj/item/food/burger/crab reqs = list( - /obj/item/food/meat/crab = 2, - /obj/item/food/bun = 1 + /obj/item/food/meat/crab = 2, + /obj/item/food/bun = 1 ) - - result = /obj/item/food/burger/crab subcategory = CAT_BURGER /datum/crafting_recipe/food/cheeseburger name = "Cheese Burger" + result = /obj/item/food/burger/cheese reqs = list( - /obj/item/food/patty/plain = 1, - /obj/item/food/cheese/wedge = 1, - /obj/item/food/bun = 1 + /obj/item/food/patty/plain = 1, + /obj/item/food/cheese/wedge = 1, + /obj/item/food/bun = 1 ) - result = /obj/item/food/burger/cheese subcategory = CAT_BURGER /datum/crafting_recipe/food/soylentburger name = "Soylent Burger" + result = /obj/item/food/burger/soylent reqs = list( - /obj/item/food/soylentgreen = 1, //two full meats worth. - /obj/item/food/cheese/wedge = 2, - /obj/item/food/bun = 1 + /obj/item/food/soylentgreen = 1, //two full meats worth. + /obj/item/food/cheese/wedge = 2, + /obj/item/food/bun = 1 ) - result = /obj/item/food/burger/soylent subcategory = CAT_BURGER /datum/crafting_recipe/food/ribburger name = "McRib" + result = /obj/item/food/burger/rib reqs = list( - /obj/item/food/bbqribs = 1, //The sauce is already included in the ribs - /obj/item/food/onion_slice = 1, //feel free to remove if too burdensome. - /obj/item/food/bun = 1 + /obj/item/food/bbqribs = 1, //The sauce is already included in the ribs + /obj/item/food/onion_slice = 1, //feel free to remove if too burdensome. + /obj/item/food/bun = 1 ) - result = /obj/item/food/burger/rib subcategory = CAT_BURGER /datum/crafting_recipe/food/mcguffin name = "McGuffin" + result = /obj/item/food/burger/mcguffin reqs = list( - /obj/item/food/friedegg = 1, - /obj/item/food/meat/bacon = 2, - /obj/item/food/bun = 1 + /obj/item/food/friedegg = 1, + /obj/item/food/meat/bacon = 2, + /obj/item/food/bun = 1 ) - result = /obj/item/food/burger/mcguffin subcategory = CAT_BURGER /datum/crafting_recipe/food/chickenburger name = "Chicken Sandwich" + result = /obj/item/food/burger/chicken reqs = list( - /obj/item/food/patty/chicken = 1, - /datum/reagent/consumable/mayonnaise = 5, - /obj/item/food/bun = 1 + /obj/item/food/patty/chicken = 1, + /datum/reagent/consumable/mayonnaise = 5, + /obj/item/food/bun = 1 ) - result = /obj/item/food/burger/chicken subcategory = CAT_BURGER /datum/crafting_recipe/food/crazyhamburger name = "Crazy Hamburger" + result = /obj/item/food/burger/crazy reqs = list( - /obj/item/food/patty/plain = 1, // we have no horse meat sadly - /obj/item/food/grown/chili = 2, - /datum/reagent/consumable/cooking_oil = 20, - /obj/item/food/grown/nettle/death = 2, // closest thing to "grass of death" - /obj/item/food/cheese/wedge = 4, - /obj/item/food/bun = 1 + /obj/item/food/patty/plain = 1, // we have no horse meat sadly + /obj/item/food/grown/chili = 2, + /datum/reagent/consumable/cooking_oil = 20, + /obj/item/food/grown/nettle/death = 2, // closest thing to "grass of death" + /obj/item/food/cheese/wedge = 4, + /obj/item/food/bun = 1 ) - result = /obj/item/food/burger/crazy subcategory = CAT_BURGER diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_cake.dm b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_cake.dm similarity index 94% rename from code/modules/food_and_drinks/recipes/tablecraft/recipes_cake.dm rename to code/datums/components/crafting/crafting_lists/foodstuffs/recipes_cake.dm index 8864c55d32a05..576985051f392 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_cake.dm +++ b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_cake.dm @@ -1,200 +1,198 @@ -// see code/module/crafting/table.dm - -////////////////////////////////////////////////CAKE//////////////////////////////////////////////// +/// Cakes crafting /datum/crafting_recipe/food/carrotcake name = "Carrot cake" + result = /obj/item/food/cake/carrot reqs = list( /obj/item/food/cake/plain = 1, /obj/item/food/grown/carrot = 2 ) - result = /obj/item/food/cake/carrot subcategory = CAT_CAKE /datum/crafting_recipe/food/cheesecake name = "Cheese cake" + result = /obj/item/food/cake/cheese reqs = list( /obj/item/food/cake/plain = 1, /obj/item/food/cheese/wedge = 2 ) - result = /obj/item/food/cake/cheese subcategory = CAT_CAKE /datum/crafting_recipe/food/applecake name = "Apple cake" + result = /obj/item/food/cake/apple reqs = list( /obj/item/food/cake/plain = 1, /obj/item/food/grown/apple = 2 ) - result = /obj/item/food/cake/apple subcategory = CAT_CAKE /datum/crafting_recipe/food/orangecake name = "Orange cake" + result = /obj/item/food/cake/orange reqs = list( /obj/item/food/cake/plain = 1, /obj/item/food/grown/citrus/orange = 2 ) - result = /obj/item/food/cake/orange subcategory = CAT_CAKE /datum/crafting_recipe/food/limecake name = "Lime cake" + result = /obj/item/food/cake/lime reqs = list( /obj/item/food/cake/plain = 1, /obj/item/food/grown/citrus/lime = 2 ) - result = /obj/item/food/cake/lime subcategory = CAT_CAKE /datum/crafting_recipe/food/lemoncake name = "Lemon cake" + result = /obj/item/food/cake/lemon reqs = list( /obj/item/food/cake/plain = 1, /obj/item/food/grown/citrus/lemon = 2 ) - result = /obj/item/food/cake/lemon subcategory = CAT_CAKE /datum/crafting_recipe/food/chocolatecake name = "Chocolate cake" + result = /obj/item/food/cake/chocolate reqs = list( /obj/item/food/cake/plain = 1, /obj/item/food/chocolatebar = 2 ) - result = /obj/item/food/cake/chocolate subcategory = CAT_CAKE /datum/crafting_recipe/food/birthdaycake name = "Birthday cake" + result = /obj/item/food/cake/birthday reqs = list( /obj/item/food/cake/plain = 1, /obj/item/candle = 1, /datum/reagent/consumable/sugar = 5, /datum/reagent/consumable/caramel = 2 ) - result = /obj/item/food/cake/birthday subcategory = CAT_CAKE /datum/crafting_recipe/food/energycake name = "Energy cake" + blacklist = list(/obj/item/food/cake/birthday/energy) reqs = list( /obj/item/food/cake/birthday = 1, /obj/item/melee/transforming/energy/sword = 1, ) - blacklist = list(/obj/item/food/cake/birthday/energy) result = /obj/item/food/cake/birthday/energy subcategory = CAT_CAKE /datum/crafting_recipe/food/braincake name = "Brain cake" + result = /obj/item/food/cake/brain reqs = list( /obj/item/organ/brain = 1, /obj/item/food/cake/plain = 1 ) - result = /obj/item/food/cake/brain subcategory = CAT_CAKE /datum/crafting_recipe/food/slimecake name = "Slime cake" + result = /obj/item/food/cake/slimecake reqs = list( /obj/item/slime_extract = 1, /obj/item/food/cake/plain = 1 ) - result = /obj/item/food/cake/slimecake subcategory = CAT_CAKE /datum/crafting_recipe/food/pumpkinspicecake name = "Pumpkin spice cake" + result = /obj/item/food/cake/pumpkinspice reqs = list( /obj/item/food/cake/plain = 1, /obj/item/food/grown/pumpkin = 2 ) - result = /obj/item/food/cake/pumpkinspice subcategory = CAT_CAKE /datum/crafting_recipe/food/holycake name = "Angel food cake" + result = /obj/item/food/cake/holy_cake reqs = list( /datum/reagent/water/holywater = 15, /obj/item/food/cake/plain = 1 ) - result = /obj/item/food/cake/holy_cake subcategory = CAT_CAKE /datum/crafting_recipe/food/poundcake name = "Pound cake" + result = /obj/item/food/cake/pound_cake reqs = list( /obj/item/food/cake/plain = 4 ) - result = /obj/item/food/cake/pound_cake subcategory = CAT_CAKE /datum/crafting_recipe/food/hardwarecake name = "Hardware cake" + result = /obj/item/food/cake/hardware_cake reqs = list( /obj/item/food/cake/plain = 1, /obj/item/circuitboard = 2, - /datum/reagent/toxin/acid = 5 + /datum/reagent/toxin/acid = 5 //ironic that circuitmaking no longer need acids, but a cake that's a circuit still do ) - result = /obj/item/food/cake/hardware_cake subcategory = CAT_CAKE /datum/crafting_recipe/food/bscccake name = "blackberry and strawberry chocolate cake" + result = /obj/item/food/cake/bscc reqs = list( /obj/item/food/cake/plain = 1, /obj/item/food/chocolatebar = 2, /obj/item/food/grown/berries = 5 ) - result = /obj/item/food/cake/bscc subcategory = CAT_CAKE /datum/crafting_recipe/food/bscvcake name = "blackberry and strawberry vanilla cake" + result = /obj/item/food/cake/bsvc reqs = list( /obj/item/food/cake/plain = 1, /obj/item/food/grown/berries = 5 ) - result = /obj/item/food/cake/bsvc subcategory = CAT_CAKE /datum/crafting_recipe/food/clowncake name = "clown cake" always_available = FALSE + result = /obj/item/food/cake/clown_cake reqs = list( /obj/item/food/cake/plain = 1, /obj/item/food/sundae = 2, /obj/item/food/grown/banana = 5 ) - result = /obj/item/food/cake/clown_cake subcategory = CAT_CAKE /datum/crafting_recipe/food/vanillacake name = "vanilla cake" always_available = FALSE + result = /obj/item/food/cake/vanilla_cake reqs = list( /obj/item/food/cake/plain = 1, /obj/item/food/grown/vanillapod = 2 ) - result = /obj/item/food/cake/vanilla_cake subcategory = CAT_CAKE /datum/crafting_recipe/food/trumpetcake name = "Spaceman's Cake" + result = /obj/item/food/cake/trumpet reqs = list( /obj/item/food/cake/plain = 1, /obj/item/food/grown/flower/trumpet = 2, /datum/reagent/consumable/cream = 5, /datum/reagent/consumable/berryjuice = 5 ) - result = /obj/item/food/cake/trumpet subcategory = CAT_CAKE - /datum/crafting_recipe/food/cak name = "Living cat/cake hybrid" + result = /mob/living/simple_animal/pet/cat/cak reqs = list( /obj/item/organ/brain = 1, /obj/item/organ/heart = 1, @@ -204,16 +202,15 @@ /datum/reagent/consumable/sprinkles = 5, /datum/reagent/teslium = 1 //To shock the whole thing into life ) - result = /mob/living/simple_animal/pet/cat/cak subcategory = CAT_CAKE //Cat! Haha, get it? CAT? GET IT? We get it - Love Felines /datum/crafting_recipe/food/popup_cake name = "Towering pile of cakes" + result = /obj/structure/popout_cake reqs = list( - /obj/item/food/cake/plain = 3, - /datum/reagent/consumable/sugar = 10, - /datum/reagent/consumable/cream = 5, - /obj/item/bikehorn/airhorn = 1 + /obj/item/food/cake/plain = 3, + /datum/reagent/consumable/sugar = 10, + /datum/reagent/consumable/cream = 5, + /obj/item/bikehorn/airhorn = 1 ) - result = /obj/structure/popout_cake subcategory = CAT_CAKE diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_egg.dm b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_egg.dm similarity index 89% rename from code/modules/food_and_drinks/recipes/tablecraft/recipes_egg.dm rename to code/datums/components/crafting/crafting_lists/foodstuffs/recipes_egg.dm index c444f4ee5388b..08a504aad342f 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_egg.dm +++ b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_egg.dm @@ -1,48 +1,47 @@ -// see code/module/crafting/table.dm - -////////////////////////////////////////////////EGG RECIPE's//////////////////////////////////////////////// +/// Egg stuff crafting /datum/crafting_recipe/food/friedegg name = "Fried egg" + result = /obj/item/food/friedegg reqs = list( /datum/reagent/consumable/sodiumchloride = 1, /datum/reagent/consumable/blackpepper = 1, /obj/item/food/egg = 1 ) - result = /obj/item/food/friedegg subcategory = CAT_EGG /datum/crafting_recipe/food/omelette name = "Omelette" + result = /obj/item/food/omelette reqs = list( /obj/item/food/egg = 2, /obj/item/food/cheese/wedge = 2 ) - result = /obj/item/food/omelette subcategory = CAT_EGG /datum/crafting_recipe/food/chocolateegg name = "Chocolate egg" + result = /obj/item/food/chocolateegg reqs = list( /obj/item/food/boiledegg = 1, /obj/item/food/chocolatebar = 1 ) - result = /obj/item/food/chocolateegg subcategory = CAT_EGG /datum/crafting_recipe/food/eggsbenedict name = "Eggs benedict" + result = /obj/item/food/benedict reqs = list( /obj/item/food/friedegg = 1, /obj/item/food/meat/steak = 1, /obj/item/food/breadslice/plain = 1, ) - result = /obj/item/food/benedict subcategory = CAT_EGG /datum/crafting_recipe/food/eggbowl name = "Egg bowl" + result = /obj/item/food/salad/eggbowl reqs = list( /obj/item/reagent_containers/glass/bowl = 1, /obj/item/food/boiledrice = 1, @@ -50,25 +49,24 @@ /obj/item/food/grown/carrot = 1, /obj/item/food/grown/corn = 1 ) - result = /obj/item/food/salad/eggbowl subcategory = CAT_EGG /datum/crafting_recipe/food/wrap name = "Wrap" + result = /obj/item/food/eggwrap reqs = list(/datum/reagent/consumable/soysauce = 10, /obj/item/food/friedegg = 1, /obj/item/food/grown/cabbage = 1, ) - result = /obj/item/food/eggwrap - category = CAT_EGG + subcategory = CAT_EGG /datum/crafting_recipe/food/chawanmushi name = "Chawanmushi" + result = /obj/item/food/chawanmushi reqs = list( /datum/reagent/water = 5, /datum/reagent/consumable/soysauce = 5, /obj/item/food/boiledegg = 2, /obj/item/food/grown/mushroom/chanterelle = 1 ) - result = /obj/item/food/chawanmushi - category = CAT_EGG + subcategory = CAT_EGG diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_frozen.dm b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_frozen.dm similarity index 99% rename from code/modules/food_and_drinks/recipes/tablecraft/recipes_frozen.dm rename to code/datums/components/crafting/crafting_lists/foodstuffs/recipes_frozen.dm index 113e3f3a01588..1d79c9f3e02e3 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_frozen.dm +++ b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_frozen.dm @@ -1,51 +1,50 @@ -///////////////// -//Misc. Frozen.// -///////////////// +/// Misc. foodstuff crafting /datum/crafting_recipe/food/icecreamsandwich name = "Icecream sandwich" + result = /obj/item/food/icecreamsandwich reqs = list( /datum/reagent/consumable/cream = 5, /datum/reagent/consumable/ice = 5, /obj/item/food/icecream = 1 ) - result = /obj/item/food/icecreamsandwich subcategory = CAT_ICE /datum/crafting_recipe/food/strawberryicecreamsandwich name = "Strawberry ice cream sandwich" + result = /obj/item/food/strawberryicecreamsandwich reqs = list( /datum/reagent/consumable/cream = 5, /datum/reagent/consumable/ice = 5, /obj/item/food/grown/berries = 2, ) - result = /obj/item/food/strawberryicecreamsandwich subcategory = CAT_ICE /datum/crafting_recipe/food/spacefreezy name ="Space freezy" + result = /obj/item/food/spacefreezy reqs = list( /datum/reagent/consumable/bluecherryjelly = 5, /datum/reagent/consumable/spacemountainwind = 15, /obj/item/food/icecream = 1 ) - result = /obj/item/food/spacefreezy subcategory = CAT_ICE /datum/crafting_recipe/food/sundae name ="Sundae" + result = /obj/item/food/sundae reqs = list( /datum/reagent/consumable/cream = 5, /obj/item/food/grown/cherries = 1, /obj/item/food/grown/banana = 1, /obj/item/food/icecream = 1 ) - result = /obj/item/food/sundae subcategory = CAT_ICE /datum/crafting_recipe/food/honkdae name ="Honkdae" + result = /obj/item/food/honkdae reqs = list( /datum/reagent/consumable/cream = 5, /obj/item/clothing/mask/gas/clown_hat = 1, @@ -53,112 +52,112 @@ /obj/item/food/grown/banana = 2, /obj/item/food/icecream = 1 ) - result = /obj/item/food/honkdae subcategory = CAT_ICE //////////////////////////SNOW CONES/////////////////////// /datum/crafting_recipe/food/flavorless_sc name = "Flavorless snowcone" + result = /obj/item/food/snowcones reqs = list( /obj/item/reagent_containers/food/drinks/sillycup = 1, /datum/reagent/consumable/ice = 15 ) - result = /obj/item/food/snowcones subcategory = CAT_ICE /datum/crafting_recipe/food/pineapple_sc name = "Pineapple snowcone" + result = /obj/item/food/snowcones/pineapple reqs = list( /obj/item/reagent_containers/food/drinks/sillycup = 1, /datum/reagent/consumable/ice = 15, /datum/reagent/consumable/pineapplejuice = 5 ) - result = /obj/item/food/snowcones/pineapple subcategory = CAT_ICE /datum/crafting_recipe/food/lime_sc name = "Lime snowcone" + result = /obj/item/food/snowcones/lime reqs = list( /obj/item/reagent_containers/food/drinks/sillycup = 1, /datum/reagent/consumable/ice = 15, /datum/reagent/consumable/limejuice = 5 ) - result = /obj/item/food/snowcones/lime subcategory = CAT_ICE /datum/crafting_recipe/food/lemon_sc name = "Lemon snowcone" + result = /obj/item/food/snowcones/lemon reqs = list( /obj/item/reagent_containers/food/drinks/sillycup = 1, /datum/reagent/consumable/ice = 15, /datum/reagent/consumable/lemonjuice = 5 ) - result = /obj/item/food/snowcones/lemon subcategory = CAT_ICE /datum/crafting_recipe/food/apple_sc name = "Apple snowcone" + result = /obj/item/food/snowcones/apple reqs = list( /obj/item/reagent_containers/food/drinks/sillycup = 1, /datum/reagent/consumable/ice = 15, /datum/reagent/consumable/applejuice = 5 ) - result = /obj/item/food/snowcones/apple subcategory = CAT_ICE /datum/crafting_recipe/food/grape_sc name = "Grape snowcone" + result = /obj/item/food/snowcones/grape reqs = list( /obj/item/reagent_containers/food/drinks/sillycup = 1, /datum/reagent/consumable/ice = 15, /datum/reagent/consumable/berryjuice = 5 ) - result = /obj/item/food/snowcones/grape subcategory = CAT_ICE /datum/crafting_recipe/food/orange_sc name = "Orange snowcone" + result = /obj/item/food/snowcones/orange reqs = list( /obj/item/reagent_containers/food/drinks/sillycup = 1, /datum/reagent/consumable/ice = 15, /datum/reagent/consumable/orangejuice = 5 ) - result = /obj/item/food/snowcones/orange subcategory = CAT_ICE /datum/crafting_recipe/food/blue_sc name = "Bluecherry snowcone" + result = /obj/item/food/snowcones/blue reqs = list( /obj/item/reagent_containers/food/drinks/sillycup = 1, /datum/reagent/consumable/ice = 15, /datum/reagent/consumable/bluecherryjelly= 5 ) - result = /obj/item/food/snowcones/blue subcategory = CAT_ICE /datum/crafting_recipe/food/red_sc name = "Cherry snowcone" + result = /obj/item/food/snowcones/red reqs = list( /obj/item/reagent_containers/food/drinks/sillycup = 1, /datum/reagent/consumable/ice = 15, /datum/reagent/consumable/cherryjelly= 5 ) - result = /obj/item/food/snowcones/red subcategory = CAT_ICE /datum/crafting_recipe/food/berry_sc name = "Berry snowcone" + result = /obj/item/food/snowcones/berry reqs = list( /obj/item/reagent_containers/food/drinks/sillycup = 1, /datum/reagent/consumable/ice = 15, /datum/reagent/consumable/berryjuice = 5 ) - result = /obj/item/food/snowcones/berry subcategory = CAT_ICE /datum/crafting_recipe/food/fruitsalad_sc name = "Fruit Salad snowcone" + result = /obj/item/food/snowcones/fruitsalad reqs = list( /obj/item/reagent_containers/food/drinks/sillycup = 1, /datum/reagent/water = 5, @@ -167,75 +166,74 @@ /datum/reagent/consumable/limejuice = 5, /datum/reagent/consumable/lemonjuice = 5 ) - result = /obj/item/food/snowcones/fruitsalad subcategory = CAT_ICE /datum/crafting_recipe/food/mime_sc name = "Mime snowcone" + result = /obj/item/food/snowcones/mime reqs = list( /obj/item/reagent_containers/food/drinks/sillycup = 1, /datum/reagent/consumable/ice = 15, /datum/reagent/consumable/nothing = 5 ) - result = /obj/item/food/snowcones/mime subcategory = CAT_ICE /datum/crafting_recipe/food/clown_sc name = "Clown snowcone" + result = /obj/item/food/snowcones/clown reqs = list( /obj/item/reagent_containers/food/drinks/sillycup = 1, /datum/reagent/consumable/ice = 15, /datum/reagent/consumable/laughter = 5 ) - result = /obj/item/food/snowcones/clown subcategory = CAT_ICE /datum/crafting_recipe/food/soda_sc name = "Space Cola snowcone" + result = /obj/item/food/snowcones/soda reqs = list( /obj/item/reagent_containers/food/drinks/sillycup = 1, /datum/reagent/consumable/ice = 15, /datum/reagent/consumable/space_cola = 5 ) - result = /obj/item/food/snowcones/soda subcategory = CAT_ICE /datum/crafting_recipe/food/spacemountainwind_sc name = "Space Mountain Wind snowcone" + result = /obj/item/food/snowcones/spacemountainwind reqs = list( /obj/item/reagent_containers/food/drinks/sillycup = 1, /datum/reagent/consumable/ice = 15, /datum/reagent/consumable/spacemountainwind = 5 ) - result = /obj/item/food/snowcones/spacemountainwind subcategory = CAT_ICE /datum/crafting_recipe/food/pwrgame_sc name = "Pwrgame snowcone" + result = /obj/item/food/snowcones/pwrgame reqs = list( /obj/item/reagent_containers/food/drinks/sillycup = 1, /datum/reagent/consumable/ice = 15, /datum/reagent/consumable/pwr_game = 15 ) - result = /obj/item/food/snowcones/pwrgame subcategory = CAT_ICE /datum/crafting_recipe/food/honey_sc name = "Honey snowcone" + result = /obj/item/food/snowcones/honey reqs = list( /obj/item/reagent_containers/food/drinks/sillycup = 1, /datum/reagent/consumable/ice = 15, /datum/reagent/consumable/honey = 5 ) - result = /obj/item/food/snowcones/honey subcategory = CAT_ICE /datum/crafting_recipe/food/rainbow_sc name = "Rainbow snowcone" + result = /obj/item/food/snowcones/rainbow reqs = list( /obj/item/reagent_containers/food/drinks/sillycup = 1, /datum/reagent/consumable/ice = 15, /datum/reagent/colorful_reagent = 1 //Harder to make ) - result = /obj/item/food/snowcones/rainbow subcategory = CAT_ICE diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_meat.dm similarity index 95% rename from code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm rename to code/datums/components/crafting/crafting_lists/foodstuffs/recipes_meat.dm index 35bff8f48e67b..d379c06cb1953 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm +++ b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_meat.dm @@ -1,45 +1,45 @@ -// see code/module/crafting/table.dm -////////////////////////////////////////////////KEBABS//////////////////////////////////////////////// +/// Meat stuff crafting /datum/crafting_recipe/food/humankebab name = "Human kebab" + result = /obj/item/food/kebab/human reqs = list( /obj/item/stack/rods = 1, /obj/item/food/meat/steak/plain/human = 2 ) - result = /obj/item/food/kebab/human subcategory = CAT_MEAT /datum/crafting_recipe/food/kebab name = "Kebab" + result = /obj/item/food/kebab/monkey reqs = list( /obj/item/stack/rods = 1, /obj/item/food/meat/steak = 2 ) - result = /obj/item/food/kebab/monkey subcategory = CAT_MEAT /datum/crafting_recipe/food/tofukebab name = "Tofu kebab" + result = /obj/item/food/kebab/tofu reqs = list( /obj/item/stack/rods = 1, /obj/item/food/tofu = 2 ) - result = /obj/item/food/kebab/tofu subcategory = CAT_MEAT /datum/crafting_recipe/food/tailkebab name = "Lizard tail kebab" + result = /obj/item/food/kebab/tail reqs = list( /obj/item/stack/rods = 1, /obj/item/organ/tail/lizard = 1 ) - result = /obj/item/food/kebab/tail subcategory = CAT_MEAT /datum/crafting_recipe/food/fiestaskewer name = "Fiesta Skewer" + result = /obj/item/food/kebab/fiesta reqs = list( /obj/item/stack/rods = 1, /obj/item/food/grown/chili = 1, @@ -47,167 +47,166 @@ /obj/item/food/grown/corn = 1, /obj/item/food/grown/tomato = 1 ) - result = /obj/item/food/kebab/fiesta subcategory = CAT_MEAT ////////////////////////////////////////////////MR SPIDER//////////////////////////////////////////////// +/// Misc. Meats crafting + /datum/crafting_recipe/food/spidereggsham name = "Spider eggs ham" + result = /obj/item/food/spidereggsham reqs = list( /datum/reagent/consumable/sodiumchloride = 1, /obj/item/food/spidereggs = 1, /obj/item/food/meat/cutlet/spider = 2 ) - result = /obj/item/food/spidereggsham subcategory = CAT_MEAT -////////////////////////////////////////////////MISC RECIPE's//////////////////////////////////////////////// - /datum/crafting_recipe/food/cornedbeef name = "Corned beef" + result = /obj/item/food/cornedbeef reqs = list( /datum/reagent/consumable/sodiumchloride = 5, /obj/item/food/meat/steak = 1, /obj/item/food/grown/cabbage = 2 ) - result = /obj/item/food/cornedbeef subcategory = CAT_MEAT /datum/crafting_recipe/food/bearsteak name = "Filet migrawr" + result = /obj/item/food/bearsteak + tools = list(/obj/item/lighter) reqs = list( /datum/reagent/consumable/ethanol/manly_dorf = 5, /obj/item/food/meat/steak/bear = 1, ) - tools = list(/obj/item/lighter) - result = /obj/item/food/bearsteak subcategory = CAT_MEAT /datum/crafting_recipe/food/stewedsoymeat name = "Stewed soymeat" + result = /obj/item/food/stewedsoymeat reqs = list( /obj/item/food/soydope = 2, /obj/item/food/grown/carrot = 1, /obj/item/food/grown/tomato = 1 ) - result = /obj/item/food/stewedsoymeat subcategory = CAT_MEAT /datum/crafting_recipe/food/sausage name = "Sausage" + result = /obj/item/food/raw_sausage reqs = list( /obj/item/food/meatball = 1, /obj/item/food/meat/cutlet = 2 ) - result = /obj/item/food/raw_sausage subcategory = CAT_MEAT /datum/crafting_recipe/food/nugget name = "Chicken nugget" + result = /obj/item/food/nugget reqs = list( /obj/item/food/meat/cutlet = 1 ) - result = /obj/item/food/nugget subcategory = CAT_MEAT /datum/crafting_recipe/food/rawkhinkali name = "Raw Khinkali" + result = /obj/item/food/rawkhinkali reqs = list( /obj/item/food/doughslice = 1, /obj/item/food/grown/garlic = 1, /obj/item/food/meatball = 1 ) - result = /obj/item/food/rawkhinkali subcategory = CAT_MEAT /datum/crafting_recipe/food/meatbun name = "Meat bun" + result = /obj/item/food/meatbun reqs = list( /datum/reagent/consumable/soysauce = 5, /obj/item/food/bun = 1, /obj/item/food/meatball = 1, /obj/item/food/grown/cabbage = 1 ) - result = /obj/item/food/meatbun subcategory = CAT_MEAT /datum/crafting_recipe/food/pigblanket name = "Pig in a Blanket" + result = /obj/item/food/pigblanket reqs = list( /obj/item/food/bun = 1, /obj/item/food/butter = 1, /obj/item/food/meat/cutlet = 1 ) - result = /obj/item/food/pigblanket subcategory = CAT_MEAT /datum/crafting_recipe/food/meatbun name = "Meat bun" + result = /obj/item/food/meatbun reqs = list( /datum/reagent/consumable/soysauce = 5, /obj/item/food/bun = 1, /obj/item/food/meatball = 1, /obj/item/food/grown/cabbage = 1 ) - result = /obj/item/food/meatbun subcategory = CAT_MEAT /datum/crafting_recipe/food/ratkebab name = "Rat Kebab" + result = /obj/item/food/kebab/rat reqs = list( /obj/item/stack/rods = 1, /obj/item/food/deadmouse = 1 ) - result = /obj/item/food/kebab/rat subcategory = CAT_MEAT /datum/crafting_recipe/food/doubleratkebab name = "Double Rat Kebab" + result = /obj/item/food/kebab/rat/double reqs = list( /obj/item/stack/rods = 1, /obj/item/food/deadmouse = 2 ) - result = /obj/item/food/kebab/rat/double subcategory = CAT_MEAT /datum/crafting_recipe/food/ricepork name = "Rice and Pork" + result = /obj/item/food/salad/ricepork reqs = list( /obj/item/reagent_containers/glass/bowl = 1, /obj/item/food/boiledrice = 1, /obj/item/food/meat/cutlet = 2 ) - result = /obj/item/food/salad/ricepork subcategory = CAT_MEAT /datum/crafting_recipe/food/ashsteak name = "Ashflaked Steak" + result = /obj/item/food/meat/steak/ashflake reqs = list( /obj/item/food/meat/steak/goliath = 1, /obj/item/food/grown/ash_flora/cactus_fruit = 1, /obj/item/food/grown/ash_flora/mushroom_leaf = 1 ) - result = /obj/item/food/meat/steak/ashflake subcategory = CAT_MEAT /datum/crafting_recipe/food/ribs name = "BBQ Ribs" + result = /obj/item/food/bbqribs reqs = list( /datum/reagent/consumable/bbqsauce = 5, /obj/item/food/meat/steak/plain = 2, /obj/item/stack/rods = 2 ) - result = /obj/item/food/bbqribs subcategory = CAT_MEAT /datum/crafting_recipe/food/meatclown name = "Meat Clown" + result = /obj/item/food/meatclown reqs = list( /obj/item/food/meat/steak/plain = 1, /obj/item/food/grown/banana = 1 ) - result = /obj/item/food/meatclown subcategory = CAT_MEAT diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_mexican.dm b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_mexican.dm similarity index 97% rename from code/modules/food_and_drinks/recipes/tablecraft/recipes_mexican.dm rename to code/datums/components/crafting/crafting_lists/foodstuffs/recipes_mexican.dm index 0e6ea744e793f..02d3ae6819f10 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_mexican.dm +++ b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_mexican.dm @@ -1,114 +1,113 @@ -// see code/module/crafting/table.dm -// MEXICAN +/// Mexican Foodstuff crafting /datum/crafting_recipe/food/burrito name ="Burrito" + result = /obj/item/food/burrito reqs = list( /obj/item/food/tortilla = 1, /obj/item/food/grown/soybeans = 2 ) - result = /obj/item/food/burrito subcategory = CAT_MEXICAN /datum/crafting_recipe/food/cheesyburrito name ="Cheesy burrito" + result = /obj/item/food/cheesyburrito reqs = list( /obj/item/food/cheese/wedge = 2, /obj/item/food/tortilla = 1, /obj/item/food/grown/soybeans = 1 ) - result = /obj/item/food/cheesyburrito subcategory = CAT_MEXICAN /datum/crafting_recipe/food/carneburrito name ="Carne de asada burrito" + result = /obj/item/food/carneburrito reqs = list( /obj/item/food/tortilla = 1, /obj/item/food/meat/cutlet = 2, /obj/item/food/grown/soybeans = 1 ) - result = /obj/item/food/carneburrito subcategory = CAT_MEXICAN /datum/crafting_recipe/food/fuegoburrito name ="Fuego plasma burrito" + result = /obj/item/food/fuegoburrito reqs = list( /obj/item/food/tortilla = 1, /obj/item/food/grown/ghost_chili = 2, /obj/item/food/grown/soybeans = 1 ) - result = /obj/item/food/fuegoburrito subcategory = CAT_MEXICAN /datum/crafting_recipe/food/nachos name ="Nachos" + result = /obj/item/food/nachos reqs = list( /datum/reagent/consumable/sodiumchloride = 1, /obj/item/food/tortilla = 1 ) - result = /obj/item/food/nachos subcategory = CAT_MEXICAN /datum/crafting_recipe/food/cheesynachos name ="Cheesy nachos" + result = /obj/item/food/cheesynachos reqs = list( /datum/reagent/consumable/sodiumchloride = 1, /obj/item/food/cheese/wedge = 1, /obj/item/food/tortilla = 1 ) - result = /obj/item/food/cheesynachos subcategory = CAT_MEXICAN /datum/crafting_recipe/food/cubannachos name ="Cuban nachos" + result = /obj/item/food/cubannachos reqs = list( /datum/reagent/consumable/ketchup = 5, /obj/item/food/grown/chili = 2, /obj/item/food/tortilla = 1 ) - result = /obj/item/food/cubannachos subcategory = CAT_MEXICAN /datum/crafting_recipe/food/taco name ="Classic Taco" + result = /obj/item/food/taco reqs = list( /obj/item/food/tortilla = 1, /obj/item/food/cheese/wedge = 1, /obj/item/food/meat/cutlet = 1, /obj/item/food/grown/cabbage = 1, ) - result = /obj/item/food/taco subcategory = CAT_MEXICAN /datum/crafting_recipe/food/tacoplain name ="Plain Taco" + result = /obj/item/food/taco/plain reqs = list( /obj/item/food/tortilla = 1, /obj/item/food/cheese/wedge = 1, /obj/item/food/meat/cutlet = 1, ) - result = /obj/item/food/taco/plain subcategory = CAT_MEXICAN /datum/crafting_recipe/food/enchiladas name = "Enchiladas" + result = /obj/item/food/enchiladas reqs = list( /obj/item/food/meat/cutlet = 2, /obj/item/food/grown/chili = 2, /obj/item/food/tortilla = 2 ) - result = /obj/item/food/enchiladas subcategory = CAT_MEAT /datum/crafting_recipe/food/stuffedlegion name = "Stuffed legion" - time = 40 + time = 4 SECONDS + result = /obj/item/food/stuffedlegion reqs = list( /obj/item/food/meat/steak/goliath = 1, /obj/item/organ/regenerative_core/legion = 1, /datum/reagent/consumable/ketchup = 2, /datum/reagent/consumable/capsaicin = 2 ) - result = /obj/item/food/stuffedlegion subcategory = CAT_MEXICAN diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_misc.dm similarity index 78% rename from code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm rename to code/datums/components/crafting/crafting_lists/foodstuffs/recipes_misc.dm index 65ee50cfaaaf6..5953785747886 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm +++ b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_misc.dm @@ -1,115 +1,114 @@ -// see code/module/crafting/table.dm - -// MISC +/// Misc. Foodstuff crafting /datum/crafting_recipe/food/candiedapple name = "Candied apple" + result = /obj/item/food/candiedapple reqs = list( /datum/reagent/consumable/caramel = 5, /obj/item/food/grown/apple = 1 ) - result = /obj/item/food/candiedapple subcategory = CAT_MISCFOOD /datum/crafting_recipe/food/spiderlollipop name = "Spider Lollipop" + result = /obj/item/food/spiderlollipop reqs = list(/obj/item/stack/rods = 1, /datum/reagent/consumable/sugar = 5, /datum/reagent/water = 5, /obj/item/food/spiderling = 1 ) - result = /obj/item/food/spiderlollipop subcategory = CAT_MISCFOOD /datum/crafting_recipe/food/chococoin name = "Choco coin" + result = /obj/item/food/chococoin reqs = list( /obj/item/coin = 1, /obj/item/food/chocolatebar = 1, ) - result = /obj/item/food/chococoin subcategory = CAT_MISCFOOD /datum/crafting_recipe/food/fudgedice name = "Fudge dice" + result = /obj/item/food/fudgedice reqs = list( /obj/item/dice = 1, /obj/item/food/chocolatebar = 1, ) - result = /obj/item/food/fudgedice subcategory = CAT_MISCFOOD /datum/crafting_recipe/food/chocoorange name = "Choco orange" + result = /obj/item/food/chocoorange reqs = list( /obj/item/food/grown/citrus/orange = 1, /obj/item/food/chocolatebar = 1, ) - result = /obj/item/food/chocoorange subcategory = CAT_MISCFOOD /datum/crafting_recipe/food/loaded_baked_potato name = "Loaded baked potato" + result = /obj/item/food/loaded_baked_potato reqs = list( /obj/item/food/grown/potato = 1, /obj/item/food/cheese/wedge = 1, /obj/item/food/meat/bacon = 1, /obj/item/food/grown/cabbage = 1, ) - result = /obj/item/food/loaded_baked_potato - category = CAT_MISCFOOD + subcategory = CAT_MISCFOOD /datum/crafting_recipe/food/cheesyfries name = "Cheesy fries" + result = /obj/item/food/cheesyfries reqs = list( /obj/item/food/fries = 1, /obj/item/food/cheese/wedge = 1 ) - result = /obj/item/food/cheesyfries subcategory = CAT_MISCFOOD /datum/crafting_recipe/food/beans name = "Beans" - time = 40 + result = /obj/item/food/canned/beans + time = 4 SECONDS reqs = list(/datum/reagent/consumable/ketchup = 5, /obj/item/food/grown/soybeans = 2 ) - result = /obj/item/food/canned/beans subcategory = CAT_MISCFOOD /datum/crafting_recipe/food/eggplantparm name ="Eggplant parmigiana" + result = /obj/item/food/eggplantparm reqs = list( /obj/item/food/cheese/wedge = 2, /obj/item/food/grown/eggplant = 1 ) - result = /obj/item/food/eggplantparm subcategory = CAT_MISCFOOD /datum/crafting_recipe/food/melonkeg name ="Melon keg" + result = /obj/item/food/melonkeg reqs = list( /datum/reagent/consumable/ethanol/vodka = 25, /obj/item/food/grown/holymelon = 1, /obj/item/reagent_containers/food/drinks/bottle/vodka = 1 ) parts = list(/obj/item/reagent_containers/food/drinks/bottle/vodka = 1) - result = /obj/item/food/melonkeg subcategory = CAT_MISCFOOD /datum/crafting_recipe/food/honeybar name = "Honey nut bar" + result = /obj/item/food/honeybar reqs = list( /obj/item/food/grown/oat = 1, /datum/reagent/consumable/honey = 5 ) - result = /obj/item/food/honeybar subcategory = CAT_MISCFOOD /datum/crafting_recipe/food/powercrepe name = "Powercrepe" - time = 40 + result = /obj/item/food/powercrepe + time = 4 SECONDS reqs = list( /obj/item/food/flatdough = 1, /datum/reagent/consumable/milk = 1, @@ -117,31 +116,31 @@ /obj/item/stock_parts/cell/super =1, /obj/item/melee/sabre = 1 ) - result = /obj/item/food/powercrepe subcategory = CAT_MISCFOOD /datum/crafting_recipe/food/branrequests name = "Bran Requests Cereal" + result = /obj/item/food/branrequests reqs = list( /obj/item/food/grown/wheat = 1, /obj/item/food/no_raisin = 1, ) - result = /obj/item/food/branrequests subcategory = CAT_MISCFOOD /datum/crafting_recipe/food/ricepudding name = "Rice pudding" + result = /obj/item/food/salad/ricepudding reqs = list( /obj/item/reagent_containers/glass/bowl = 1, /datum/reagent/consumable/milk = 5, /datum/reagent/consumable/sugar = 5, /obj/item/food/boiledrice = 1 ) - result = /obj/item/food/salad/ricepudding subcategory = CAT_MISCFOOD /datum/crafting_recipe/food/butterbear //ITS ALIVEEEEEE! name = "Living bear/butter hybrid" + result = /mob/living/simple_animal/hostile/bear/butter reqs = list( /obj/item/organ/brain = 1, /obj/item/organ/heart = 1, @@ -150,39 +149,88 @@ /datum/reagent/blood = 50, /datum/reagent/teslium = 1 //To shock the whole thing into life ) - result = /mob/living/simple_animal/hostile/bear/butter subcategory = CAT_MISCFOOD /datum/crafting_recipe/food/crab_rangoon name = "Crab Rangoon" + result = /obj/item/food/crab_rangoon reqs = list( /obj/item/food/doughslice = 1, /datum/reagent/consumable/cream = 5, /obj/item/food/cheese/wedge = 1, /obj/item/food/meat/rawcrab = 1 ) - result = /obj/item/food/crab_rangoon subcategory = CAT_MISCFOOD /datum/crafting_recipe/food/pingles name = "Pingles" + result = /obj/item/food/pingles reqs = list( /obj/item/c_tube = 1, /obj/item/food/grown/potato/wedges = 1, /obj/item/food/onion_slice = 1, /datum/reagent/consumable/cream = 10 ) - result = /obj/item/food/pingles subcategory = CAT_MISCFOOD /datum/crafting_recipe/food/swirl_lollipop name = "swirl lollipop" + result = /obj/item/food/swirl_lollipop reqs = list( /datum/reagent/consumable/sugar = 5, /datum/reagent/consumable/caramel = 5, /datum/reagent/drug/happiness = 5, ) - result = /obj/item/food/swirl_lollipop + subcategory = CAT_MISCFOOD + +///Easter foods crafting + +/datum/crafting_recipe/food/hotcrossbun + name = "Hot-Cross Bun" + result = /obj/item/food/hotcrossbun + reqs = list( + /obj/item/food/bread/plain = 1, + /datum/reagent/consumable/sugar = 1 + ) + subcategory = CAT_MISCFOOD + +/datum/crafting_recipe/food/briochecake + name = "Brioche cake" + result = /obj/item/food/cake/brioche + reqs = list( + /obj/item/food/cake/plain = 1, + /datum/reagent/consumable/sugar = 2 + ) + subcategory = CAT_MISCFOOD + +/datum/crafting_recipe/food/scotchegg + name = "Scotch egg" + result = /obj/item/food/scotchegg + reqs = list( + /datum/reagent/consumable/sodiumchloride = 1, + /datum/reagent/consumable/blackpepper = 1, + /obj/item/food/boiledegg = 1, + /obj/item/food/meatball = 1 + ) + subcategory = CAT_MISCFOOD + +/datum/crafting_recipe/food/mammi + name = "Mammi" + result = /obj/item/food/soup/mammi + reqs = list( + /obj/item/food/bread/plain = 1, + /obj/item/food/chocolatebar = 1, + /datum/reagent/consumable/milk = 5 + ) + subcategory = CAT_MISCFOOD + +/datum/crafting_recipe/food/chocolatebunny + name = "Chocolate bunny" + result = /obj/item/food/chocolatebunny + reqs = list( + /datum/reagent/consumable/sugar = 2, + /obj/item/food/chocolatebar = 1 + ) subcategory = CAT_MISCFOOD /datum/crafting_recipe/food/onigiri diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_pastry.dm similarity index 91% rename from code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm rename to code/datums/components/crafting/crafting_lists/foodstuffs/recipes_pastry.dm index b5ef9cec55b4c..86c088cd2225d 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm +++ b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_pastry.dm @@ -1,574 +1,547 @@ -// see code/module/crafting/table.dm - -////////////////////////////////////////////////DONUTS//////////////////////////////////////////////// - +/// Pastry crafting +/// Donuts Crafting /datum/crafting_recipe/food/donut - time = 15 name = "Donut" + result = /obj/item/food/donut/plain + time = 1.5 SECONDS reqs = list( /datum/reagent/consumable/sugar = 1, /obj/item/food/pastrybase = 1 ) - result = /obj/item/food/donut/plain subcategory = CAT_PASTRY - /datum/crafting_recipe/food/donut/chaos name = "Chaos donut" + result = /obj/item/food/donut/chaos reqs = list( /datum/reagent/consumable/frostoil = 5, /datum/reagent/consumable/capsaicin = 5, /obj/item/food/pastrybase = 1 ) - result = /obj/item/food/donut/chaos /datum/crafting_recipe/food/donut/meat - time = 15 name = "Meat donut" + result = /obj/item/food/donut/meat reqs = list( /obj/item/food/meat/rawcutlet = 1, /obj/item/food/pastrybase = 1 ) - result = /obj/item/food/donut/meat /datum/crafting_recipe/food/donut/jelly name = "Jelly donut" + result = /obj/item/food/donut/jelly/plain reqs = list( /datum/reagent/consumable/berryjuice = 5, /obj/item/food/pastrybase = 1 ) - result = /obj/item/food/donut/jelly/plain /datum/crafting_recipe/food/donut/slimejelly name = "Slime jelly donut" + result = /obj/item/food/donut/jelly/slimejelly/plain reqs = list( /datum/reagent/toxin/slimejelly = 5, /obj/item/food/pastrybase = 1 ) - result = /obj/item/food/donut/jelly/slimejelly/plain /datum/crafting_recipe/food/donut/berry name = "Berry Donut" + result = /obj/item/food/donut/berry reqs = list( /datum/reagent/consumable/berryjuice = 3, /obj/item/food/donut/plain = 1 ) - result = /obj/item/food/donut/berry /datum/crafting_recipe/food/donut/trumpet name = "Spaceman's Donut" + result = /obj/item/food/donut/trumpet reqs = list( /datum/reagent/medicine/polypyr = 3, /obj/item/food/donut/plain = 1 ) - result = /obj/item/food/donut/trumpet - /datum/crafting_recipe/food/donut/apple name = "Apple Donut" + result = /obj/item/food/donut/apple reqs = list( /datum/reagent/consumable/applejuice = 3, /obj/item/food/donut/plain = 1 ) - result = /obj/item/food/donut/apple /datum/crafting_recipe/food/donut/caramel name = "Caramel Donut" + result = /obj/item/food/donut/caramel reqs = list( /datum/reagent/consumable/caramel = 3, /obj/item/food/donut/plain = 1 ) - result = /obj/item/food/donut/caramel /datum/crafting_recipe/food/donut/choco name = "Chocolate Donut" + result = /obj/item/food/donut/choco reqs = list( /obj/item/food/chocolatebar = 1, /obj/item/food/donut/plain = 1 ) - result = /obj/item/food/donut/choco /datum/crafting_recipe/food/donut/blumpkin name = "Blumpkin Donut" + result = /obj/item/food/donut/blumpkin reqs = list( /datum/reagent/consumable/blumpkinjuice = 3, /obj/item/food/donut/plain = 1 ) - result = /obj/item/food/donut/blumpkin /datum/crafting_recipe/food/donut/bungo name = "Bungo Donut" + result = /obj/item/food/donut/bungo reqs = list( /datum/reagent/consumable/bungojuice = 3, /obj/item/food/donut/plain = 1 ) - result = /obj/item/food/donut/bungo /datum/crafting_recipe/food/donut/matcha name = "Matcha Donut" + result = /obj/item/food/donut/matcha reqs = list( /datum/reagent/toxin/teapowder = 3, /obj/item/food/donut/plain = 1 ) - result = /obj/item/food/donut/matcha -////////////////////////////////////////////////////JELLY DONUTS/////////////////////////////////////////////////////// + ///Jelly Donuts Crafting /datum/crafting_recipe/food/donut/jelly/berry name = "Berry Jelly Donut" + result = /obj/item/food/donut/jelly/berry reqs = list( /datum/reagent/consumable/berryjuice = 3, /obj/item/food/donut/jelly/plain = 1 ) - result = /obj/item/food/donut/jelly/berry /datum/crafting_recipe/food/donut/jelly/trumpet name = "Spaceman's Jelly Donut" + result = /obj/item/food/donut/jelly/trumpet reqs = list( /datum/reagent/medicine/polypyr = 3, /obj/item/food/donut/jelly/plain = 1 ) - result = /obj/item/food/donut/jelly/trumpet - /datum/crafting_recipe/food/donut/jelly/apple name = "Apple Jelly Donut" + result = /obj/item/food/donut/jelly/apple reqs = list( /datum/reagent/consumable/applejuice = 3, /obj/item/food/donut/jelly/plain = 1 ) - result = /obj/item/food/donut/jelly/apple /datum/crafting_recipe/food/donut/jelly/caramel name = "Caramel Jelly Donut" + result = /obj/item/food/donut/jelly/caramel reqs = list( /datum/reagent/consumable/caramel = 3, /obj/item/food/donut/jelly/plain = 1 ) - result = /obj/item/food/donut/jelly/caramel /datum/crafting_recipe/food/donut/jelly/choco name = "Chocolate Jelly Donut" + result = /obj/item/food/donut/jelly/choco reqs = list( /obj/item/food/chocolatebar = 1, /obj/item/food/donut/jelly/plain = 1 ) - result = /obj/item/food/donut/jelly/choco /datum/crafting_recipe/food/donut/jelly/blumpkin name = "Blumpkin Jelly Donut" + result = /obj/item/food/donut/jelly/blumpkin reqs = list( /datum/reagent/consumable/blumpkinjuice = 3, /obj/item/food/donut/jelly/plain = 1 ) - result = /obj/item/food/donut/jelly/blumpkin /datum/crafting_recipe/food/donut/jelly/bungo name = "Bungo Jelly Donut" + result = /obj/item/food/donut/jelly/bungo reqs = list( /datum/reagent/consumable/bungojuice = 3, /obj/item/food/donut/jelly/plain = 1 ) - result = /obj/item/food/donut/jelly/bungo /datum/crafting_recipe/food/donut/jelly/matcha name = "Matcha Jelly Donut" + result = /obj/item/food/donut/jelly/matcha reqs = list( /datum/reagent/toxin/teapowder = 3, /obj/item/food/donut/jelly/plain = 1 ) - result = /obj/item/food/donut/jelly/matcha -////////////////////////////////////////////////////SLIME DONUTS/////////////////////////////////////////////////////// +///Slime Donuts Crafting /datum/crafting_recipe/food/donut/slimejelly/berry name = "Berry Slime Donut" + result = /obj/item/food/donut/jelly/slimejelly/berry reqs = list( /datum/reagent/consumable/berryjuice = 3, /obj/item/food/donut/jelly/slimejelly/plain = 1 ) - result = /obj/item/food/donut/jelly/slimejelly/berry /datum/crafting_recipe/food/donut/slimejelly/trumpet name = "Spaceman's Slime Donut" + result = /obj/item/food/donut/jelly/slimejelly/trumpet reqs = list( /datum/reagent/medicine/polypyr = 3, /obj/item/food/donut/jelly/slimejelly/plain = 1 ) - result = /obj/item/food/donut/jelly/slimejelly/trumpet - /datum/crafting_recipe/food/donut/slimejelly/apple name = "Apple Slime Donut" + result = /obj/item/food/donut/jelly/slimejelly/apple reqs = list( /datum/reagent/consumable/applejuice = 3, /obj/item/food/donut/jelly/slimejelly/plain = 1 ) - result = /obj/item/food/donut/jelly/slimejelly/apple /datum/crafting_recipe/food/donut/slimejelly/caramel name = "Caramel Slime Donut" + result = /obj/item/food/donut/jelly/slimejelly/caramel reqs = list( /datum/reagent/consumable/caramel = 3, /obj/item/food/donut/jelly/slimejelly/plain = 1 ) - result = /obj/item/food/donut/jelly/slimejelly/caramel /datum/crafting_recipe/food/donut/slimejelly/choco name = "Chocolate Slime Donut" + result = /obj/item/food/donut/jelly/slimejelly/choco reqs = list( /obj/item/food/chocolatebar = 1, /obj/item/food/donut/jelly/slimejelly/plain = 1 ) - result = /obj/item/food/donut/jelly/slimejelly/choco /datum/crafting_recipe/food/donut/slimejelly/blumpkin name = "Blumpkin Slime Donut" + result = /obj/item/food/donut/jelly/slimejelly/blumpkin reqs = list( /datum/reagent/consumable/blumpkinjuice = 3, /obj/item/food/donut/jelly/slimejelly/plain = 1 ) - result = /obj/item/food/donut/jelly/slimejelly/blumpkin /datum/crafting_recipe/food/donut/slimejelly/bungo name = "Bungo Slime Donut" + result = /obj/item/food/donut/jelly/slimejelly/bungo reqs = list( /datum/reagent/consumable/bungojuice = 3, /obj/item/food/donut/jelly/slimejelly/plain = 1 ) - result = /obj/item/food/donut/jelly/slimejelly/bungo /datum/crafting_recipe/food/donut/slimejelly/matcha name = "Matcha Slime Donut" + result = /obj/item/food/donut/jelly/slimejelly/matcha reqs = list( /datum/reagent/toxin/teapowder = 3, /obj/item/food/donut/jelly/slimejelly/plain = 1 ) - result = /obj/item/food/donut/jelly/slimejelly/matcha - -////////////////////////////////////////////////WAFFLES AND PANCAKES//////////////////////////////////////////////// /datum/crafting_recipe/food/waffles - time = 15 name = "Waffles" + result = /obj/item/food/waffles + time = 1.5 SECONDS reqs = list( /obj/item/food/pastrybase = 2 ) - result = /obj/item/food/waffles subcategory = CAT_PASTRY - /datum/crafting_recipe/food/soylenviridians name = "Soylent viridians" + result = /obj/item/food/soylenviridians reqs = list( /obj/item/food/pastrybase = 2, /obj/item/food/grown/soybeans = 1 ) - result = /obj/item/food/soylenviridians subcategory = CAT_PASTRY /datum/crafting_recipe/food/soylentgreen name = "Soylent green" + result = /obj/item/food/soylentgreen reqs = list( /obj/item/food/pastrybase = 2, /obj/item/food/meat/slab/human = 2 ) - result = /obj/item/food/soylentgreen subcategory = CAT_PASTRY - /datum/crafting_recipe/food/rofflewaffles name = "Roffle waffles" + result = /obj/item/food/rofflewaffles reqs = list( /datum/reagent/drug/mushroomhallucinogen = 5, /obj/item/food/pastrybase = 2 ) - result = /obj/item/food/rofflewaffles subcategory = CAT_PASTRY /datum/crafting_recipe/food/pancakes name = "Pancake" + result = /obj/item/food/pancakes reqs = list( /obj/item/food/pastrybase = 1 ) - result = /obj/item/food/pancakes subcategory = CAT_PASTRY /datum/crafting_recipe/food/bbpancakes name = "Blueberry pancake" + result = /obj/item/food/pancakes/blueberry reqs = list( /obj/item/food/pastrybase = 1, /obj/item/food/grown/berries = 1 ) - result = /obj/item/food/pancakes/blueberry subcategory = CAT_PASTRY /datum/crafting_recipe/food/ccpancakes name = "Chocolate chip pancake" + result = /obj/item/food/pancakes/chocolatechip reqs = list( /obj/item/food/pastrybase = 1, /obj/item/food/chocolatebar = 1 ) - result = /obj/item/food/pancakes/chocolatechip subcategory = CAT_PASTRY - -////////////////////////////////////////////////DONKPOCCKETS//////////////////////////////////////////////// - /datum/crafting_recipe/food/donkpocket - time = 15 name = "Donk-pocket" + result = /obj/item/food/donkpocket + time = 1.5 SECONDS reqs = list( /obj/item/food/pastrybase = 1, /obj/item/food/meatball = 1 ) - result = /obj/item/food/donkpocket subcategory = CAT_PASTRY /datum/crafting_recipe/food/donkpocket/dankpocket - time = 15 name = "Dank-pocket" + result = /obj/item/food/donkpocket/dankpocket reqs = list( /obj/item/food/pastrybase = 1, /obj/item/food/grown/cannabis = 1 ) - result = /obj/item/food/donkpocket/dankpocket subcategory = CAT_PASTRY /datum/crafting_recipe/food/donkpocket/spicy - time = 15 name = "Spicy-pocket" + result = /obj/item/food/donkpocket/spicy reqs = list( /obj/item/food/pastrybase = 1, /obj/item/food/grown/chili = 1 ) - result = /obj/item/food/donkpocket/spicy subcategory = CAT_PASTRY /datum/crafting_recipe/food/donkpocket/teriyaki - time = 15 name = "Teriyaki-pocket" + result = /obj/item/food/donkpocket/teriyaki reqs = list( /obj/item/food/pastrybase = 1, /datum/reagent/consumable/soysauce = 3 ) - result = /obj/item/food/donkpocket/teriyaki subcategory = CAT_PASTRY /datum/crafting_recipe/food/donkpocket/pizza - time = 15 name = "Pizza-pocket" + result = /obj/item/food/donkpocket/pizza reqs = list( /obj/item/food/pastrybase = 1, /obj/item/food/grown/tomato = 1 ) - result = /obj/item/food/donkpocket/pizza subcategory = CAT_PASTRY /datum/crafting_recipe/food/donkpocket/honk - time = 15 name = "Honk-Pocket" + result = /obj/item/food/donkpocket/honk reqs = list( /obj/item/food/pastrybase = 1, /obj/item/food/grown/banana = 1, /datum/reagent/consumable/sugar = 3 ) - result = /obj/item/food/donkpocket/honk subcategory = CAT_PASTRY /datum/crafting_recipe/food/donkpocket/berry - time = 15 name = "Berry-pocket" + result = /obj/item/food/donkpocket/berry reqs = list( /obj/item/food/pastrybase = 1, /obj/item/food/grown/berries = 1 ) - result = /obj/item/food/donkpocket/berry subcategory = CAT_PASTRY -/datum/crafting_recipe/food/donkpocket/gondola - time = 15 +/datum/crafting_recipe/food/donkpocket/gondola //PERKELE :DDD name = "Gondola-pocket" + result = /obj/item/food/donkpocket/gondola reqs = list( /obj/item/food/pastrybase = 1, /datum/reagent/tranquility = 5 ) - result = /obj/item/food/donkpocket/gondola subcategory = CAT_PASTRY -////////////////////////////////////////////////MUFFINS//////////////////////////////////////////////// - /datum/crafting_recipe/food/muffin - time = 15 name = "Muffin" + result = /obj/item/food/muffin + time = 1.5 SECONDS reqs = list( /datum/reagent/consumable/milk = 5, /obj/item/food/pastrybase = 1 ) - result = /obj/item/food/muffin subcategory = CAT_PASTRY -/datum/crafting_recipe/food/berrymuffin +/datum/crafting_recipe/food/muffin/berrymuffin name = "Berry muffin" + result = /obj/item/food/muffin/berry reqs = list( /datum/reagent/consumable/milk = 5, /obj/item/food/pastrybase = 1, /obj/item/food/grown/berries = 1 ) - result = /obj/item/food/muffin/berry subcategory = CAT_PASTRY -/datum/crafting_recipe/food/booberrymuffin +/datum/crafting_recipe/food/muffin/booberrymuffin name = "Booberry muffin" + result = /obj/item/food/muffin/booberry reqs = list( /datum/reagent/consumable/milk = 5, /obj/item/food/pastrybase = 1, /obj/item/food/grown/berries = 1, /obj/item/ectoplasm = 1 ) - result = /obj/item/food/muffin/booberry subcategory = CAT_PASTRY -/datum/crafting_recipe/food/moffin +/datum/crafting_recipe/food/muffin/moffin name = "Moffin" + result = /obj/item/food/muffin/moffin reqs = list( /datum/reagent/consumable/milk = 5, /obj/item/food/pastrybase = 1, /obj/item/stack/sheet/cotton/cloth = 1, ) - result = /obj/item/food/muffin/moffin subcategory = CAT_PASTRY -////////////////////////////////////////////OTHER//////////////////////////////////////////// - /datum/crafting_recipe/food/khachapuri name = "Khachapuri" + result = /obj/item/food/khachapuri reqs = list( /datum/reagent/consumable/eggyolk = 5, /obj/item/food/cheese/wedge = 1, /obj/item/food/bread/plain = 1 ) - result = /obj/item/food/khachapuri subcategory = CAT_PASTRY /datum/crafting_recipe/food/sugarcookie - time = 15 name = "Sugar cookie" + result = /obj/item/food/cookie/sugar + time = 1.5 SECONDS reqs = list( /datum/reagent/consumable/sugar = 5, /obj/item/food/pastrybase = 1 ) - result = /obj/item/food/cookie/sugar subcategory = CAT_PASTRY /datum/crafting_recipe/food/fortunecookie - time = 15 name = "Fortune cookie" + result = /obj/item/food/fortunecookie + time = 1.5 SECONDS reqs = list( /obj/item/food/pastrybase = 1, /obj/item/paper = 1 ) - parts = list( - /obj/item/paper = 1 - ) - result = /obj/item/food/fortunecookie + parts = list(/obj/item/paper = 1) subcategory = CAT_PASTRY /datum/crafting_recipe/food/poppypretzel - time = 15 name = "Poppy pretzel" + result = /obj/item/food/poppypretzel + time = 1.5 SECONDS reqs = list( /obj/item/seeds/flower/poppy = 1, /obj/item/food/pastrybase = 1 ) - result = /obj/item/food/poppypretzel subcategory = CAT_PASTRY /datum/crafting_recipe/food/plumphelmetbiscuit - time = 15 name = "Plumphelmet biscuit" + result = /obj/item/food/plumphelmetbiscuit + time = 1.5 SECONDS reqs = list( /obj/item/food/pastrybase = 1, /obj/item/food/grown/mushroom/plumphelmet = 1 ) - result = /obj/item/food/plumphelmetbiscuit subcategory = CAT_PASTRY /datum/crafting_recipe/food/cracker - time = 15 name = "Cracker" + result = /obj/item/food/cracker + time = 1.5 SECONDS reqs = list( /datum/reagent/consumable/sodiumchloride = 1, /obj/item/food/pastrybase = 1, ) - result = /obj/item/food/cracker subcategory = CAT_PASTRY /datum/crafting_recipe/food/chococornet name = "Choco cornet" + result = /obj/item/food/chococornet reqs = list( /datum/reagent/consumable/sodiumchloride = 1, /obj/item/food/pastrybase = 1, /obj/item/food/chocolatebar = 1 ) - result = /obj/item/food/chococornet subcategory = CAT_PASTRY /datum/crafting_recipe/food/oatmealcookie name = "Oatmeal cookie" + result = /obj/item/food/cookie/oatmeal reqs = list( /obj/item/food/pastrybase = 1, /obj/item/food/grown/oat = 1 ) - result = /obj/item/food/cookie/oatmeal subcategory = CAT_PASTRY /datum/crafting_recipe/food/raisincookie name = "Raisin cookie" + result = /obj/item/food/cookie/raisin reqs = list( /obj/item/food/no_raisin = 1, /obj/item/food/pastrybase = 1, /obj/item/food/grown/oat = 1 ) - result = /obj/item/food/cookie/raisin subcategory = CAT_PASTRY /datum/crafting_recipe/food/cherrycupcake name = "Cherry cupcake" + result = /obj/item/food/cherrycupcake reqs = list( /obj/item/food/pastrybase = 1, /obj/item/food/grown/cherries = 1 ) - result = /obj/item/food/cherrycupcake subcategory = CAT_PASTRY /datum/crafting_recipe/food/bluecherrycupcake name = "Blue cherry cupcake" + result = /obj/item/food/cherrycupcake/blue reqs = list( /obj/item/food/pastrybase = 1, /obj/item/food/grown/bluecherries = 1 ) - result = /obj/item/food/cherrycupcake/blue subcategory = CAT_PASTRY /datum/crafting_recipe/food/honeybun name = "Honey bun" + result = /obj/item/food/honeybun reqs = list( /obj/item/food/pastrybase = 1, /datum/reagent/consumable/honey = 5 ) - result = /obj/item/food/honeybun subcategory = CAT_PASTRY /datum/crafting_recipe/food/ravtart name = "Rav'tart" + result = /obj/item/food/ravtart reqs = list( /obj/item/food/pastrybase = 1, /obj/item/stack/sheet/bronze = 1, /obj/item/food/grown/berries = 2, /obj/item/food/grown/citrus/orange = 1 ) - result = /obj/item/food/ravtart subcategory = CAT_PASTRY diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pie.dm b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_pie.dm similarity index 86% rename from code/modules/food_and_drinks/recipes/tablecraft/recipes_pie.dm rename to code/datums/components/crafting/crafting_lists/foodstuffs/recipes_pie.dm index 9209b9736ac36..43ee641468f47 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pie.dm +++ b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_pie.dm @@ -1,122 +1,120 @@ -// see code/module/crafting/table.dm - -////////////////////////////////////////////////PIES//////////////////////////////////////////////// +/// Pies Crafting /datum/crafting_recipe/food/bananacreampie name = "Banana cream pie" + result = /obj/item/food/pie/cream reqs = list( /datum/reagent/consumable/milk = 5, /obj/item/food/pie/plain = 1, /obj/item/food/grown/banana = 1 ) - result = /obj/item/food/pie/cream subcategory = CAT_PIE /datum/crafting_recipe/food/meatpie name = "Meat pie" + result = /obj/item/food/pie/meatpie reqs = list( /datum/reagent/consumable/blackpepper = 1, /datum/reagent/consumable/sodiumchloride = 1, /obj/item/food/pie/plain = 1, /obj/item/food/meat/steak/plain = 1 ) - result = /obj/item/food/pie/meatpie subcategory = CAT_PIE /datum/crafting_recipe/food/tofupie name = "Tofu pie" + result = /obj/item/food/pie/tofupie reqs = list( /obj/item/food/pie/plain = 1, /obj/item/food/tofu = 1 ) - result = /obj/item/food/pie/tofupie subcategory = CAT_PIE /datum/crafting_recipe/food/xenopie name = "Xeno pie" + result = /obj/item/food/pie/xemeatpie reqs = list( /obj/item/food/pie/plain = 1, /obj/item/food/meat/cutlet/xeno = 1 ) - result = /obj/item/food/pie/xemeatpie subcategory = CAT_PIE /datum/crafting_recipe/food/cherrypie name = "Cherry pie" + result = /obj/item/food/pie/cherrypie reqs = list( /obj/item/food/pie/plain = 1, /obj/item/food/grown/cherries = 1 ) - result = /obj/item/food/pie/cherrypie subcategory = CAT_PIE /datum/crafting_recipe/food/berryclafoutis name = "Berry clafoutis" + result = /obj/item/food/pie/berryclafoutis reqs = list( /obj/item/food/pie/plain = 1, /obj/item/food/grown/berries = 1 ) - result = /obj/item/food/pie/berryclafoutis subcategory = CAT_PIE /datum/crafting_recipe/food/bearypie name = "Beary Pie" + result = /obj/item/food/pie/bearypie reqs = list( /obj/item/food/pie/plain = 1, /obj/item/food/grown/berries = 1, /obj/item/food/meat/steak/bear = 1 ) - result = /obj/item/food/pie/bearypie subcategory = CAT_PIE /datum/crafting_recipe/food/amanitapie name = "Amanita pie" + result = /obj/item/food/pie/amanita_pie reqs = list( /obj/item/food/pie/plain = 1, /obj/item/food/grown/mushroom/amanita = 1 ) - result = /obj/item/food/pie/amanita_pie subcategory = CAT_PIE /datum/crafting_recipe/food/plumppie name = "Plump pie" + result = /obj/item/food/pie/plump_pie reqs = list( /obj/item/food/pie/plain = 1, /obj/item/food/grown/mushroom/plumphelmet = 1 ) - result = /obj/item/food/pie/plump_pie subcategory = CAT_PIE /datum/crafting_recipe/food/applepie name = "Apple pie" + result = /obj/item/food/pie/applepie reqs = list( /obj/item/food/pie/plain = 1, /obj/item/food/grown/apple = 1 ) - result = /obj/item/food/pie/applepie subcategory = CAT_PIE /datum/crafting_recipe/food/pumpkinpie name = "Pumpkin pie" + result = /obj/item/food/pie/pumpkinpie reqs = list( /datum/reagent/consumable/milk = 5, /datum/reagent/consumable/sugar = 5, /obj/item/food/pie/plain = 1, /obj/item/food/grown/pumpkin = 1 ) - result = /obj/item/food/pie/pumpkinpie subcategory = CAT_PIE /datum/crafting_recipe/food/goldenappletart name = "Golden apple tart" + result = /obj/item/food/pie/appletart reqs = list( /datum/reagent/consumable/milk = 5, /datum/reagent/consumable/sugar = 5, /obj/item/food/pie/plain = 1, /obj/item/food/grown/apple/gold = 1 ) - result = /obj/item/food/pie/appletart subcategory = CAT_PIE /datum/crafting_recipe/food/grapetart @@ -128,6 +126,12 @@ /obj/item/food/grown/grapes = 3 ) result = /obj/item/food/pie/grapetart + reqs = list( + /datum/reagent/consumable/milk = 5, + /datum/reagent/consumable/sugar = 5, + /obj/item/food/pie/plain = 1, + /obj/item/food/grown/grapes = 3 + ) subcategory = CAT_PIE /datum/crafting_recipe/food/mimetart @@ -140,7 +144,14 @@ /datum/reagent/consumable/nothing = 5 ) result = /obj/item/food/pie/mimetart + reqs = list( + /datum/reagent/consumable/milk = 5, + /datum/reagent/consumable/sugar = 5, + /obj/item/food/pie/plain = 1, + /datum/reagent/consumable/nothing = 5 + ) subcategory = CAT_PIE + always_available = FALSE /datum/crafting_recipe/food/berrytart name = "Berry tart" @@ -152,7 +163,14 @@ /obj/item/food/grown/berries = 3 ) result = /obj/item/food/pie/berrytart + reqs = list( + /datum/reagent/consumable/milk = 5, + /datum/reagent/consumable/sugar = 5, + /obj/item/food/pie/plain = 1, + /obj/item/food/grown/berries = 3 + ) subcategory = CAT_PIE + always_available = FALSE /datum/crafting_recipe/food/cocoalavatart name = "Chocolate Lava tart" @@ -165,44 +183,52 @@ /obj/item/slime_extract = 1 //The reason you dont know how to make it! ) result = /obj/item/food/pie/cocoalavatart + reqs = list( + /datum/reagent/consumable/milk = 5, + /datum/reagent/consumable/sugar = 5, + /obj/item/food/pie/plain = 1, + /obj/item/food/chocolatebar = 3, + /obj/item/slime_extract = 1 //The reason you dont know how to make it! + ) subcategory = CAT_PIE + always_available = FALSE /datum/crafting_recipe/food/blumpkinpie name = "Blumpkin pie" + result = /obj/item/food/pie/blumpkinpie reqs = list( /datum/reagent/consumable/milk = 5, /datum/reagent/consumable/sugar = 5, /obj/item/food/pie/plain = 1, /obj/item/food/grown/blumpkin = 1 ) - result = /obj/item/food/pie/blumpkinpie subcategory = CAT_PIE /datum/crafting_recipe/food/dulcedebatata name = "Dulce de batata" + result = /obj/item/food/pie/dulcedebatata reqs = list( /datum/reagent/consumable/vanilla = 5, /datum/reagent/water = 5, /obj/item/food/grown/potato/sweet = 2 ) - result = /obj/item/food/pie/dulcedebatata subcategory = CAT_PIE /datum/crafting_recipe/food/frostypie name = "Frosty pie" + result = /obj/item/food/pie/frostypie reqs = list( /obj/item/food/pie/plain = 1, /obj/item/food/grown/bluecherries = 1 ) - result = /obj/item/food/pie/frostypie subcategory = CAT_PIE /datum/crafting_recipe/food/baklava name = "Baklava pie" + result = /obj/item/food/pie/baklava reqs = list( /obj/item/food/butter = 2, /obj/item/food/tortilla = 4, //Layers /obj/item/seeds/wheat/oat = 4 ) - result = /obj/item/food/pie/baklava subcategory = CAT_PIE diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pizza.dm b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_pizza.dm similarity index 93% rename from code/modules/food_and_drinks/recipes/tablecraft/recipes_pizza.dm rename to code/datums/components/crafting/crafting_lists/foodstuffs/recipes_pizza.dm index 00b2242b3d1c1..778d9bbde8ce7 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pizza.dm +++ b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_pizza.dm @@ -1,31 +1,30 @@ -// see code/module/crafting/table.dm - -////////////////////////////////////////////////PIZZA!!!//////////////////////////////////////////////// +/// Pizza Crafting /datum/crafting_recipe/food/margheritapizza name = "Margherita pizza" + result = /obj/item/food/pizza/margherita reqs = list( /obj/item/food/pizzabread = 1, /obj/item/food/cheese/wedge = 4, /obj/item/food/grown/tomato = 1 ) - result = /obj/item/food/pizza/margherita subcategory = CAT_PIZZA /datum/crafting_recipe/food/meatpizza name = "Meat pizza" + result = /obj/item/food/pizza/meat reqs = list( /obj/item/food/pizzabread = 1, /obj/item/food/meat/cutlet = 4, /obj/item/food/cheese/wedge = 1, /obj/item/food/grown/tomato = 1 ) - result = /obj/item/food/pizza/meat subcategory = CAT_PIZZA /datum/crafting_recipe/food/arnold name = "Arnold pizza" + result = /obj/item/food/pizza/arnold reqs = list( /obj/item/food/pizzabread = 1, /obj/item/food/meat/cutlet = 3, @@ -33,20 +32,20 @@ /obj/item/food/cheese/wedge = 1, /obj/item/food/grown/tomato = 1 ) - result = /obj/item/food/pizza/arnold subcategory = CAT_PIZZA /datum/crafting_recipe/food/mushroompizza name = "Mushroom pizza" + result = /obj/item/food/pizza/mushroom reqs = list( /obj/item/food/pizzabread = 1, /obj/item/food/grown/mushroom = 5 ) - result = /obj/item/food/pizza/mushroom subcategory = CAT_PIZZA /datum/crafting_recipe/food/vegetablepizza name = "Vegetable pizza" + result = /obj/item/food/pizza/vegetable reqs = list( /obj/item/food/pizzabread = 1, /obj/item/food/grown/eggplant = 1, @@ -54,44 +53,44 @@ /obj/item/food/grown/corn = 1, /obj/item/food/grown/tomato = 1 ) - result = /obj/item/food/pizza/vegetable subcategory = CAT_PIZZA /datum/crafting_recipe/food/donkpocketpizza name = "Donkpocket pizza" + result = /obj/item/food/pizza/donkpocket reqs = list( /obj/item/food/pizzabread = 1, /obj/item/food/donkpocket/warm = 3, /obj/item/food/cheese/wedge = 1, /obj/item/food/grown/tomato = 1 ) - result = /obj/item/food/pizza/donkpocket subcategory = CAT_PIZZA /datum/crafting_recipe/food/dankpizza name = "Dank pizza" + result = /obj/item/food/pizza/dank reqs = list( /obj/item/food/pizzabread = 1, /obj/item/food/grown/ambrosia/vulgaris = 3, /obj/item/food/cheese/wedge = 1, /obj/item/food/grown/tomato = 1 ) - result = /obj/item/food/pizza/dank subcategory = CAT_PIZZA /datum/crafting_recipe/food/sassysagepizza name = "Sassysage pizza" + result = /obj/item/food/pizza/sassysage reqs = list( /obj/item/food/pizzabread = 1, /obj/item/food/meatball = 3, /obj/item/food/cheese/wedge = 1, /obj/item/food/grown/tomato = 1 ) - result = /obj/item/food/pizza/sassysage subcategory = CAT_PIZZA -/datum/crafting_recipe/food/pineapplepizza +/datum/crafting_recipe/food/pineapplepizza ///AGAINST my will, i say that this recipe is missing ham to be the prime of the culinary horrors from canada... name = "Hawaiian pizza" + result = /obj/item/food/pizza/pineapple reqs = list( /obj/item/food/pizzabread = 1, /obj/item/food/meat/cutlet = 2, @@ -99,5 +98,4 @@ /obj/item/food/cheese/wedge = 1, /obj/item/food/grown/tomato = 1 ) - result = /obj/item/food/pizza/pineapple subcategory = CAT_PIZZA diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_salad.dm b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_salad.dm similarity index 94% rename from code/modules/food_and_drinks/recipes/tablecraft/recipes_salad.dm rename to code/datums/components/crafting/crafting_lists/foodstuffs/recipes_salad.dm index 9aaa86ce1529a..ab12f7d7725ae 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_salad.dm +++ b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_salad.dm @@ -1,41 +1,40 @@ -// see code/module/crafting/table.dm - -////////////////////////////////////////////////SALADS//////////////////////////////////////////////// +/// Salad Crafting /datum/crafting_recipe/food/herbsalad name = "Herb salad" + result = /obj/item/food/salad/herbsalad reqs = list( /obj/item/reagent_containers/glass/bowl = 1, /obj/item/food/grown/ambrosia/vulgaris = 3, /obj/item/food/grown/apple = 1 ) - result = /obj/item/food/salad/herbsalad subcategory = CAT_SALAD /datum/crafting_recipe/food/aesirsalad name = "Aesir salad" + result = /obj/item/food/salad/aesirsalad reqs = list( /obj/item/reagent_containers/glass/bowl = 1, /obj/item/food/grown/ambrosia/deus = 3, /obj/item/food/grown/apple/gold = 1 ) - result = /obj/item/food/salad/aesirsalad subcategory = CAT_SALAD /datum/crafting_recipe/food/validsalad name = "Valid salad" + result = /obj/item/food/salad/validsalad reqs = list( /obj/item/reagent_containers/glass/bowl = 1, /obj/item/food/grown/ambrosia/vulgaris = 3, /obj/item/food/grown/potato = 1, /obj/item/food/meatball = 1 ) - result = /obj/item/food/salad/validsalad subcategory = CAT_SALAD /datum/crafting_recipe/food/monkeysdelight name = "Monkeys delight" + result = /obj/item/food/soup/monkeysdelight reqs = list( /datum/reagent/consumable/flour = 5, /datum/reagent/consumable/sodiumchloride = 1, @@ -44,11 +43,11 @@ /obj/item/food/monkeycube = 1, /obj/item/food/grown/banana = 1 ) - result = /obj/item/food/soup/monkeysdelight subcategory = CAT_SALAD /datum/crafting_recipe/food/melonfruitbowl name ="Melon fruit bowl" + result = /obj/item/food/melonfruitbowl reqs = list( /obj/item/food/grown/watermelon = 1, /obj/item/food/grown/apple = 1, @@ -57,11 +56,11 @@ /obj/item/food/grown/banana = 1, /obj/item/food/grown/ambrosia = 1 ) - result = /obj/item/food/melonfruitbowl subcategory = CAT_SALAD /datum/crafting_recipe/food/fruitsalad name = "Fruit salad" + result = /obj/item/food/salad/fruit reqs = list( /obj/item/reagent_containers/glass/bowl = 1, /obj/item/food/grown/apple = 1, @@ -70,32 +69,31 @@ /obj/item/food/watermelonslice = 2 ) - result = /obj/item/food/salad/fruit subcategory = CAT_SALAD /datum/crafting_recipe/food/junglesalad name = "Jungle salad" + result = /obj/item/food/salad/jungle reqs = list( /obj/item/reagent_containers/glass/bowl = 1, /obj/item/food/grown/apple = 1, /obj/item/food/grown/grapes = 1, /obj/item/food/grown/banana = 2, /obj/item/food/watermelonslice = 2 - ) - result = /obj/item/food/salad/jungle subcategory = CAT_SALAD /datum/crafting_recipe/food/citrusdelight name = "Citrus delight" + result = /obj/item/food/salad/citrusdelight reqs = list( /obj/item/reagent_containers/glass/bowl = 1, /obj/item/food/grown/citrus/lime = 1, /obj/item/food/grown/citrus/lemon = 1, /obj/item/food/grown/citrus/orange = 1 - ) - result = /obj/item/food/salad/citrusdelight subcategory = CAT_SALAD //Peace go here + +//unfortuately, there's no peace. diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_sandwich.dm b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_sandwich.dm similarity index 86% rename from code/modules/food_and_drinks/recipes/tablecraft/recipes_sandwich.dm rename to code/datums/components/crafting/crafting_lists/foodstuffs/recipes_sandwich.dm index 88301a9d199bf..aab860ff8f695 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_sandwich.dm +++ b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_sandwich.dm @@ -1,63 +1,58 @@ -// see code/datums/recipe.dm - - -// see code/module/crafting/table.dm - -////////////////////////////////////////////////SANDWICHES//////////////////////////////////////////////// +/// Sandwiches Crafting /datum/crafting_recipe/food/sandwich name = "Sandwich" + result = /obj/item/food/sandwich reqs = list( /obj/item/food/breadslice/plain = 2, - /obj/item/food/meat/steak = 1, + /obj/item/food/meat/steak = 1, //that's one hell of a sandwich if it needs a whole steak /obj/item/food/cheese/wedge = 1 ) - result = /obj/item/food/sandwich subcategory = CAT_SANDWICH /datum/crafting_recipe/food/cheese_sandwich name = "Cheese sandwich" + result = /obj/item/food/cheese_sandwich reqs = list( /obj/item/food/breadslice/plain = 2, /obj/item/food/cheese/wedge = 2 ) - result = /obj/item/food/cheese_sandwich subcategory = CAT_SANDWICH /datum/crafting_recipe/food/slimesandwich name = "Jelly sandwich" + result = /obj/item/food/jellysandwich/slime reqs = list( /datum/reagent/toxin/slimejelly = 5, /obj/item/food/breadslice/plain = 2, ) - result = /obj/item/food/jellysandwich/slime subcategory = CAT_SANDWICH /datum/crafting_recipe/food/cherrysandwich name = "Jelly sandwich" + result = /obj/item/food/jellysandwich/cherry reqs = list( /datum/reagent/consumable/cherryjelly = 5, /obj/item/food/breadslice/plain = 2, ) - result = /obj/item/food/jellysandwich/cherry subcategory = CAT_SANDWICH /datum/crafting_recipe/food/notasandwich name = "Not a sandwich" + result = /obj/item/food/notasandwich reqs = list( /obj/item/food/breadslice/plain = 2, /obj/item/clothing/mask/fakemoustache = 1 ) - result = /obj/item/food/notasandwich subcategory = CAT_SANDWICH /datum/crafting_recipe/food/hotdog name = "Hot dog" + result = /obj/item/food/hotdog reqs = list( /datum/reagent/consumable/ketchup = 5, /obj/item/food/bun = 1, /obj/item/food/sausage = 1 ) - result = /obj/item/food/hotdog subcategory = CAT_SANDWICH diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_seafood.dm b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_seafood.dm similarity index 100% rename from code/modules/food_and_drinks/recipes/tablecraft/recipes_seafood.dm rename to code/datums/components/crafting/crafting_lists/foodstuffs/recipes_seafood.dm diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_soup.dm b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_soup.dm similarity index 96% rename from code/modules/food_and_drinks/recipes/tablecraft/recipes_soup.dm rename to code/datums/components/crafting/crafting_lists/foodstuffs/recipes_soup.dm index abb4e3fdc3ac6..b3007f054d364 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_soup.dm +++ b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_soup.dm @@ -1,20 +1,19 @@ -// see code/module/crafting/table.dm - -////////////////////////////////////////////////SOUP//////////////////////////////////////////////// +/// Soups Crafting /datum/crafting_recipe/food/oatmeal name = "Oatmeal" + result = /obj/item/food/soup/oatmeal reqs = list( /datum/reagent/consumable/milk = 10, /obj/item/reagent_containers/glass/bowl = 1, /obj/item/food/grown/oat = 1 ) - result = /obj/item/food/soup/oatmeal subcategory = CAT_SOUP /datum/crafting_recipe/food/meatballsoup name = "Meatball soup" + result = /obj/item/food/soup/meatball reqs = list( /datum/reagent/water = 10, /obj/item/reagent_containers/glass/bowl = 1, @@ -22,11 +21,11 @@ /obj/item/food/grown/carrot = 1, /obj/item/food/grown/potato = 1 ) - result = /obj/item/food/soup/meatball subcategory = CAT_SOUP /datum/crafting_recipe/food/vegetablesoup name = "Vegetable soup" + result = /obj/item/food/soup/vegetable reqs = list( /datum/reagent/water = 10, /obj/item/reagent_containers/glass/bowl = 1, @@ -35,11 +34,11 @@ /obj/item/food/grown/eggplant = 1, /obj/item/food/grown/potato = 1 ) - result = /obj/item/food/soup/vegetable subcategory = CAT_SOUP /datum/crafting_recipe/food/nettlesoup name = "Nettle soup" + result = /obj/item/food/soup/nettle reqs = list( /datum/reagent/water = 10, /obj/item/reagent_containers/glass/bowl = 1, @@ -47,116 +46,115 @@ /obj/item/food/grown/potato = 1, /obj/item/food/boiledegg = 1 ) - result = /obj/item/food/soup/nettle subcategory = CAT_SOUP /datum/crafting_recipe/food/wingfangchu name = "Wingfangchu" + result = /obj/item/food/soup/wingfangchu reqs = list( /obj/item/reagent_containers/glass/bowl = 1, /datum/reagent/consumable/soysauce = 5, /obj/item/food/meat/cutlet/xeno = 2 ) - result = /obj/item/food/soup/wingfangchu subcategory = CAT_SOUP /datum/crafting_recipe/food/wishsoup name = "Wish soup" + result= /obj/item/food/soup/wish reqs = list( /datum/reagent/water = 20, /obj/item/reagent_containers/glass/bowl = 1 ) - result= /obj/item/food/soup/wish subcategory = CAT_SOUP /datum/crafting_recipe/food/hotchili name = "Hot chili" + result = /obj/item/food/soup/hotchili reqs = list( /obj/item/reagent_containers/glass/bowl = 1, /obj/item/food/meat/cutlet = 2, /obj/item/food/grown/chili = 1, /obj/item/food/grown/tomato = 1 ) - result = /obj/item/food/soup/hotchili subcategory = CAT_SOUP /datum/crafting_recipe/food/coldchili name = "Cold chili" + result = /obj/item/food/soup/coldchili reqs = list( /obj/item/reagent_containers/glass/bowl = 1, /obj/item/food/meat/cutlet = 2, /obj/item/food/grown/icepepper = 1, /obj/item/food/grown/tomato = 1 ) - result = /obj/item/food/soup/coldchili subcategory = CAT_SOUP /datum/crafting_recipe/food/tomatosoup name = "Tomato soup" + result = /obj/item/food/soup/tomato reqs = list( /datum/reagent/water = 10, /obj/item/reagent_containers/glass/bowl = 1, /obj/item/food/grown/tomato = 2 ) - result = /obj/item/food/soup/tomato subcategory = CAT_SOUP /datum/crafting_recipe/food/eyeballsoup name = "Eyeball soup" + result = /obj/item/food/soup/tomato/eyeball reqs = list( /datum/reagent/water = 10, /obj/item/reagent_containers/glass/bowl = 1, /obj/item/food/grown/tomato = 2, /obj/item/organ/eyes = 1 ) - result = /obj/item/food/soup/tomato/eyeball subcategory = CAT_SOUP - /datum/crafting_recipe/food/misosoup name = "Miso soup" + result = /obj/item/food/soup/miso reqs = list( /datum/reagent/water = 10, /obj/item/reagent_containers/glass/bowl = 1, /obj/item/food/soydope = 2, /obj/item/food/tofu = 2 ) - result = /obj/item/food/soup/miso subcategory = CAT_SOUP /datum/crafting_recipe/food/bloodsoup name = "Blood soup" + result = /obj/item/food/soup/blood reqs = list( /datum/reagent/blood = 10, /obj/item/reagent_containers/glass/bowl = 1, /obj/item/food/grown/tomato/blood = 2 ) - result = /obj/item/food/soup/blood subcategory = CAT_SOUP /datum/crafting_recipe/food/slimesoup name = "Slime soup" + result = /obj/item/food/soup/slime reqs = list( - /datum/reagent/water = 10, - /datum/reagent/toxin/slimejelly = 5, - /obj/item/reagent_containers/glass/bowl = 1 + /datum/reagent/water = 10, + /datum/reagent/toxin/slimejelly = 5, + /obj/item/reagent_containers/glass/bowl = 1 ) - result = /obj/item/food/soup/slime subcategory = CAT_SOUP /datum/crafting_recipe/food/clownstears name = "Clowns tears" + result = /obj/item/food/soup/clownstears reqs = list( /datum/reagent/water = 10, /obj/item/reagent_containers/glass/bowl = 1, /obj/item/food/grown/banana = 1, /obj/item/stack/sheet/mineral/bananium = 1 ) - result = /obj/item/food/soup/clownstears subcategory = CAT_SOUP /datum/crafting_recipe/food/mysterysoup name = "Mystery soup" + result = /obj/item/food/soup/mystery reqs = list( /datum/reagent/water = 10, /obj/item/reagent_containers/glass/bowl = 1, @@ -165,33 +163,33 @@ /obj/item/food/boiledegg = 1, /obj/item/food/cheese/wedge = 1, ) - result = /obj/item/food/soup/mystery subcategory = CAT_SOUP /datum/crafting_recipe/food/mushroomsoup name = "Mushroom soup" + result = /obj/item/food/soup/mushroom reqs = list( /datum/reagent/consumable/milk = 5, /datum/reagent/water = 5, /obj/item/reagent_containers/glass/bowl = 1, /obj/item/food/grown/mushroom/chanterelle = 1 ) - result = /obj/item/food/soup/mushroom subcategory = CAT_SOUP /datum/crafting_recipe/food/beetsoup name = "Beet soup" + result = /obj/item/food/soup/beet reqs = list( /datum/reagent/water = 10, /obj/item/reagent_containers/glass/bowl = 1, /obj/item/food/grown/whitebeet = 1, /obj/item/food/grown/cabbage = 1, ) - result = /obj/item/food/soup/beet subcategory = CAT_SOUP /datum/crafting_recipe/food/stew name = "Stew" + result = /obj/item/food/soup/stew reqs = list( /datum/reagent/water = 10, /obj/item/reagent_containers/glass/bowl = 1, @@ -202,53 +200,53 @@ /obj/item/food/grown/eggplant = 1, /obj/item/food/grown/mushroom = 1 ) - result = /obj/item/food/soup/stew subcategory = CAT_SOUP /datum/crafting_recipe/food/spacylibertyduff name = "Spacy liberty duff" + result = /obj/item/food/soup/spacylibertyduff reqs = list( /datum/reagent/consumable/ethanol/vodka = 5, /obj/item/reagent_containers/glass/bowl = 1, /obj/item/food/grown/mushroom/libertycap = 3 ) - result = /obj/item/food/soup/spacylibertyduff subcategory = CAT_SOUP /datum/crafting_recipe/food/amanitajelly name = "Amanita jelly" + result = /obj/item/food/soup/amanitajelly reqs = list( /datum/reagent/consumable/ethanol/vodka = 5, /obj/item/reagent_containers/glass/bowl = 1, /obj/item/food/grown/mushroom/amanita = 3 ) - result = /obj/item/food/soup/amanitajelly subcategory = CAT_SOUP /datum/crafting_recipe/food/sweetpotatosoup name = "Sweet potato soup" + result = /obj/item/food/soup/sweetpotato reqs = list( /datum/reagent/water = 10, /datum/reagent/consumable/sugar = 5, /obj/item/reagent_containers/glass/bowl = 1, /obj/item/food/grown/potato/sweet = 2 ) - result = /obj/item/food/soup/sweetpotato subcategory = CAT_SOUP /datum/crafting_recipe/food/redbeetsoup name = "Red beet soup" + result = /obj/item/food/soup/beet/red reqs = list( /datum/reagent/water = 10, /obj/item/reagent_containers/glass/bowl = 1, /obj/item/food/grown/redbeet = 1, /obj/item/food/grown/cabbage = 1 ) - result = /obj/item/food/soup/beet/red subcategory = CAT_SOUP /datum/crafting_recipe/food/bisque name = "Bisque" + result = /obj/item/food/soup/bisque reqs = list( /obj/item/reagent_containers/glass/bowl = 1, /datum/reagent/water = 10, @@ -256,11 +254,11 @@ /obj/item/food/meat/crab = 1, /obj/item/food/boiledrice = 1 ) - result = /obj/item/food/soup/bisque subcategory = CAT_SOUP /datum/crafting_recipe/food/bungocurry name = "Bungo Curry" + result = /obj/item/food/soup/bungocurry reqs = list( /datum/reagent/water = 5, /datum/reagent/consumable/cream = 5, @@ -268,16 +266,15 @@ /obj/item/food/grown/chili = 1, /obj/item/food/grown/bungofruit = 1 ) - result = /obj/item/food/soup/bungocurry subcategory = CAT_SOUP /datum/crafting_recipe/food/electron name = "Electron Soup" + result = /obj/item/food/soup/electron reqs = list( /datum/reagent/water = 10, /datum/reagent/consumable/sodiumchloride = 5, /obj/item/reagent_containers/glass/bowl = 1, /obj/item/food/grown/mushroom/jupitercup = 1 ) - result = /obj/item/food/soup/electron subcategory = CAT_SOUP diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_spaghetti.dm b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_spaghetti.dm similarity index 94% rename from code/modules/food_and_drinks/recipes/tablecraft/recipes_spaghetti.dm rename to code/datums/components/crafting/crafting_lists/foodstuffs/recipes_spaghetti.dm index 425892e365973..60f0c1f093b85 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_spaghetti.dm +++ b/code/datums/components/crafting/crafting_lists/foodstuffs/recipes_spaghetti.dm @@ -1,113 +1,111 @@ -// see code/module/crafting/table.dm - -////////////////////////////////////////////////SPAGHETTI//////////////////////////////////////////////// +/// Noodles Crafting /datum/crafting_recipe/food/tomatopasta name = "Tomato pasta" + result = /obj/item/food/spaghetti/pastatomato reqs = list( /obj/item/food/spaghetti/boiledspaghetti = 1, /obj/item/food/grown/tomato = 2 ) - result = /obj/item/food/spaghetti/pastatomato subcategory = CAT_SPAGHETTI /datum/crafting_recipe/food/copypasta name = "Copypasta" + result = /obj/item/food/spaghetti/copypasta reqs = list( /obj/item/food/spaghetti/pastatomato = 2 ) - result = /obj/item/food/spaghetti/copypasta subcategory = CAT_SPAGHETTI /datum/crafting_recipe/food/spaghettimeatball name = "Spaghetti meatball" + result = /obj/item/food/spaghetti/meatballspaghetti reqs = list( /obj/item/food/spaghetti/boiledspaghetti = 1, /obj/item/food/meatball = 2 ) - result = /obj/item/food/spaghetti/meatballspaghetti subcategory = CAT_SPAGHETTI /datum/crafting_recipe/food/spesslaw name = "Spesslaw" + result = /obj/item/food/spaghetti/spesslaw reqs = list( /obj/item/food/spaghetti/boiledspaghetti = 1, /obj/item/food/meatball = 4 ) - result = /obj/item/food/spaghetti/spesslaw subcategory = CAT_SPAGHETTI /datum/crafting_recipe/food/beefnoodle name = "Beef noodle" + result = /obj/item/food/spaghetti/beefnoodle reqs = list( /obj/item/reagent_containers/glass/bowl = 1, /obj/item/food/spaghetti/boiledspaghetti = 1, /obj/item/food/meat/cutlet = 2, /obj/item/food/grown/cabbage = 1 ) - result = /obj/item/food/spaghetti/beefnoodle subcategory = CAT_SPAGHETTI /datum/crafting_recipe/food/chowmein name = "Chowmein" + result = /obj/item/food/spaghetti/chowmein reqs = list( /obj/item/food/spaghetti/boiledspaghetti = 1, /obj/item/food/meat/cutlet = 1, /obj/item/food/grown/cabbage = 2, /obj/item/food/grown/carrot = 1 ) - result = /obj/item/food/spaghetti/chowmein subcategory = CAT_SPAGHETTI /datum/crafting_recipe/food/butternoodles name = "Butter Noodles" + result = /obj/item/food/spaghetti/butternoodles reqs = list( /obj/item/food/spaghetti/boiledspaghetti = 1, /obj/item/food/butter = 1 ) - result = /obj/item/food/spaghetti/butternoodles subcategory = CAT_SPAGHETTI /datum/crafting_recipe/food/kasespatzle name = "Käsespätzle" + result = /obj/item/food/spaghetti/kasespatzle reqs = list( /obj/item/food/spaghetti/boiledspaghetti = 1, /datum/reagent/consumable/eggyolk = 10, /obj/item/food/cheese/wedge = 1 ) - result = /obj/item/food/spaghetti/kasespatzle subcategory = CAT_SPAGHETTI /datum/crafting_recipe/food/spaghettinapolitan name = "Spaghetti Napolitan" + result = /obj/item/food/spaghetti/spaghettinapolitan reqs = list( /obj/item/food/spaghetti/boiledspaghetti = 1, - /datum/reagent/consumable/ketchup = 10, + /datum/reagent/consumable/ketchup = 10, // >:( /obj/item/food/sausage = 1, /obj/item/food/grown/chili = 1 ) - result = /obj/item/food/spaghetti/spaghettinapolitan subcategory = CAT_SPAGHETTI /datum/crafting_recipe/food/lasagna name = "Lasagna" + result = /obj/item/food/spaghetti/lasagna reqs = list( /obj/item/food/spaghetti = 1, /obj/item/food/meatball = 1, /obj/item/food/grown/tomato = 1, /obj/item/food/cheese/wedge = 1 ) - result = /obj/item/food/spaghetti/lasagna subcategory = CAT_SPAGHETTI /datum/crafting_recipe/food/glassnoodles name = "Glass Noodles" + result = /obj/item/food/spaghetti/glassnoodles reqs = list( /obj/item/food/spaghetti/boiledspaghetti = 1, /obj/item/food/grown/carrot = 1, /obj/item/food/tofu = 1, /obj/item/stack/sheet/glass = 1 ) - result = /obj/item/food/spaghetti/glassnoodles subcategory = CAT_SPAGHETTI diff --git a/code/datums/components/crafting/crafting_lists/misc.dm b/code/datums/components/crafting/crafting_lists/misc.dm new file mode 100644 index 0000000000000..44c524db78190 --- /dev/null +++ b/code/datums/components/crafting/crafting_lists/misc.dm @@ -0,0 +1,427 @@ + +/// Misc stuff crafting + +/datum/crafting_recipe/spooky_camera + name = "Camera Obscura" + result = /obj/item/camera/spooky + time = 1.5 SECONDS + reqs = list( + /obj/item/camera = 1, + /datum/reagent/water/holywater = 10 + ) + parts = list(/obj/item/camera = 1) + category = CAT_MISC + +/datum/crafting_recipe/lizardhat + name = "Lizard Cloche Hat" + result = /obj/item/clothing/head/costume/lizard + time = 1 SECONDS + reqs = list(/obj/item/organ/tail/lizard = 1) + category = CAT_MISC + +/datum/crafting_recipe/lizardhat_alternate + name = "Lizard Cloche Hat (alternative variant)" + result = /obj/item/clothing/head/costume/lizard + time = 1 SECONDS + reqs = list(/obj/item/stack/sheet/animalhide/lizard = 1) + category = CAT_MISC + +/datum/crafting_recipe/kittyears + name = "Kitty Ears" + result = /obj/item/clothing/head/costume/kitty/genuine + time = 1 SECONDS + reqs = list( + /obj/item/organ/tail/cat = 1, + /obj/item/organ/ears/cat = 1 + ) + category = CAT_MISC + +/datum/crafting_recipe/skateboard + name = "Skateboard" + result = /obj/item/melee/skateboard + time = 6 SECONDS + reqs = list( + /obj/item/stack/sheet/iron = 5, + /obj/item/stack/rods = 10 + ) + category = CAT_MISC + +/datum/crafting_recipe/scooter + name = "Scooter" + result = /obj/vehicle/ridden/scooter + time = 6.5 SECONDS + tools = list(TOOL_SCREWDRIVER,) + reqs = list( + /obj/item/stack/sheet/iron = 5, + /obj/item/stack/rods = 12 + ) + category = CAT_MISC + +/datum/crafting_recipe/wheelchair + name = "Wheelchair" + result = /obj/vehicle/ridden/wheelchair + time = 10 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WRENCH) + reqs = list( + /obj/item/stack/sheet/iron = 4, + /obj/item/stack/rods = 6 + ) + category = CAT_MISC + +/datum/crafting_recipe/motorized_wheelchair + name = "Motorized Wheelchair" + result = /obj/vehicle/ridden/wheelchair/motorized + time = 20 SECONDS + tools = list(TOOL_WELDER, TOOL_SCREWDRIVER, TOOL_WRENCH) + reqs = list( + /obj/item/stack/sheet/iron = 10, + /obj/item/stack/rods = 8, + /obj/item/stock_parts/manipulator = 2, + /obj/item/stock_parts/capacitor = 1 + ) + parts = list( + /obj/item/stock_parts/manipulator = 2, + /obj/item/stock_parts/capacitor = 1 + ) + category = CAT_MISC + +/datum/crafting_recipe/mousetrap + name = "Mouse Trap" + result = /obj/item/assembly/mousetrap + time = 1 SECONDS + reqs = list( + /obj/item/stack/sheet/cardboard = 1, + /obj/item/stack/rods = 1 + ) + category = CAT_MISC + +/datum/crafting_recipe/papersack + name = "Paper Sack" + result = /obj/item/storage/box/papersack + time = 1 SECONDS + reqs = list(/obj/item/paper = 5) + category = CAT_MISC + +/datum/crafting_recipe/flashlight_eyes + name = "Flashlight Eyes" + result = /obj/item/organ/eyes/robotic/flashlight + time = 1 SECONDS + reqs = list( + /obj/item/flashlight = 2, + /obj/item/restraints/handcuffs/cable = 1 + ) + category = CAT_MISC + +/datum/crafting_recipe/paperframes + name = "Paper Frames" + result = /obj/item/stack/sheet/paperframes/five + time = 1 SECONDS + reqs = list( + /obj/item/stack/sheet/wood = 2, + /obj/item/paper = 10 + ) + category = CAT_MISC + +/datum/crafting_recipe/naturalpaper + name = "Hand-Pressed Paper Bundle" + result = /obj/item/paper_bin/bundlenatural + time = 3 SECONDS + reqs = list( + /datum/reagent/water = 50, + /obj/item/stack/sheet/wood = 1 + ) + tools = list(/obj/item/hatchet) + category = CAT_MISC + +/datum/crafting_recipe/toysword + name = "Toy Sword" + result = /obj/item/toy/sword + time = 1 SECONDS + reqs = list( + /obj/item/light/bulb = 1, + /obj/item/stack/cable_coil = 1, + /obj/item/stack/sheet/plastic = 4 + ) + category = CAT_MISC + +/datum/crafting_recipe/blackcarpet + name = "Black Carpet" + result = /obj/item/stack/tile/carpet/black/fifty + time = 0.5 SECONDS + reqs = list( + /obj/item/stack/tile/carpet = 50, + /obj/item/toy/crayon/black = 1 + ) + category = CAT_MISC + +/datum/crafting_recipe/extendohand + name = "Extendo-Hand" + result = /obj/item/extendohand + time = 1 SECONDS + reqs = list( + /obj/item/bodypart/r_arm/robot = 1, + /obj/item/clothing/gloves/boxing = 1 + ) + category = CAT_MISC + +/datum/crafting_recipe/mothplush + name = "Moth Plushie" + result = /obj/item/toy/plush/moth + time = 3 SECONDS + reqs = list( + /obj/item/stack/sheet/animalhide/mothroach = 1, + /obj/item/stack/sheet/cotton/cloth = 3 + ) + category = CAT_MISC + +/datum/crafting_recipe/gold_horn + name = "Golden Bike Horn" + result = /obj/item/bikehorn/golden + time = 5 SECONDS + reqs = list( + /obj/item/stack/sheet/mineral/bananium = 5, + /obj/item/bikehorn = 1 + ) + category = CAT_MISC + +/datum/crafting_recipe/flash_ducky + name = "Toy Rubber Duck Mine" + result = /obj/item/deployablemine/traitor/toy + time = 2 SECONDS + reqs = list( + /obj/item/bikehorn/rubberducky = 1, + /obj/item/assembly/flash/handheld = 1, + /obj/item/stack/cable_coil = 2, + /obj/item/assembly/prox_sensor + ) + blacklist = list(/obj/item/assembly/flash/handheld/strong) + category = CAT_MISC + +/datum/crafting_recipe/pressureplate + name = "Pressure Plate" + result = /obj/item/pressure_plate + time = 1 SECONDS + reqs = list( + /obj/item/stack/sheet/iron = 1, + /obj/item/stack/tile/iron = 1, + /obj/item/stack/cable_coil = 2, + /obj/item/assembly/igniter = 1 + ) + category = CAT_MISC + +/datum/crafting_recipe/rcl + name = "Makeshift Rapid Cable Layer" + result = /obj/item/rcl/ghetto + time = 4 SECONDS + tools = list(TOOL_WELDER, TOOL_SCREWDRIVER, TOOL_WRENCH) + reqs = list(/obj/item/stack/sheet/iron = 15) + category = CAT_MISC + +/datum/crafting_recipe/aitater + name = "intelliTater" + result = /obj/item/aicard/aitater + time = 3 SECONDS + tools = list(TOOL_WIRECUTTER) + reqs = list( + /obj/item/aicard = 1, + /obj/item/food/grown/potato = 1, + /obj/item/stack/cable_coil = 5 + ) + category = CAT_MISC + +/datum/crafting_recipe/aispook + name = "intelliLantern" + result = /obj/item/aicard/aispook + time = 3 SECONDS + tools = list(TOOL_WIRECUTTER) + reqs = list( + /obj/item/aicard = 1, + /obj/item/food/grown/pumpkin = 1, + /obj/item/stack/cable_coil = 5 + ) + category = CAT_MISC + +/datum/crafting_recipe/ghettojetpack + name = "Improvised Jetpack" + result = /obj/item/tank/jetpack/improvised + time = 7.5 SECONDS //this thing is complex + tools = list(TOOL_WRENCH, TOOL_WELDER, TOOL_WIRECUTTER) + reqs = list( + /obj/item/tank/internals/oxygen/red = 2,//red oxygen tank so it looks right + /obj/item/extinguisher = 1, + /obj/item/pipe = 3, + /obj/item/stack/cable_coil = 30 + ) + category = CAT_MISC + +/datum/crafting_recipe/multiduct + name = "Multi-layer duct" + result = /obj/machinery/duct/multilayered + time = 2.5 SECONDS + tools = list(TOOL_WELDER) + reqs = list(/obj/item/stack/ducts = 5) + category = CAT_MISC + +/datum/crafting_recipe/upgraded_gauze + name = "Improved Gauze" + result = /obj/item/stack/medical/gauze/adv/one + time = 1 SECONDS + reqs = list( + /obj/item/stack/medical/gauze = 1, + /datum/reagent/space_cleaner/sterilizine = 10 + ) + category = CAT_MISC + +/datum/crafting_recipe/bruise_pack + name = "Bruise Pack" + result = /obj/item/stack/medical/bruise_pack/one + time = 1 SECONDS + reqs = list( + /obj/item/stack/medical/gauze = 1, + /datum/reagent/medicine/styptic_powder = 20 + ) + category = CAT_MISC + +/datum/crafting_recipe/burn_pack + name = "Burn Ointment" + result = /obj/item/stack/medical/ointment/one + time = 1 SECONDS + reqs = list( + /obj/item/stack/medical/gauze = 1, + /datum/reagent/medicine/silver_sulfadiazine = 20 + ) + category = CAT_MISC + +/datum/crafting_recipe/poppy_pin + name = "Poppy Pin" + result = /obj/item/clothing/accessory/poppy_pin + time = 0.5 SECONDS + reqs = list( + /obj/item/stack/rods = 1, + /obj/item/food/grown/flower/poppy = 1 + ) + category = CAT_MISC + +/datum/crafting_recipe/poppy_pin_removal + name = "Poppy Pin Removal" + result = /obj/item/food/grown/flower/poppy + time = 0.5 SECONDS + reqs = list(/obj/item/clothing/accessory/poppy_pin = 1) + category = CAT_MISC + +/datum/crafting_recipe/paper_cup + name= "Paper Cup" + result = /obj/item/reagent_containers/food/drinks/sillycup + time = 1 SECONDS + tools = list(TOOL_WIRECUTTER) + reqs = list(/obj/item/paper = 1) + category = CAT_MISC + +/datum/crafting_recipe/paperslip + name = "Paper Slip" + result = /obj/item/card/id/paper + time = 1 SECONDS + tools = list(TOOL_WIRECUTTER) + reqs = list(/obj/item/paper = 5) + category = CAT_MISC + +/datum/crafting_recipe/basic_lasso + name= "Basic Lasso" + result = /obj/item/mob_lasso + time = 2 SECONDS + reqs = list(/obj/item/stack/sheet/leather = 5) + category = CAT_MISC + +/datum/crafting_recipe/foldable + name = "Foldable Chair" + result = /obj/item/chair/foldable + time = 4 SECONDS + tools = list(TOOL_WRENCH, TOOL_WIRECUTTER) + reqs = list( + /obj/item/stack/rods = 2, + /obj/item/stack/sheet/plastic = 1 + ) + category = CAT_MISC + +/datum/crafting_recipe/chair_fancy + name = "Fancy Chair" + result = /obj/item/chair/fancy + time = 6 SECONDS + tools = list(TOOL_WRENCH, TOOL_WIRECUTTER) + reqs = list( + /obj/item/stack/rods = 2, + /obj/item/chair = 1 + ) + category = CAT_MISC + +/// banners + +/datum/crafting_recipe/security_banner + name = "Securistan Banner" + result = /obj/item/banner/security/mundane + time = 4 SECONDS + reqs = list( + /obj/item/stack/rods = 2, + /obj/item/clothing/under/rank/security/officer = 1 + ) + category = CAT_MISC + +/datum/crafting_recipe/medical_banner + name = "Meditopia Banner" + result = /obj/item/banner/medical/mundane + time = 4 SECONDS + reqs = list( + /obj/item/stack/rods = 2, + /obj/item/clothing/under/rank/medical = 1 + ) + category = CAT_MISC + +/datum/crafting_recipe/science_banner + name = "Sciencia Banner" + result = /obj/item/banner/science/mundane + time = 4 SECONDS + reqs = list( + /obj/item/stack/rods = 2, + /obj/item/clothing/under/rank/rnd/scientist = 1 + ) + category = CAT_MISC + +/datum/crafting_recipe/cargo_banner + name = "Cargonia Banner" + result = /obj/item/banner/cargo/mundane + time = 4 SECONDS + reqs = list( + /obj/item/stack/rods = 2, + /obj/item/clothing/under/rank/cargo/tech = 1 + ) + category = CAT_MISC + +/datum/crafting_recipe/engineering_banner + name = "Engitopia Banner" + result = /obj/item/banner/engineering/mundane + time = 4 SECONDS + reqs = list( + /obj/item/stack/rods = 2, + /obj/item/clothing/under/rank/engineering/engineer = 1 + ) + category = CAT_MISC + +/datum/crafting_recipe/command_banner + name = "Command Banner" + result = /obj/item/banner/command/mundane + time = 4 SECONDS + reqs = list( + /obj/item/stack/rods = 2, + /obj/item/clothing/under/rank/captain/parade = 1 + ) + category = CAT_MISC + +/datum/crafting_recipe/picket_sign + name = "Picket Sign" + result = /obj/item/picket_sign + time = 6 SECONDS + reqs = list( + /obj/item/stack/rods = 1, + /obj/item/stack/sheet/cardboard = 2 + ) + category = CAT_MISC diff --git a/code/datums/components/crafting/crafting_lists/primal.dm b/code/datums/components/crafting/crafting_lists/primal.dm new file mode 100644 index 0000000000000..5bbb930118f4d --- /dev/null +++ b/code/datums/components/crafting/crafting_lists/primal.dm @@ -0,0 +1,298 @@ + +/// Primal stuff crafting + +/datum/crafting_recipe/bonearmor + name = "Bone Armor" + result = /obj/item/clothing/suit/armor/bone + time = 3 SECONDS + reqs = list(/obj/item/stack/sheet/bone = 6) + category = CAT_PRIMAL + +/datum/crafting_recipe/heavybonearmor + name = "Heavy Bone Armor" + result = /obj/item/clothing/suit/hooded/cloak/bone + time = 6 SECONDS + reqs = list( + /obj/item/stack/sheet/bone = 8, + /obj/item/stack/sheet/sinew = 3 + ) + category = CAT_PRIMAL + +/datum/crafting_recipe/bonetalisman + name = "Bone Talisman" + result = /obj/item/clothing/accessory/talisman + time = 2 SECONDS + reqs = list( + /obj/item/stack/sheet/bone = 2, + /obj/item/stack/sheet/sinew = 1 + ) + category = CAT_PRIMAL + +/datum/crafting_recipe/bonecodpiece + name = "Skull Codpiece" + result = /obj/item/clothing/accessory/skullcodpiece + time = 2 SECONDS + reqs = list( + /obj/item/stack/sheet/bone = 2, + /obj/item/stack/sheet/animalhide/goliath_hide = 1 + ) + category = CAT_PRIMAL + +/datum/crafting_recipe/bracers + name = "Bone Bracers" + result = /obj/item/clothing/gloves/bracer + time = 2 SECONDS + reqs = list( + /obj/item/stack/sheet/bone = 2, + /obj/item/stack/sheet/sinew = 1 + ) + category = CAT_PRIMAL + +/datum/crafting_recipe/skullhelm + name = "Skull Helmet" + result = /obj/item/clothing/head/helmet/skull + time = 3 SECONDS + reqs = list(/obj/item/stack/sheet/bone = 4) + category = CAT_PRIMAL + +/datum/crafting_recipe/goliathcloak + name = "Goliath Cloak" + result = /obj/item/clothing/suit/hooded/cloak/goliath + time = 5 SECONDS + reqs = list( + /obj/item/stack/sheet/leather = 2, + /obj/item/stack/sheet/sinew = 2, + /obj/item/stack/sheet/animalhide/goliath_hide = 2 //it takes 4 goliaths to make 1 cloak if the plates are skinned + ) + category = CAT_PRIMAL + +/datum/crafting_recipe/drakecloak + name = "Ash Drake Armour" + result = /obj/item/clothing/suit/hooded/cloak/drake + time = 6 SECONDS + reqs = list( + /obj/item/stack/sheet/bone = 10, + /obj/item/stack/sheet/sinew = 2, + /obj/item/stack/sheet/animalhide/ashdrake = 5 + ) + always_available = FALSE + category = CAT_PRIMAL + +/datum/crafting_recipe/watcherbola + name = "Watcher Bola" + result = /obj/item/restraints/legcuffs/bola/watcher + time = 3 SECONDS + reqs = list( + /obj/item/stack/sheet/animalhide/goliath_hide = 2, + /obj/item/restraints/handcuffs/cable/sinew = 1 + ) + category = CAT_PRIMAL + +/datum/crafting_recipe/goliathshield + name = "Goliath shield" + result = /obj/item/shield/riot/goliath + time = 6 SECONDS + reqs = list( + /obj/item/stack/sheet/bone = 4, + /obj/item/stack/sheet/animalhide/goliath_hide = 3 + ) + category = CAT_PRIMAL + +/datum/crafting_recipe/bonesword + name = "Bone Sword" + result = /obj/item/claymore/bone + time = 4 SECONDS + reqs = list( + /obj/item/stack/sheet/bone = 3, + /obj/item/stack/sheet/sinew = 2 + ) + category = CAT_PRIMAL + dangerous_craft = TRUE + +/datum/crafting_recipe/hunterbelt + name = "Hunters Belt" + result = /obj/item/storage/belt/mining/primitive + time = 2 SECONDS + reqs = list( + /obj/item/stack/sheet/sinew = 2, + /obj/item/stack/sheet/animalhide/goliath_hide = 2 + ) + category = CAT_PRIMAL + +/datum/crafting_recipe/quiver + name = "Quiver" + result = /obj/item/storage/belt/quiver + time = 8 SECONDS + reqs = list( + /obj/item/stack/sheet/leather = 3, + /obj/item/stack/sheet/sinew = 4 + ) + category = CAT_PRIMAL + +/datum/crafting_recipe/bone_bow + name = "Bone Bow" + result = /obj/item/gun/ballistic/bow/ashen + time = 20 SECONDS + reqs = list( + /obj/item/stack/sheet/bone = 8, + /obj/item/stack/sheet/sinew = 4 + ) + category = CAT_PRIMAL + +/datum/crafting_recipe/firebrand + name = "Firebrand" + result = /obj/item/match/firebrand + time = 10 SECONDS //Long construction time. Making fire is hard work. + reqs = list(/obj/item/stack/sheet/wood = 2) + category = CAT_PRIMAL + +/datum/crafting_recipe/bonedagger + name = "Bone Dagger" + result = /obj/item/knife/combat/bone + time = 2 SECONDS + reqs = list(/obj/item/stack/sheet/bone = 2) + category = CAT_PRIMAL + +/datum/crafting_recipe/bonespear + name = "Bone Spear" + result = /obj/item/spear/bonespear + time = 3 SECONDS + reqs = list( + /obj/item/stack/sheet/bone = 4, + /obj/item/stack/sheet/sinew = 1 + ) + category = CAT_PRIMAL + dangerous_craft = TRUE + +/datum/crafting_recipe/boneaxe + name = "Bone Axe" + result = /obj/item/fireaxe/boneaxe + time = 5 SECONDS + reqs = list( + /obj/item/stack/sheet/bone = 6, + /obj/item/stack/sheet/sinew = 3 + ) + category = CAT_PRIMAL + dangerous_craft = TRUE + +/datum/crafting_recipe/bonfire + name = "Bonfire" + time = 6 SECONDS + reqs = list(/obj/item/grown/log = 5) + result = /obj/structure/bonfire + category = CAT_PRIMAL + +/datum/crafting_recipe/skeleton_key + name = "Skeleton Key" + time = 3 SECONDS + reqs = list(/obj/item/stack/sheet/bone = 5) + result = /obj/item/skeleton_key + always_available = FALSE + category = CAT_PRIMAL + +/datum/crafting_recipe/headpike + name = "Spike Head (Glass Spear)" + time = 6.5 SECONDS + reqs = list( + /obj/item/spear = 1, + /obj/item/bodypart/head = 1 + ) + parts = list( + /obj/item/bodypart/head = 1, + /obj/item/spear = 1 + ) + blacklist = list(/obj/item/spear/explosive, /obj/item/spear/bonespear, /obj/item/spear/bamboospear) + result = /obj/structure/headpike/glass + category = CAT_PRIMAL + dangerous_craft = TRUE + +/datum/crafting_recipe/headpikebone + name = "Spike Head (Bone Spear)" + time = 6.5 SECONDS + reqs = list( + /obj/item/spear/bonespear = 1, + /obj/item/bodypart/head = 1 + ) + parts = list( + /obj/item/bodypart/head = 1, + /obj/item/spear/bonespear = 1 + ) + result = /obj/structure/headpike/bone + category = CAT_PRIMAL + dangerous_craft = TRUE + +/datum/crafting_recipe/headpikebamboo + name = "Spike Head (Bamboo Spear)" + time = 6.5 SECONDS + reqs = list( + /obj/item/spear/bamboospear = 1, + /obj/item/bodypart/head = 1 + ) + parts = list( + /obj/item/bodypart/head = 1, + /obj/item/spear/bamboospear = 1 + ) + result = /obj/structure/headpike/bamboo + category = CAT_PRIMAL + dangerous_craft = TRUE + +/datum/crafting_recipe/primal_lasso + name= "Primal Lasso" + result = /obj/item/mob_lasso/primal + time = 2 SECONDS + reqs = list( + /obj/item/stack/sheet/animalhide/goliath_hide = 3, + /obj/item/stack/sheet/sinew = 4 + ) + always_available = FALSE + category = CAT_PRIMAL + +/datum/crafting_recipe/dragon_lasso + name = "Ash Drake Lasso" + result = /obj/item/mob_lasso/drake + time = 2 SECONDS + reqs = list( + /obj/item/stack/sheet/bone = 10, + /obj/item/stack/sheet/sinew = 2, + /obj/item/stack/sheet/animalhide/ashdrake = 5 + ) + always_available = FALSE + category = CAT_PRIMAL + +/datum/crafting_recipe/fermenting_barrel + name = "Wooden Barrel" + result = /obj/structure/fermenting_barrel + time = 5 SECONDS + reqs = list(/obj/item/stack/sheet/wood = 30) + category = CAT_PRIMAL + +/datum/crafting_recipe/mushroom_bowl + name = "Mushroom Bowl" + result = /obj/item/reagent_containers/glass/bowl/mushroom_bowl + time = 3 SECONDS + reqs = list(/obj/item/food/grown/ash_flora/shavings = 5) + category = CAT_PRIMAL + +/datum/crafting_recipe/charcoal_stylus + name = "Charcoal Stylus" + result = /obj/item/pen/charcoal + reqs = list( + /obj/item/stack/sheet/wood = 1, + /datum/reagent/ash = 30 + ) + time = 3 SECONDS + category = CAT_PRIMAL + +/datum/crafting_recipe/oar + name = "Goliath Bone Oar" + result = /obj/item/oar + time = 1.5 SECONDS + reqs = list(/obj/item/stack/sheet/bone = 2) + category = CAT_PRIMAL + +/datum/crafting_recipe/boat + name = "Goliath Hide Boat (lava boat)" + result = /obj/vehicle/ridden/lavaboat + time = 5 SECONDS + reqs = list(/obj/item/stack/sheet/animalhide/goliath_hide = 3) + category = CAT_PRIMAL diff --git a/code/datums/components/crafting/crafting_lists/robots.dm b/code/datums/components/crafting/crafting_lists/robots.dm new file mode 100644 index 0000000000000..11fc03c3490ab --- /dev/null +++ b/code/datums/components/crafting/crafting_lists/robots.dm @@ -0,0 +1,116 @@ + +/// Robot Crafting + +/datum/crafting_recipe/ed209 + name = "ED209" + result = /mob/living/simple_animal/bot/ed209 + time = 6 SECONDS + tools = list(TOOL_WELDER, TOOL_SCREWDRIVER) + reqs = list( + /obj/item/robot_suit = 1, + /obj/item/clothing/head/helmet = 1, + /obj/item/clothing/suit/armor/vest = 1, + /obj/item/bodypart/l_leg/robot = 1, + /obj/item/bodypart/r_leg/robot = 1, + /obj/item/stack/sheet/iron = 1, + /obj/item/stack/cable_coil = 1, + /obj/item/gun/energy/disabler = 1, + /obj/item/stock_parts/cell = 1, + /obj/item/assembly/prox_sensor = 1 + ) + category = CAT_ROBOT + +/datum/crafting_recipe/secbot + name = "Secbot" + result = /mob/living/simple_animal/bot/secbot + time = 6 SECONDS + tools = list(TOOL_WELDER) + reqs = list( + /obj/item/assembly/signaler = 1, + /obj/item/clothing/head/helmet/sec = 1, + /obj/item/melee/baton = 1, + /obj/item/assembly/prox_sensor = 1, + /obj/item/bodypart/r_arm/robot = 1 + ) + category = CAT_ROBOT + +/datum/crafting_recipe/cleanbot + name = "Cleanbot" + result = /mob/living/simple_animal/bot/cleanbot + time = 4 SECONDS + reqs = list( + /obj/item/reagent_containers/glass/bucket = 1, + /obj/item/assembly/prox_sensor = 1, + /obj/item/bodypart/r_arm/robot = 1 + ) + category = CAT_ROBOT + +/datum/crafting_recipe/larry + name = "Larry" + result = /mob/living/simple_animal/bot/cleanbot/larry + reqs = list( + /obj/item/larryframe = 1, + /obj/item/assembly/prox_sensor = 1, + /obj/item/bodypart/r_arm/robot = 1 + ) + category = CAT_ROBOT + +/datum/crafting_recipe/floorbot + name = "Floorbot" + result = /mob/living/simple_animal/bot/floorbot + time = 4 SECONDS + reqs = list( + /obj/item/storage/toolbox = 1, + /obj/item/stack/tile/iron = 10, + /obj/item/assembly/prox_sensor = 1, + /obj/item/bodypart/r_arm/robot = 1 + ) + category = CAT_ROBOT + +/datum/crafting_recipe/medbot + name = "Medbot" + result = /mob/living/simple_animal/bot/medbot + time = 4 SECONDS + reqs = list( + /obj/item/healthanalyzer = 1, + /obj/item/storage/firstaid = 1, + /obj/item/assembly/prox_sensor = 1, + /obj/item/bodypart/r_arm/robot = 1 + ) + category = CAT_ROBOT + +/datum/crafting_recipe/honkbot + name = "Honkbot" + result = /mob/living/simple_animal/bot/honkbot + time = 4 SECONDS + reqs = list( + /obj/item/storage/box/clown = 1, + /obj/item/bodypart/r_arm/robot = 1, + /obj/item/assembly/prox_sensor = 1, + /obj/item/bikehorn/ = 1 + ) + category = CAT_ROBOT + +/datum/crafting_recipe/Firebot + name = "Firebot" + result = /mob/living/simple_animal/bot/firebot + time = 4 SECONDS + reqs = list( + /obj/item/extinguisher = 1, + /obj/item/bodypart/r_arm/robot = 1, + /obj/item/assembly/prox_sensor = 1, + /obj/item/clothing/head/utility/hardhat/red = 1 + ) + category = CAT_ROBOT + +/datum/crafting_recipe/Atmosbot + name = "Atmosbot" + result = /mob/living/simple_animal/bot/atmosbot + time = 4 SECONDS + reqs = list( + /obj/item/analyzer = 1, + /obj/item/bodypart/r_arm/robot = 1, + /obj/item/assembly/prox_sensor = 1, + /obj/item/tank/internals = 1 + ) + category = CAT_ROBOT diff --git a/code/datums/components/crafting/crafting_lists/structures.dm b/code/datums/components/crafting/crafting_lists/structures.dm new file mode 100644 index 0000000000000..d9d38f67d0ab7 --- /dev/null +++ b/code/datums/components/crafting/crafting_lists/structures.dm @@ -0,0 +1,122 @@ + +/// Structures crafting, should always be one_per_turf = TRUE, but it don't warrant it's own sub category yet + +/datum/crafting_recipe/personal_locker + name = "Personal Locker" + result = /obj/structure/closet/secure_closet/personal/empty + time = 10 SECONDS + tools = list(TOOL_WIRECUTTER, TOOL_SCREWDRIVER) + reqs = list( + /obj/item/stack/sheet/iron = 2, + /obj/item/electronics/airlock = 1, + /obj/item/stack/cable_coil = 2 + ) + category = CAT_STRUCTURE + one_per_turf = TRUE + +/datum/crafting_recipe/shutters + name = "Shutters" + result = /obj/machinery/door/poddoor/shutters/preopen + time = 10 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_MULTITOOL, TOOL_WIRECUTTER, TOOL_WELDER) + reqs = list( + /obj/item/stack/sheet/plasteel = 5, + /obj/item/stack/cable_coil = 5, + /obj/item/electronics/airlock = 1 + ) + category = CAT_STRUCTURE + one_per_turf = TRUE + +/datum/crafting_recipe/glassshutters + name = "Windowed Shutters" + result = /obj/machinery/door/poddoor/shutters/window/preopen + time = 10 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_MULTITOOL, TOOL_WIRECUTTER, TOOL_WELDER) + reqs = list( + /obj/item/stack/sheet/plasteel = 5, + /obj/item/stack/sheet/rglass = 2, + /obj/item/stack/cable_coil = 5, + /obj/item/electronics/airlock = 1 + ) + category = CAT_STRUCTURE + one_per_turf = TRUE + +/datum/crafting_recipe/radshutters + name = "Radiation Shutters" + result = /obj/machinery/door/poddoor/shutters/radiation/preopen + time = 10 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_MULTITOOL, TOOL_WIRECUTTER, TOOL_WELDER) + reqs = list( + /obj/item/stack/sheet/plasteel = 5, + /obj/item/stack/cable_coil = 5, + /obj/item/electronics/airlock = 1, + /obj/item/stack/sheet/mineral/uranium = 2 + ) + category = CAT_STRUCTURE + one_per_turf = TRUE + +/datum/crafting_recipe/blast_doors + name = "Blast Door" + result = /obj/machinery/door/poddoor/preopen + time = 15 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_MULTITOOL, TOOL_WIRECUTTER, TOOL_WELDER) + reqs = list( + /obj/item/stack/sheet/plasteel = 15, + /obj/item/stack/cable_coil = 15, + /obj/item/electronics/airlock = 1 + ) + category = CAT_STRUCTURE + one_per_turf = TRUE + +/datum/crafting_recipe/showercurtain + name = "Shower Curtains" + result = /obj/structure/curtain + time = 3 SECONDS + tools = list(TOOL_SCREWDRIVER) + reqs = list( + /obj/item/stack/sheet/cotton/cloth = 2, + /obj/item/stack/sheet/plastic = 2, + /obj/item/stack/rods = 1 + ) + category = CAT_STRUCTURE + one_per_turf = TRUE + +/datum/crafting_recipe/aquarium + name = "Aquarium" + result = /obj/structure/aquarium + time = 7.5 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WRENCH) + reqs = list( + /obj/item/stack/sheet/iron = 15, + /obj/item/stack/sheet/glass = 10, + /obj/item/aquarium_kit = 1 + ) + category = CAT_STRUCTURE + one_per_turf = TRUE + +/datum/crafting_recipe/guillotine + name = "Guillotine" + result = /obj/structure/guillotine + time = 15 SECONDS // Building a functioning guillotine takes time + reqs = list( + /obj/item/stack/sheet/plasteel = 3, + /obj/item/stack/sheet/wood = 20, + /obj/item/stack/cable_coil = 10 + ) + tools = list(TOOL_SCREWDRIVER, TOOL_WRENCH, TOOL_WELDER) + category = CAT_STRUCTURE + dangerous_craft = TRUE + one_per_turf = TRUE + +/datum/crafting_recipe/mirror + name = "Wall Mirror Frame" + result = /obj/item/wallframe/mirror + time = 4 SECONDS + reqs = list( + /obj/item/stack/sheet/mineral/silver = 1, + /obj/item/stack/sheet/glass = 2 + ) + tools = list(TOOL_WRENCH) + category = CAT_STRUCTURE + one_per_turf = TRUE + diff --git a/code/datums/components/crafting/crafting_lists/tailoring/clothing.dm b/code/datums/components/crafting/crafting_lists/tailoring/clothing.dm new file mode 100644 index 0000000000000..92f5634ad0252 --- /dev/null +++ b/code/datums/components/crafting/crafting_lists/tailoring/clothing.dm @@ -0,0 +1,207 @@ + +/// clothing stuff crafting + +/datum/crafting_recipe/durathread_vest + name = "Durathread Vest" + result = /obj/item/clothing/suit/armor/vest/durathread + time = 5 SECONDS + reqs = list(/obj/item/stack/sheet/cotton/cloth/durathread = 5, + /obj/item/stack/sheet/leather = 4) + category = CAT_TAILORING + subcategory = CAT_CLOTHING + +/datum/crafting_recipe/durathread_helmet + name = "Durathread Helmet" + result = /obj/item/clothing/head/helmet/durathread + time = 4 SECONDS + reqs = list(/obj/item/stack/sheet/cotton/cloth/durathread = 4, + /obj/item/stack/sheet/leather = 5) + category = CAT_TAILORING + subcategory = CAT_CLOTHING + +/datum/crafting_recipe/durathread_jumpsuit + name = "Durathread Jumpsuit" + result = /obj/item/clothing/under/color/durathread + time = 4 SECONDS + reqs = list(/obj/item/stack/sheet/cotton/cloth/durathread = 4) + category = CAT_TAILORING + subcategory = CAT_CLOTHING + +/datum/crafting_recipe/durathread_jumpskirt + name = "Durathread Jumpskirt" + result = /obj/item/clothing/under/color/jumpskirt/durathread + time = 4 SECONDS + reqs = list(/obj/item/stack/sheet/cotton/cloth/durathread = 4) + category = CAT_TAILORING + subcategory = CAT_CLOTHING + +/datum/crafting_recipe/durathread_hoodie + name = "Durathread Hoodie" + result = /obj/item/clothing/suit/hooded/hoodie/durathread + time = 5 SECONDS + reqs = list(/obj/item/stack/sheet/cotton/cloth/durathread = 5) + category = CAT_TAILORING + subcategory = CAT_CLOTHING + +/datum/crafting_recipe/durathread_beret + name = "Durathread Beret" + result = /obj/item/clothing/head/beret/durathread + time = 4 SECONDS + reqs = list(/obj/item/stack/sheet/cotton/cloth/durathread = 2) + category = CAT_TAILORING + subcategory = CAT_CLOTHING + +/datum/crafting_recipe/durathread_beanie + name = "Durathread Beanie" + result = /obj/item/clothing/head/beanie/durathread + time = 4 SECONDS + reqs = list(/obj/item/stack/sheet/cotton/cloth/durathread = 2) + category = CAT_TAILORING + subcategory = CAT_CLOTHING + +/datum/crafting_recipe/durathread_bandana + name = "Durathread Bandana" + result = /obj/item/clothing/mask/bandana/durathread + time = 2 SECONDS + reqs = list(/obj/item/stack/sheet/cotton/cloth/durathread = 1) + category = CAT_TAILORING + subcategory = CAT_CLOTHING + +/datum/crafting_recipe/fannypack + name = "Fannypack" + result = /obj/item/storage/belt/fannypack + time = 2 SECONDS + reqs = list(/obj/item/stack/sheet/cotton/cloth = 2, + /obj/item/stack/sheet/leather = 1 + ) + category = CAT_TAILORING + subcategory = CAT_CLOTHING + +/datum/crafting_recipe/voice_modulator + name = "Voice Modulator Mask" + result = /obj/item/clothing/mask/gas/old/modulator + time = 4 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_MULTITOOL) + reqs = list( + /obj/item/clothing/mask/gas/old = 1, + /obj/item/assembly/voice = 1, + /obj/item/stack/cable_coil = 5 + ) + category = CAT_TAILORING + subcategory = CAT_CLOTHING + +/datum/crafting_recipe/ghostsheet + name = "Ghost Sheet" + result = /obj/item/clothing/suit/costume/ghost_sheet + time = 0.5 SECONDS + tools = list(TOOL_WIRECUTTER) + reqs = list(/obj/item/bedsheet = 1) + category = CAT_TAILORING + subcategory = CAT_CLOTHING + +/datum/crafting_recipe/foilhat + name = "Tinfoil Hat" + result = /obj/item/clothing/head/costume/foilhat + time = 3 SECONDS + tools = list(TOOL_CROWBAR, TOOL_WIRECUTTER) + reqs = list(/obj/item/stack/sheet/iron = 3) + category = CAT_TAILORING + subcategory = CAT_CLOTHING + +/datum/crafting_recipe/foilenvirohelm + name = "Ghetto Envirosuit Helmet" + result = /obj/item/clothing/head/costume/foilhat/plasmaman + time = 5 SECONDS + tools = list(TOOL_CROWBAR, TOOL_WIRECUTTER, TOOL_SCREWDRIVER) + reqs = list( + /obj/item/clothing/head/costume/foilhat = 1, + /obj/item/stack/package_wrap = 10, + /obj/item/stack/cable_coil = 15, + /obj/item/clothing/glasses/meson = 1, + /obj/item/flashlight = 1, + /obj/item/clothing/head/utility/hardhat = 1, + /obj/item/stack/sheet/glass = 1 + ) + category = CAT_TAILORING + subcategory = CAT_CLOTHING + +/datum/crafting_recipe/rainbowbunchcrown + name = "Rainbow Flower Crown" + result = /obj/item/clothing/head/flowercrown/rainbowbunch + time = 2.5 SECONDS + reqs = list( + /obj/item/food/grown/flower/rainbow = 5, + /obj/item/stack/cable_coil = 3 + ) + category = CAT_TAILORING + subcategory = CAT_CLOTHING + +/datum/crafting_recipe/sunflowercrown + name = "Sunflower Crown" + result = /obj/item/clothing/head/flowercrown/sunflower + time = 2.5 SECONDS + reqs = list( + /obj/item/grown/sunflower = 5, + /obj/item/stack/cable_coil = 3 + ) + category = CAT_TAILORING + subcategory = CAT_CLOTHING + +/datum/crafting_recipe/poppycrown + name = "Poppy Crown" + result = /obj/item/clothing/head/flowercrown/poppy + time = 2.5 SECONDS + reqs = list( + /obj/item/food/grown/flower/poppy = 5, + /obj/item/stack/cable_coil = 3 + ) + category = CAT_TAILORING + subcategory = CAT_CLOTHING + +/datum/crafting_recipe/lilycrown + name = "Lily Crown" + result = /obj/item/clothing/head/flowercrown/lily + time = 2.5 SECONDS + reqs = list( + /obj/item/food/grown/flower/lily = 3, + /obj/item/stack/cable_coil = 3 + ) + category = CAT_TAILORING + subcategory = CAT_CLOTHING + +/datum/crafting_recipe/mummy + name = "Mummification Bandages (Mask)" + result = /obj/item/clothing/mask/mummy + time = 2 SECONDS + tools = list(/obj/item/nullrod/egyptian) + reqs = list(/obj/item/stack/sheet/cotton/cloth = 2) + category = CAT_TAILORING + subcategory = CAT_CLOTHING + +/datum/crafting_recipe/mummy/body + name = "Mummification Bandages (Body)" + result = /obj/item/clothing/under/costume/mummy + time = 4 SECONDS + reqs = list(/obj/item/stack/sheet/cotton/cloth = 5) + category = CAT_TAILORING + subcategory = CAT_CLOTHING + +/datum/crafting_recipe/chaplain_hood + name = "Follower Hoodie" + result = /obj/item/clothing/suit/hooded/chaplain_hoodie + time = 3 SECONDS + tools = list(/obj/item/clothing/suit/hooded/chaplain_hoodie, /obj/item/storage/book/bible) + reqs = list(/obj/item/stack/sheet/cotton/cloth = 4) + category = CAT_TAILORING + subcategory = CAT_CLOTHING + +/datum/crafting_recipe/insulated_boxing_gloves + name = "Insulated Boxing Gloves" + result = /obj/item/clothing/gloves/boxing/yellow/insulated + time = 6 SECONDS + reqs = list( + /obj/item/clothing/gloves/boxing = 1, + /obj/item/clothing/gloves/color/yellow = 1 + ) + category = CAT_TAILORING + subcategory = CAT_CLOTHING diff --git a/code/datums/components/crafting/crafting_lists/tailoring/eyewear.dm b/code/datums/components/crafting/crafting_lists/tailoring/eyewear.dm new file mode 100644 index 0000000000000..596f23c275025 --- /dev/null +++ b/code/datums/components/crafting/crafting_lists/tailoring/eyewear.dm @@ -0,0 +1,267 @@ + +/// eyewear stuff crafting + +/datum/crafting_recipe/hudsunsec + name = "Security HUDsunglasses" + result = /obj/item/clothing/glasses/hud/security/sunglasses + time = 2 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) + reqs = list( + /obj/item/clothing/glasses/hud/security = 1, + /obj/item/clothing/glasses/sunglasses/advanced = 1, + /obj/item/stack/cable_coil = 5 + ) + category = CAT_TAILORING + subcategory = CAT_EYEWEAR + +/datum/crafting_recipe/hudsunsecremoval + name = "Security HUD removal" + result = /obj/item/clothing/glasses/sunglasses/advanced + time = 2 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) + reqs = list(/obj/item/clothing/glasses/hud/security/sunglasses = 1) + blacklist = list(/obj/item/clothing/glasses/hud/security/sunglasses/degraded) + category = CAT_TAILORING + subcategory = CAT_EYEWEAR + +/datum/crafting_recipe/hudsunmed + name = "Medical HUDsunglasses" + result = /obj/item/clothing/glasses/hud/health/sunglasses + time = 2 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) + reqs = list( + /obj/item/clothing/glasses/hud/health = 1, + /obj/item/clothing/glasses/sunglasses/advanced = 1, + /obj/item/stack/cable_coil = 5 + ) + category = CAT_TAILORING + subcategory = CAT_EYEWEAR + +/datum/crafting_recipe/hudsunmedremoval + name = "Medical HUD removal" + result = /obj/item/clothing/glasses/sunglasses/advanced + time = 2 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) + reqs = list(/obj/item/clothing/glasses/hud/health/sunglasses = 1) + blacklist = list(/obj/item/clothing/glasses/hud/health/sunglasses/degraded) + category = CAT_TAILORING + subcategory = CAT_EYEWEAR + +/datum/crafting_recipe/hudsundiag + name = "Diagnostic HUDsunglasses" + result = /obj/item/clothing/glasses/hud/diagnostic/sunglasses + time = 2 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) + reqs = list( + /obj/item/clothing/glasses/hud/diagnostic = 1, + /obj/item/clothing/glasses/sunglasses/advanced = 1, + /obj/item/stack/cable_coil = 5 + ) + category = CAT_TAILORING + subcategory = CAT_EYEWEAR + +/datum/crafting_recipe/hudsundiagremoval + name = "Diagnostic HUD removal" + result = /obj/item/clothing/glasses/sunglasses/advanced + time = 2 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) + reqs = list(/obj/item/clothing/glasses/hud/diagnostic/sunglasses = 1) + blacklist = list(/obj/item/clothing/glasses/hud/diagnostic/sunglasses/degraded) + category = CAT_TAILORING + subcategory = CAT_EYEWEAR + +/datum/crafting_recipe/beergoggles + name = "Beer Goggles" + result = /obj/item/clothing/glasses/sunglasses/advanced/reagent + time = 2 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) + reqs = list( + /obj/item/clothing/glasses/science = 1, + /obj/item/clothing/glasses/sunglasses/advanced = 1, + /obj/item/stack/cable_coil = 5 + ) + category = CAT_TAILORING + subcategory = CAT_EYEWEAR + +/datum/crafting_recipe/beergogglesremoval + name = "Beer Goggles removal" + result = /obj/item/clothing/glasses/sunglasses/advanced + time = 2 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) + reqs = list(/obj/item/clothing/glasses/sunglasses/advanced/reagent = 1) + category = CAT_TAILORING + subcategory = CAT_EYEWEAR + +/datum/crafting_recipe/sunhudscience + name = "Science Sunglasses" + result = /obj/item/clothing/glasses/science/sciencesun + time = 2 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) + reqs = list( + /obj/item/clothing/glasses/science = 1, + /obj/item/clothing/glasses/sunglasses/advanced = 1, + /obj/item/stack/cable_coil = 5 + ) + category = CAT_TAILORING + subcategory = CAT_EYEWEAR + +/datum/crafting_recipe/sunhudscienceremoval + name = "Science Sunglasses removal" + result = /obj/item/clothing/glasses/sunglasses/advanced + time = 2 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) + reqs = list(/obj/item/clothing/glasses/science/sciencesun = 1) + blacklist = list(/obj/item/clothing/glasses/science/sciencesun/degraded) + category = CAT_TAILORING + subcategory = CAT_EYEWEAR + +/datum/crafting_recipe/deghudsunsec + name = "Degraded Security HUDsunglasses" + result = /obj/item/clothing/glasses/hud/security/sunglasses/degraded + time = 2 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) + reqs = list( + /obj/item/clothing/glasses/hud/security = 1, + /obj/item/clothing/glasses/sunglasses = 1, + /obj/item/stack/cable_coil = 5 + ) + category = CAT_TAILORING + subcategory = CAT_EYEWEAR + +/datum/crafting_recipe/deghudsunsecremoval + name = "Degraded Security HUD removal" + result = /obj/item/clothing/glasses/sunglasses + time = 2 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) + reqs = list(/obj/item/clothing/glasses/hud/security/sunglasses/degraded = 1) + category = CAT_TAILORING + subcategory = CAT_EYEWEAR + +/datum/crafting_recipe/deghudsunmed + name = "Degraded Medical HUDsunglasses" + result = /obj/item/clothing/glasses/hud/health/sunglasses/degraded + time = 2 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) + reqs = list( + /obj/item/clothing/glasses/hud/health = 1, + /obj/item/clothing/glasses/sunglasses = 1, + /obj/item/stack/cable_coil = 5 + ) + category = CAT_TAILORING + subcategory = CAT_EYEWEAR + +/datum/crafting_recipe/deghudsunmedremoval + name = "Degraded Medical HUD removal" + result = /obj/item/clothing/glasses/sunglasses + time = 2 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) + reqs = list(/obj/item/clothing/glasses/hud/health/sunglasses/degraded = 1) + category = CAT_TAILORING + subcategory = CAT_EYEWEAR + +/datum/crafting_recipe/deghudsundiag + name = "Degraded Diagnostic HUDsunglasses" + result = /obj/item/clothing/glasses/hud/diagnostic/sunglasses/degraded + time = 2 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) + reqs = list( + /obj/item/clothing/glasses/hud/diagnostic = 1, + /obj/item/clothing/glasses/sunglasses = 1, + /obj/item/stack/cable_coil = 5 + ) + category = CAT_TAILORING + subcategory = CAT_EYEWEAR + +/datum/crafting_recipe/deghudsundiagremoval + name = "Degraded Diagnostic HUD removal" + result = /obj/item/clothing/glasses/sunglasses + time = 2 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) + reqs = list(/obj/item/clothing/glasses/hud/diagnostic/sunglasses/degraded = 1) + category = CAT_TAILORING + subcategory = CAT_EYEWEAR + +/datum/crafting_recipe/degsunhudscience + name = "Degraded Science Sunglasses" + result = /obj/item/clothing/glasses/science/sciencesun/degraded + time = 2 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) + reqs = list( + /obj/item/clothing/glasses/science = 1, + /obj/item/clothing/glasses/sunglasses = 1, + /obj/item/stack/cable_coil = 5 + ) + category = CAT_TAILORING + subcategory = CAT_EYEWEAR + +/datum/crafting_recipe/degsunhudscienceremoval + name = "Degraded Science Sunglasses removal" + result = /obj/item/clothing/glasses/sunglasses + time = 2 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) + reqs = list(/obj/item/clothing/glasses/science/sciencesun/degraded = 1) + category = CAT_TAILORING + subcategory = CAT_EYEWEAR + +/datum/crafting_recipe/hudpresmed + name = "Prescription Medical HUDglasses" + result = /obj/item/clothing/glasses/hud/health/prescription + time = 2 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) + reqs = list( + /obj/item/clothing/glasses/hud/health = 1, + /obj/item/clothing/glasses/regular/ = 1, + /obj/item/stack/cable_coil = 5 + ) + category = CAT_TAILORING + subcategory = CAT_EYEWEAR + +/datum/crafting_recipe/hudpressec + name = "Prescription Security HUDglasses" + result = /obj/item/clothing/glasses/hud/security/prescription + time = 2 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) + reqs = list(/obj/item/clothing/glasses/hud/security = 1, + /obj/item/clothing/glasses/regular/ = 1, + /obj/item/stack/cable_coil = 5) + category = CAT_TAILORING + subcategory = CAT_EYEWEAR + +/datum/crafting_recipe/hudpressci + name = "Prescription Science Goggles" + result = /obj/item/clothing/glasses/science/prescription + time = 2 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) + reqs = list( + /obj/item/clothing/glasses/science = 1, + /obj/item/clothing/glasses/regular/ = 1, + /obj/item/stack/cable_coil = 5 + ) + category = CAT_TAILORING + subcategory = CAT_EYEWEAR + +/datum/crafting_recipe/hudpresmeson + name = "Prescription Meson Scanner" + result = /obj/item/clothing/glasses/meson/prescription + time = 2 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) + reqs = list( + /obj/item/clothing/glasses/meson = 1, + /obj/item/clothing/glasses/regular/ = 1, + /obj/item/stack/cable_coil = 5 + ) + category = CAT_TAILORING + subcategory = CAT_EYEWEAR + +/datum/crafting_recipe/hudpresdiag + name = "Prescription Diagnostic HUDsunglasses" + result = /obj/item/clothing/glasses/hud/diagnostic/prescription + time = 2 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) + reqs = list( + /obj/item/clothing/glasses/hud/diagnostic = 1, + /obj/item/clothing/glasses/regular/ = 1, + /obj/item/stack/cable_coil = 5 + ) + category = CAT_TAILORING + subcategory = CAT_EYEWEAR diff --git a/code/datums/components/crafting/crafting_lists/weaponry/ammunitions.dm b/code/datums/components/crafting/crafting_lists/weaponry/ammunitions.dm new file mode 100644 index 0000000000000..dc02f82d918ef --- /dev/null +++ b/code/datums/components/crafting/crafting_lists/weaponry/ammunitions.dm @@ -0,0 +1,268 @@ + +/// Ammunition Crafting + +/datum/crafting_recipe/meteorslug + name = "Meteorslug Shell" + result = /obj/item/ammo_casing/shotgun/meteorslug + time = 0.5 SECONDS + tools = list(TOOL_SCREWDRIVER) + reqs = list( + /obj/item/ammo_casing/shotgun/techshell = 1, + /obj/item/rcd_ammo = 1, + /obj/item/stock_parts/manipulator = 2 + ) + category = CAT_WEAPONRY + subcategory = CAT_AMMO + dangerous_craft = TRUE + +/datum/crafting_recipe/pulseslug + name = "Pulse Slug Shell" + result = /obj/item/ammo_casing/shotgun/pulseslug + time = 0.5 SECONDS + tools = list(TOOL_SCREWDRIVER) + reqs = list( + /obj/item/ammo_casing/shotgun/techshell = 1, + /obj/item/stock_parts/capacitor/adv = 2, + /obj/item/stock_parts/micro_laser/ultra = 1 + ) + category = CAT_WEAPONRY + subcategory = CAT_AMMO + dangerous_craft = TRUE + +/datum/crafting_recipe/dragonsbreath + name = "Dragonsbreath Shell" + result = /obj/item/ammo_casing/shotgun/dragonsbreath + time = 0.5 SECONDS + tools = list(TOOL_SCREWDRIVER) + reqs = list( + /obj/item/ammo_casing/shotgun/techshell = 1, + /datum/reagent/phosphorus = 5 + ) + category = CAT_WEAPONRY + subcategory = CAT_AMMO + dangerous_craft = TRUE + +/datum/crafting_recipe/frag12 + name = "FRAG-12 Shell" + result = /obj/item/ammo_casing/shotgun/frag12 + time = 0.5 SECONDS + tools = list(TOOL_SCREWDRIVER) + reqs = list( + /obj/item/ammo_casing/shotgun/techshell = 1, + /datum/reagent/glycerol = 5, + /datum/reagent/toxin/acid = 5, + /datum/reagent/toxin/acid/fluacid = 5 + ) + category = CAT_WEAPONRY + subcategory = CAT_AMMO + dangerous_craft = TRUE + +/datum/crafting_recipe/ionslug + name = "Ion Scatter Shell" + result = /obj/item/ammo_casing/shotgun/ion + time = 0.5 SECONDS + tools = list(TOOL_SCREWDRIVER) + reqs = list( + /obj/item/ammo_casing/shotgun/techshell = 1, + /obj/item/stock_parts/micro_laser/ultra = 1, + /obj/item/stock_parts/subspace/crystal = 1 + ) + category = CAT_WEAPONRY + subcategory = CAT_AMMO + dangerous_craft = TRUE + +/datum/crafting_recipe/improvisedslug + name = "Improvised Shotgun Shell" + result = /obj/item/ammo_casing/shotgun/improvised + time = 0.5 SECONDS + tools = list(TOOL_SCREWDRIVER) + reqs = list( + /obj/item/grenade/chem_grenade = 1, + /obj/item/stack/sheet/iron = 1, + /obj/item/stack/cable_coil = 1, + /datum/reagent/fuel = 10 + ) + category = CAT_WEAPONRY + subcategory = CAT_AMMO + dangerous_craft = TRUE + +/datum/crafting_recipe/improvisedglassslug + name = "Glasspack Shotgun Shell" + result = /obj/item/ammo_casing/shotgun/improvised/glasspack + time = 0.5 SECONDS + tools = list(TOOL_SCREWDRIVER) + reqs = list( + /obj/item/grenade/chem_grenade = 1, + /obj/item/stack/sheet/glass = 1, + /obj/item/stack/cable_coil = 1, + /datum/reagent/fuel = 10 + ) + category = CAT_WEAPONRY + subcategory = CAT_AMMO + dangerous_craft = TRUE + +/datum/crafting_recipe/laserslug + name = "Scatter Laser Shell" + result = /obj/item/ammo_casing/shotgun/laserslug + time = 0.5 SECONDS + tools = list(TOOL_SCREWDRIVER) + reqs = list( + /obj/item/ammo_casing/shotgun/techshell = 1, + /obj/item/stock_parts/capacitor/adv = 1, + /obj/item/stock_parts/micro_laser/high = 1 + ) + category = CAT_WEAPONRY + subcategory = CAT_AMMO + dangerous_craft = TRUE + +/datum/crafting_recipe/a762improv + name = "Improvised 7.62 Cartridge" + result = /obj/item/ammo_casing/a762/improv + time = 0.5 SECONDS + tools = list(TOOL_SCREWDRIVER) + reqs = list( + /obj/item/grenade/chem_grenade = 1, + /obj/item/stack/sheet/iron = 1, + /obj/item/stack/cable_coil = 1, + /datum/reagent/fuel = 10 + ) + category = CAT_WEAPONRY + subcategory = CAT_AMMO + dangerous_craft = TRUE + +/datum/crafting_recipe/a762hotload + name = "Hot-Loaded 7.62 Cartridge" + result = /obj/item/ammo_casing/a762/improv/hotload + time = 0.5 SECONDS + tools = list(TOOL_SCREWDRIVER) + reqs = list( + /obj/item/grenade/chem_grenade = 1, + /obj/item/stack/sheet/iron = 1, + /obj/item/stack/cable_coil = 1, + /datum/reagent/blackpowder = 10 + ) + category = CAT_WEAPONRY + subcategory = CAT_AMMO + dangerous_craft = TRUE + +/datum/crafting_recipe/improv9mm_pack + name = "Improvised 9mm Ammo Pack" + result = /obj/item/ammo_box/pouch/c9mm/improv + time = 1.5 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) + reqs = list( + /obj/item/grenade/chem_grenade = 2, + /obj/item/stack/rods = 3, + /obj/item/stack/cable_coil = 3, + /datum/reagent/fuel = 20, + /obj/item/paper = 1 + ) + category = CAT_WEAPONRY + subcategory = CAT_AMMO + dangerous_craft = TRUE + +/datum/crafting_recipe/improv10mm_pack + name = "Improvised 10mm Ammo Pack" + result = /obj/item/ammo_box/pouch/c10mm/improv + time = 1.5 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) + reqs = list( + /obj/item/grenade/chem_grenade = 2, + /obj/item/stack/sheet/iron = 2, + /obj/item/stack/cable_coil = 2, + /datum/reagent/fuel = 20, + /obj/item/paper = 1 + ) + category = CAT_WEAPONRY + subcategory = CAT_AMMO + dangerous_craft = TRUE + +/datum/crafting_recipe/improv38_pack + name = "Improvised .38 Ammo Pack" + result = /obj/item/ammo_box/pouch/c38/improv + time = 1.5 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) + reqs = list( + /obj/item/grenade/chem_grenade = 2, + /obj/item/stack/rods = 2, + /obj/item/stack/cable_coil = 2, + /datum/reagent/fuel = 20, + /obj/item/paper = 1 + ) + category = CAT_WEAPONRY + subcategory = CAT_AMMO + dangerous_craft = TRUE + +/datum/crafting_recipe/improv357 + name = "Improvised .357 Cartridge" + result = /obj/item/ammo_casing/a357/improv + time = 0.5 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) + reqs = list( + /obj/item/grenade/chem_grenade = 1, + /obj/item/stack/sheet/iron = 1, + /obj/item/stack/cable_coil = 2, + /datum/reagent/blackpowder = 10 + ) + category = CAT_WEAPONRY + subcategory = CAT_AMMO + dangerous_craft = TRUE + +/datum/crafting_recipe/pipesmg_mag + name = "Pipe Repeater Magazine" + result = /obj/item/ammo_box/magazine/pipem9mm + time = 5 SECONDS + tools = list(TOOL_WELDER, TOOL_WIRECUTTER) + reqs = list( + /obj/item/grenade/chem_grenade = 1, + /obj/item/stock_parts/matter_bin = 1, + /obj/item/stack/cable_coil = 3, + /obj/item/stack/package_wrap = 3 + ) + category = CAT_WEAPONRY + subcategory = CAT_AMMO + +/datum/crafting_recipe/arrow //1 metal sheet = 2 rods= 2 arrows + name = "Arrow" + result = /obj/item/ammo_casing/caseless/arrow/wood + time = 3 SECONDS + reqs = list( + /obj/item/stack/sheet/wood = 1, + /obj/item/stack/sheet/silk = 1, + /obj/item/stack/rods = 1 + ) + category = CAT_WEAPONRY + subcategory = CAT_AMMO + +/datum/crafting_recipe/bone_arrow + name = "Bone Arrow" + result = /obj/item/ammo_casing/caseless/arrow/bone + time = 3 SECONDS + reqs = list( + /obj/item/stack/sheet/bone = 1, + /obj/item/stack/sheet/sinew = 1, + /obj/item/ammo_casing/caseless/arrow/ash = 1 + ) + category = CAT_WEAPONRY + subcategory = CAT_AMMO + +/datum/crafting_recipe/ashen_arrow + name = "Ashen arrow" + result = /obj/item/ammo_casing/caseless/arrow/ash + tools = list(TOOL_WELDER) + time = 3 SECONDS + reqs = list(/obj/item/ammo_casing/caseless/arrow/wood = 1) + category = CAT_WEAPONRY + subcategory = CAT_AMMO + +/datum/crafting_recipe/bronze_arrow + name = "Bronze arrow" + result = /obj/item/ammo_casing/caseless/arrow/bronze + time = 3 SECONDS + reqs = list( + /obj/item/stack/sheet/wood = 1, + /obj/item/stack/sheet/bronze = 1, + /obj/item/stack/sheet/silk = 1 + ) + category = CAT_WEAPONRY + subcategory = CAT_AMMO diff --git a/code/datums/components/crafting/crafting_lists/weaponry/weapons.dm b/code/datums/components/crafting/crafting_lists/weaponry/weapons.dm new file mode 100644 index 0000000000000..1fa94e35599c1 --- /dev/null +++ b/code/datums/components/crafting/crafting_lists/weaponry/weapons.dm @@ -0,0 +1,398 @@ + +/// Weapon Crafting + +/datum/crafting_recipe/IED + name = "IED" + result = /obj/item/grenade/iedcasing + time = 1.5 SECONDS + reqs = list( + /datum/reagent/fuel = 50, + /obj/item/stack/cable_coil = 1, + /obj/item/assembly/igniter = 1, + /obj/item/reagent_containers/food/drinks/soda_cans = 1 + ) + parts = list(/obj/item/reagent_containers/food/drinks/soda_cans = 1) + category = CAT_WEAPONRY + subcategory = CAT_WEAPON + dangerous_craft = TRUE + +/datum/crafting_recipe/lance + name = "Explosive Lance (Grenade)" + result = /obj/item/spear/explosive + time = 1.5 SECONDS + reqs = list( + /obj/item/spear = 1, + /obj/item/grenade = 1 + ) + parts = list( + /obj/item/spear = 1, + /obj/item/grenade = 1 + ) + blacklist = list(/obj/item/spear/bonespear) + category = CAT_WEAPONRY + subcategory = CAT_WEAPON + dangerous_craft = TRUE + +/datum/crafting_recipe/strobeshield + name = "Strobe Shield" + result = /obj/item/shield/riot/flash + time = 4 SECONDS + reqs = list( + /obj/item/wallframe/flasher = 1, + /obj/item/assembly/flash/handheld = 1, + /obj/item/shield/riot = 1 + ) + category = CAT_WEAPONRY + subcategory = CAT_WEAPON + +/datum/crafting_recipe/molotov + name = "Molotov" + result = /obj/item/reagent_containers/food/drinks/bottle/molotov + time = 4 SECONDS + reqs = list( + /obj/item/reagent_containers/glass/rag = 1, + /obj/item/reagent_containers/food/drinks/bottle = 1 + ) + parts = list(/obj/item/reagent_containers/food/drinks/bottle = 1) + category = CAT_WEAPONRY + subcategory = CAT_WEAPON + dangerous_craft = TRUE + +/datum/crafting_recipe/stunprod + name = "Stunprod" + result = /obj/item/melee/baton/cattleprod + time = 4 SECONDS + reqs = list( + /obj/item/restraints/handcuffs/cable = 1, + /obj/item/stack/rods = 1, + /obj/item/assembly/igniter = 1 + ) + category = CAT_WEAPONRY + subcategory = CAT_WEAPON + dangerous_craft = TRUE + +/datum/crafting_recipe/teleprod + name = "Teleprod" + result = /obj/item/melee/baton/cattleprod/teleprod + time = 4 SECONDS + reqs = list( + /obj/item/restraints/handcuffs/cable = 1, + /obj/item/stack/rods = 1, + /obj/item/assembly/igniter = 1, + /obj/item/stack/ore/bluespace_crystal = 1 + ) + category = CAT_WEAPONRY + subcategory = CAT_WEAPON + dangerous_craft = TRUE + +/datum/crafting_recipe/bola + name = "Bola" + result = /obj/item/restraints/legcuffs/bola + time = 2 SECONDS//15 faster than crafting them by hand! + reqs = list( + /obj/item/restraints/handcuffs/cable = 1, + /obj/item/stack/sheet/iron = 6 + ) + category= CAT_WEAPONRY + subcategory = CAT_WEAPON + +/datum/crafting_recipe/gonbola + name = "Gonbola" + result = /obj/item/restraints/legcuffs/bola/gonbola + time = 4 SECONDS + reqs = list( + /obj/item/restraints/handcuffs/cable = 1, + /obj/item/stack/sheet/iron = 6, + /obj/item/stack/sheet/animalhide/gondola = 1 + ) + category= CAT_WEAPONRY + subcategory = CAT_WEAPON + dangerous_craft = TRUE + +/datum/crafting_recipe/tailclub + name = "Tail Club" + result = /obj/item/club/tailclub + time = 4 SECONDS + reqs = list( + /obj/item/organ/tail/lizard = 1, + /obj/item/stack/sheet/iron = 1 + ) + category = CAT_WEAPONRY + subcategory = CAT_WEAPON + +/datum/crafting_recipe/club + name = "improvised maul" + result = /obj/item/club/ghettoclub + time = 4 SECONDS + reqs = list( + /obj/item/stack/sheet/iron = 1, + /obj/item/stack/rods = 1, + /obj/item/restraints/handcuffs/cable = 2, + /obj/item/stack/sheet/cotton/cloth = 3 + ) + category = CAT_WEAPONRY + subcategory = CAT_WEAPON + dangerous_craft = TRUE + +/datum/crafting_recipe/tailwhip + name = "Liz O' Nine Tails" + result = /obj/item/melee/chainofcommand/tailwhip + time = 4 SECONDS + reqs = list( + /obj/item/organ/tail/lizard = 1, + /obj/item/stack/cable_coil = 1 + ) + category = CAT_WEAPONRY + subcategory = CAT_WEAPON + +/datum/crafting_recipe/catwhip + name = "Cat O' Nine Tails" + result = /obj/item/melee/chainofcommand/tailwhip/kitty + time = 4 SECONDS + reqs = list( + /obj/item/organ/tail/cat = 1, + /obj/item/stack/cable_coil = 1 + ) + category = CAT_WEAPONRY + subcategory = CAT_WEAPON + +/datum/crafting_recipe/improvised_pneumatic_cannon //Pretty easy to obtain but arguably underused for what it is... + name = "Pneumatic Cannon" + result = /obj/item/pneumatic_cannon/ghetto + time = 5 SECONDS + tools = list(TOOL_WELDER, TOOL_WRENCH) + reqs = list( + /obj/item/stack/sheet/iron = 4, + /obj/item/stack/package_wrap = 8, + /obj/item/pipe = 2 + ) + category = CAT_WEAPONRY + subcategory = CAT_WEAPON + dangerous_craft = TRUE + +/datum/crafting_recipe/flamethrower + name = "Flamethrower" + result = /obj/item/flamethrower + time = 10 SECONDS + tools = list(TOOL_SCREWDRIVER) + reqs = list( + /obj/item/weldingtool = 1, + /obj/item/assembly/igniter = 1, + /obj/item/stack/rods = 1 + ) + parts = list( + /obj/item/assembly/igniter = 1, + /obj/item/weldingtool = 1 + ) + category = CAT_WEAPONRY + subcategory = CAT_WEAPON + dangerous_craft = TRUE + +/datum/crafting_recipe/pipebow + name = "Pipe Bow" + result = /obj/item/gun/ballistic/bow/pipe + time = 12 SECONDS + reqs = list( + /obj/item/pipe = 5, + /obj/item/stack/sheet/plastic = 15, + /obj/item/weaponcrafting/silkstring = 4 + ) + category = CAT_WEAPONRY + subcategory = CAT_WEAPON + dangerous_craft = TRUE + +/datum/crafting_recipe/woodenbow + name = "Wooden Bow" + result = /obj/item/gun/ballistic/bow + time = 12 SECONDS + reqs = list( + /obj/item/stack/sheet/wood = 8, + /obj/item/stack/sheet/iron = 2, + /obj/item/weaponcrafting/silkstring = 4 + ) + category = CAT_WEAPONRY + subcategory = CAT_WEAPON + + +/datum/crafting_recipe/ishotgun + name = "Improvised Shotgun" + result = /obj/item/gun/ballistic/shotgun/doublebarrel/improvised + time = 10 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WELDER) + reqs = list( + /obj/item/weaponcrafting/receiver = 1, + /obj/item/pipe = 1, + /obj/item/weaponcrafting/stock = 1, + /obj/item/assembly/igniter = 1, + /obj/item/stack/package_wrap = 5 + ) + category = CAT_WEAPONRY + subcategory = CAT_WEAPON + dangerous_craft = TRUE + +/datum/crafting_recipe/piperifle + name = "Singleshot Pipe Rifle" + result = /obj/item/gun/ballistic/rifle/pipe + time = 10 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WELDER) + reqs = list( + /obj/item/weaponcrafting/receiver = 1, + /obj/item/pipe = 1, + /obj/item/weaponcrafting/stock = 1, + /obj/item/assembly/igniter = 1, + /obj/item/stack/package_wrap = 5 + ) + category = CAT_WEAPONRY + subcategory = CAT_WEAPON + dangerous_craft = TRUE + +/datum/crafting_recipe/pipesmg + name = "Mag-Fed Pipe Repeater" + result = /obj/item/gun/ballistic/automatic/pipe_smg + time = 10 SECONDS + tools = list(TOOL_SCREWDRIVER, TOOL_WELDER) + reqs = list( + /obj/item/weaponcrafting/receiver = 1, + /obj/item/pipe = 2, + /obj/item/stack/rods = 2, + /obj/item/stack/sheet/wood = 2, + /obj/item/assembly/igniter = 1, + /obj/item/stack/package_wrap = 5 + ) + category = CAT_WEAPONRY + subcategory = CAT_WEAPON + dangerous_craft = TRUE + +/datum/crafting_recipe/chainsaw + name = "Chainsaw" + result = /obj/item/chainsaw + time = 5 SECONDS + tools = list(TOOL_WELDER) + reqs = list( + /obj/item/circular_saw = 1, + /obj/item/stack/cable_coil = 3, + /obj/item/stack/sheet/plasteel = 5 + ) + category = CAT_WEAPONRY + subcategory = CAT_WEAPON + dangerous_craft = TRUE + +/datum/crafting_recipe/spear + name = "Spear" + result = /obj/item/spear + time = 4 SECONDS + reqs = list( + /obj/item/restraints/handcuffs/cable = 1, + /obj/item/shard = 1, + /obj/item/stack/rods = 1 + ) + parts = list(/obj/item/shard = 1) + category = CAT_WEAPONRY + subcategory = CAT_WEAPON + dangerous_craft = TRUE + +/datum/crafting_recipe/switchblade_kitchen + name = "Iron Switchblade" + result = /obj/item/switchblade/kitchen + time = 4 SECONDS + tools = list(TOOL_WELDER) + reqs = list( + /obj/item/stack/sheet/iron = 2, + /obj/item/weaponcrafting/receiver = 1, + /obj/item/knife = 1, + /obj/item/stack/cable_coil = 2 + ) + category = CAT_WEAPONRY + subcategory = CAT_WEAPON + dangerous_craft = TRUE + +/datum/crafting_recipe/switchblade_kitchenupgrade + name = "Plastitanium Switchblade" + result = /obj/item/switchblade/plastitanium + time = 2 SECONDS + tools = list(TOOL_WELDER) + reqs = list( + /obj/item/switchblade/kitchen = 1, + /obj/item/stack/sheet/mineral/plastitanium = 2 + ) + category = CAT_WEAPONRY + subcategory = CAT_WEAPON + dangerous_craft = TRUE + +/datum/crafting_recipe/switchblade_plastitanium + name = "Plastitanium Switchblade" + result = /obj/item/switchblade/plastitanium + time = 6.5 SECONDS + tools = list(TOOL_WELDER) + reqs = list( + /obj/item/weaponcrafting/stock = 1, + /obj/item/weaponcrafting/receiver = 1, + /obj/item/knife = 1, + /obj/item/stack/cable_coil = 2, + /obj/item/stack/sheet/mineral/plastitanium = 2 + ) + category = CAT_WEAPONRY + subcategory = CAT_WEAPON + dangerous_craft = TRUE + +/datum/crafting_recipe/chemical_payload + name = "Chemical Payload (C4)" + result = /obj/item/bombcore/chemical + time = 3 SECONDS + reqs = list( + /obj/item/stock_parts/matter_bin = 1, + /obj/item/grenade/plastic/c4 = 1, + /obj/item/grenade/chem_grenade = 2 + ) + parts = list( + /obj/item/stock_parts/matter_bin = 1, + /obj/item/grenade/chem_grenade = 2 + ) + category = CAT_WEAPONRY + subcategory = CAT_WEAPON + dangerous_craft = TRUE + +/datum/crafting_recipe/chemical_payload2 + name = "Chemical Payload (Gibtonite)" + result = /obj/item/bombcore/chemical + time = 5 SECONDS + reqs = list( + /obj/item/stock_parts/matter_bin = 1, + /obj/item/gibtonite = 1, + /obj/item/grenade/chem_grenade = 2 + ) + parts = list( + /obj/item/stock_parts/matter_bin = 1, + /obj/item/grenade/chem_grenade = 2 + ) + category = CAT_WEAPONRY + subcategory = CAT_WEAPON + dangerous_craft = TRUE + +// Shank - Makeshift weapon that can embed on throw +/datum/crafting_recipe/shank + name = "Shank" + result = /obj/item/knife/shank + time = 2 SECONDS + tools = list(TOOL_WIRECUTTER) + reqs = list( + /obj/item/shard = 1, + /obj/item/stack/cable_coil = 10 + ) + category = CAT_WEAPONRY + subcategory = CAT_WEAPON + always_available = TRUE + dangerous_craft = TRUE + +/datum/crafting_recipe/sharpmop + name = "Sharpened Mop" + result = /obj/item/mop/sharp + time = 3 SECONDS + tools = list(TOOL_WIRECUTTER) + reqs = list( + /obj/item/mop = 1, + /obj/item/shard = 1 + ) + category = CAT_WEAPONRY + subcategory = CAT_WEAPON + dangerous_craft = TRUE diff --git a/code/datums/components/crafting/recipes.dm b/code/datums/components/crafting/recipes.dm deleted file mode 100644 index 7f195a3d60152..0000000000000 --- a/code/datums/components/crafting/recipes.dm +++ /dev/null @@ -1,1319 +0,0 @@ - -/datum/crafting_recipe - var/name = "" //in-game display name - var/reqs[] = list() //type paths of items consumed associated with how many are needed - var/blacklist[] = list() //type paths of items explicitly not allowed as an ingredient - var/result //type path of item resulting from this craft - var/tools[] = list() //type paths of items needed but not consumed - var/time = 30 //time in deciseconds - var/parts[] = list() //type paths of items that will be placed in the result - var/chem_catalysts[] = list() //like tools but for reagents - var/category = CAT_NONE //where it shows up in the crafting UI - var/subcategory = CAT_NONE - var/always_available = TRUE //Set to FALSE if it needs to be learned first. - var/one_per_turf = FALSE ///Should only one object exist on the same turf? - var/dangerous_craft = FALSE /// Should admins be notified about this getting created by a non-antagonist? - -/datum/crafting_recipe/New() - if(!(result in reqs)) - blacklist += result - -/** - * Run custom pre-craft checks for this recipe - * - * user: the /mob that initiated the crafting - * collected_requirements: A list of lists of /obj/item instances that satisfy reqs. Top level list is keyed by requirement path. - */ -/datum/crafting_recipe/proc/check_requirements(mob/user, list/collected_requirements) - return TRUE - -/datum/crafting_recipe/IED - name = "IED" - result = /obj/item/grenade/iedcasing - reqs = list(/datum/reagent/fuel = 50, - /obj/item/stack/cable_coil = 1, - /obj/item/assembly/igniter = 1, - /obj/item/reagent_containers/food/drinks/soda_cans = 1) - parts = list(/obj/item/reagent_containers/food/drinks/soda_cans = 1) - time = 15 - category = CAT_WEAPONRY - subcategory = CAT_WEAPON - dangerous_craft = TRUE - -/datum/crafting_recipe/lance - name = "Explosive Lance (Grenade)" - result = /obj/item/spear/explosive - reqs = list(/obj/item/spear = 1, - /obj/item/grenade = 1) - blacklist = list(/obj/item/spear/bonespear) - parts = list(/obj/item/spear = 1, - /obj/item/grenade = 1) - time = 15 - category = CAT_WEAPONRY - subcategory = CAT_WEAPON - dangerous_craft = TRUE - -/datum/crafting_recipe/strobeshield - name = "Strobe Shield" - result = /obj/item/shield/riot/flash - reqs = list(/obj/item/wallframe/flasher = 1, - /obj/item/assembly/flash/handheld = 1, - /obj/item/shield/riot = 1) - time = 40 - category = CAT_WEAPONRY - subcategory = CAT_WEAPON - -/datum/crafting_recipe/molotov - name = "Molotov" - result = /obj/item/reagent_containers/food/drinks/bottle/molotov - reqs = list(/obj/item/reagent_containers/glass/rag = 1, - /obj/item/reagent_containers/food/drinks/bottle = 1) - parts = list(/obj/item/reagent_containers/food/drinks/bottle = 1) - time = 40 - category = CAT_WEAPONRY - subcategory = CAT_WEAPON - dangerous_craft = TRUE - -/datum/crafting_recipe/stunprod - name = "Stunprod" - result = /obj/item/melee/baton/cattleprod - reqs = list(/obj/item/restraints/handcuffs/cable = 1, - /obj/item/stack/rods = 1, - /obj/item/assembly/igniter = 1) - time = 40 - category = CAT_WEAPONRY - subcategory = CAT_WEAPON - dangerous_craft = TRUE - -/datum/crafting_recipe/teleprod - name = "Teleprod" - result = /obj/item/melee/baton/cattleprod/teleprod - reqs = list(/obj/item/restraints/handcuffs/cable = 1, - /obj/item/stack/rods = 1, - /obj/item/assembly/igniter = 1, - /obj/item/stack/ore/bluespace_crystal = 1) - time = 40 - category = CAT_WEAPONRY - subcategory = CAT_WEAPON - dangerous_craft = TRUE - -/datum/crafting_recipe/bola - name = "Bola" - result = /obj/item/restraints/legcuffs/bola - reqs = list(/obj/item/restraints/handcuffs/cable = 1, - /obj/item/stack/sheet/iron = 6) - time = 20//15 faster than crafting them by hand! - category= CAT_WEAPONRY - subcategory = CAT_WEAPON - -/datum/crafting_recipe/gonbola - name = "Gonbola" - result = /obj/item/restraints/legcuffs/bola/gonbola - reqs = list(/obj/item/restraints/handcuffs/cable = 1, - /obj/item/stack/sheet/iron = 6, - /obj/item/stack/sheet/animalhide/gondola = 1) - time = 40 - category= CAT_WEAPONRY - subcategory = CAT_WEAPON - dangerous_craft = TRUE - -/datum/crafting_recipe/tailclub - name = "Tail Club" - result = /obj/item/club/tailclub - reqs = list(/obj/item/organ/tail/lizard = 1, - /obj/item/stack/sheet/iron = 1) - time = 40 - category = CAT_WEAPONRY - subcategory = CAT_WEAPON - -/datum/crafting_recipe/club - name = "improvised maul" - result = /obj/item/club/ghettoclub - reqs = list(/obj/item/stack/sheet/iron = 1, - /obj/item/stack/rods = 1, - /obj/item/restraints/handcuffs/cable = 2, - /obj/item/stack/sheet/cotton/cloth = 3) - time = 40 - category = CAT_WEAPONRY - subcategory = CAT_WEAPON - dangerous_craft = TRUE - -/datum/crafting_recipe/tailwhip - name = "Liz O' Nine Tails" - result = /obj/item/melee/chainofcommand/tailwhip - reqs = list(/obj/item/organ/tail/lizard = 1, - /obj/item/stack/cable_coil = 1) - time = 40 - category = CAT_WEAPONRY - subcategory = CAT_WEAPON - -/datum/crafting_recipe/catwhip - name = "Cat O' Nine Tails" - result = /obj/item/melee/chainofcommand/tailwhip/kitty - reqs = list(/obj/item/organ/tail/cat = 1, - /obj/item/stack/cable_coil = 1) - time = 40 - category = CAT_WEAPONRY - subcategory = CAT_WEAPON - -/datum/crafting_recipe/ed209 - name = "ED209" - result = /mob/living/simple_animal/bot/ed209 - reqs = list(/obj/item/robot_suit = 1, - /obj/item/clothing/head/helmet = 1, - /obj/item/clothing/suit/armor/vest = 1, - /obj/item/bodypart/l_leg/robot = 1, - /obj/item/bodypart/r_leg/robot = 1, - /obj/item/stack/sheet/iron = 1, - /obj/item/stack/cable_coil = 1, - /obj/item/gun/energy/disabler = 1, - /obj/item/stock_parts/cell = 1, - /obj/item/assembly/prox_sensor = 1) - tools = list(TOOL_WELDER, TOOL_SCREWDRIVER) - time = 60 - category = CAT_ROBOT - -/datum/crafting_recipe/secbot - name = "Secbot" - result = /mob/living/simple_animal/bot/secbot - reqs = list(/obj/item/assembly/signaler = 1, - /obj/item/clothing/head/helmet/sec = 1, - /obj/item/melee/baton = 1, - /obj/item/assembly/prox_sensor = 1, - /obj/item/bodypart/r_arm/robot = 1) - tools = list(TOOL_WELDER) - time = 60 - category = CAT_ROBOT - -/datum/crafting_recipe/cleanbot - name = "Cleanbot" - result = /mob/living/simple_animal/bot/cleanbot - reqs = list(/obj/item/reagent_containers/glass/bucket = 1, - /obj/item/assembly/prox_sensor = 1, - /obj/item/bodypart/r_arm/robot = 1) - time = 40 - category = CAT_ROBOT - -/datum/crafting_recipe/cleanbot/larry - name = "Larry" - result = /mob/living/simple_animal/bot/cleanbot/larry - reqs = list(/obj/item/larryframe = 1, - /obj/item/assembly/prox_sensor = 1, - /obj/item/bodypart/r_arm/robot = 1) - - -/datum/crafting_recipe/floorbot - name = "Floorbot" - result = /mob/living/simple_animal/bot/floorbot - reqs = list(/obj/item/storage/toolbox = 1, - /obj/item/stack/tile/iron = 10, - /obj/item/assembly/prox_sensor = 1, - /obj/item/bodypart/r_arm/robot = 1) - time = 40 - category = CAT_ROBOT - -/datum/crafting_recipe/medbot - name = "Medbot" - result = /mob/living/simple_animal/bot/medbot - reqs = list(/obj/item/healthanalyzer = 1, - /obj/item/storage/firstaid = 1, - /obj/item/assembly/prox_sensor = 1, - /obj/item/bodypart/r_arm/robot = 1) - time = 40 - category = CAT_ROBOT - -/datum/crafting_recipe/honkbot - name = "Honkbot" - result = /mob/living/simple_animal/bot/honkbot - reqs = list(/obj/item/storage/box/clown = 1, - /obj/item/bodypart/r_arm/robot = 1, - /obj/item/assembly/prox_sensor = 1, - /obj/item/bikehorn/ = 1) - time = 40 - category = CAT_ROBOT - -/datum/crafting_recipe/Firebot - name = "Firebot" - result = /mob/living/simple_animal/bot/firebot - reqs = list(/obj/item/extinguisher = 1, - /obj/item/bodypart/r_arm/robot = 1, - /obj/item/assembly/prox_sensor = 1, - /obj/item/clothing/head/utility/hardhat/red = 1) - time = 40 - category = CAT_ROBOT - -/datum/crafting_recipe/Atmosbot - name = "Atmosbot" - result = /mob/living/simple_animal/bot/atmosbot - reqs = list(/obj/item/analyzer = 1, - /obj/item/bodypart/r_arm/robot = 1, - /obj/item/assembly/prox_sensor = 1, - /obj/item/tank/internals = 1) - time = 40 - category = CAT_ROBOT - -/datum/crafting_recipe/improvised_pneumatic_cannon //Pretty easy to obtain but - name = "Pneumatic Cannon" - result = /obj/item/pneumatic_cannon/ghetto - tools = list(TOOL_WELDER, TOOL_WRENCH) - reqs = list(/obj/item/stack/sheet/iron = 4, - /obj/item/stack/package_wrap = 8, - /obj/item/pipe = 2) - time = 50 - category = CAT_WEAPONRY - subcategory = CAT_WEAPON - dangerous_craft = TRUE - -/datum/crafting_recipe/flamethrower - name = "Flamethrower" - result = /obj/item/flamethrower - reqs = list(/obj/item/weldingtool = 1, - /obj/item/assembly/igniter = 1, - /obj/item/stack/rods = 1) - parts = list(/obj/item/assembly/igniter = 1, - /obj/item/weldingtool = 1) - tools = list(TOOL_SCREWDRIVER) - time = 10 - category = CAT_WEAPONRY - subcategory = CAT_WEAPON - dangerous_craft = TRUE - -/datum/crafting_recipe/pipebow - name = "Pipe Bow" - result = /obj/item/gun/ballistic/bow/pipe - reqs = list(/obj/item/pipe = 5, - /obj/item/stack/sheet/plastic = 15, - /obj/item/weaponcrafting/silkstring = 4) - time = 120 - category = CAT_WEAPONRY - subcategory = CAT_WEAPON - dangerous_craft = TRUE - -/datum/crafting_recipe/woodenbow - name = "Wooden Bow" - result = /obj/item/gun/ballistic/bow - reqs = list(/obj/item/stack/sheet/wood = 8, - /obj/item/stack/sheet/iron = 2, - /obj/item/weaponcrafting/silkstring = 4) - time = 120 - category = CAT_WEAPONRY - subcategory = CAT_WEAPON - -/datum/crafting_recipe/meteorslug - name = "Meteorslug Shell" - result = /obj/item/ammo_casing/shotgun/meteorslug - reqs = list(/obj/item/ammo_casing/shotgun/techshell = 1, - /obj/item/rcd_ammo = 1, - /obj/item/stock_parts/manipulator = 2) - tools = list(TOOL_SCREWDRIVER) - time = 5 - category = CAT_WEAPONRY - subcategory = CAT_AMMO - dangerous_craft = TRUE - -/datum/crafting_recipe/pulseslug - name = "Pulse Slug Shell" - result = /obj/item/ammo_casing/shotgun/pulseslug - reqs = list(/obj/item/ammo_casing/shotgun/techshell = 1, - /obj/item/stock_parts/capacitor/adv = 2, - /obj/item/stock_parts/micro_laser/ultra = 1) - tools = list(TOOL_SCREWDRIVER) - time = 5 - category = CAT_WEAPONRY - subcategory = CAT_AMMO - dangerous_craft = TRUE - -/datum/crafting_recipe/dragonsbreath - name = "Dragonsbreath Shell" - result = /obj/item/ammo_casing/shotgun/dragonsbreath - reqs = list(/obj/item/ammo_casing/shotgun/techshell = 1, /datum/reagent/phosphorus = 5) - tools = list(TOOL_SCREWDRIVER) - time = 5 - category = CAT_WEAPONRY - subcategory = CAT_AMMO - dangerous_craft = TRUE - -/datum/crafting_recipe/frag12 - name = "FRAG-12 Shell" - result = /obj/item/ammo_casing/shotgun/frag12 - reqs = list(/obj/item/ammo_casing/shotgun/techshell = 1, - /datum/reagent/glycerol = 5, - /datum/reagent/toxin/acid = 5, - /datum/reagent/toxin/acid/fluacid = 5) - tools = list(TOOL_SCREWDRIVER) - time = 5 - category = CAT_WEAPONRY - subcategory = CAT_AMMO - dangerous_craft = TRUE - -/datum/crafting_recipe/ionslug - name = "Ion Scatter Shell" - result = /obj/item/ammo_casing/shotgun/ion - reqs = list(/obj/item/ammo_casing/shotgun/techshell = 1, - /obj/item/stock_parts/micro_laser/ultra = 1, - /obj/item/stock_parts/subspace/crystal = 1) - tools = list(TOOL_SCREWDRIVER) - time = 5 - category = CAT_WEAPONRY - subcategory = CAT_AMMO - dangerous_craft = TRUE - -/datum/crafting_recipe/improvisedslug - name = "Improvised Shotgun Shell" - result = /obj/item/ammo_casing/shotgun/improvised - reqs = list(/obj/item/grenade/chem_grenade = 1, - /obj/item/stack/sheet/iron = 1, - /obj/item/stack/cable_coil = 1, - /datum/reagent/fuel = 10) - tools = list(TOOL_SCREWDRIVER) - time = 5 - category = CAT_WEAPONRY - subcategory = CAT_AMMO - dangerous_craft = TRUE - -/datum/crafting_recipe/improvisedglassslug - name = "Glasspack Shotgun Shell" - result = /obj/item/ammo_casing/shotgun/improvised/glasspack - reqs = list(/obj/item/grenade/chem_grenade = 1, - /obj/item/stack/sheet/glass = 1, - /obj/item/stack/cable_coil = 1, - /datum/reagent/fuel = 10) - tools = list(TOOL_SCREWDRIVER) - time = 5 - category = CAT_WEAPONRY - subcategory = CAT_AMMO - dangerous_craft = TRUE - -/datum/crafting_recipe/laserslug - name = "Scatter Laser Shell" - result = /obj/item/ammo_casing/shotgun/laserslug - reqs = list(/obj/item/ammo_casing/shotgun/techshell = 1, - /obj/item/stock_parts/capacitor/adv = 1, - /obj/item/stock_parts/micro_laser/high = 1) - tools = list(TOOL_SCREWDRIVER) - time = 5 - category = CAT_WEAPONRY - subcategory = CAT_AMMO - dangerous_craft = TRUE - -/datum/crafting_recipe/a762improv - name = "Improvised 7.62 Cartridge" - result = /obj/item/ammo_casing/a762/improv - reqs = list(/obj/item/grenade/chem_grenade = 1, - /obj/item/stack/sheet/iron = 1, - /obj/item/stack/cable_coil = 1, - /datum/reagent/fuel = 10) - tools = list(TOOL_SCREWDRIVER) - time = 5 - category = CAT_WEAPONRY - subcategory = CAT_AMMO - dangerous_craft = TRUE - -/datum/crafting_recipe/a762hotload - name = "Hot-Loaded 7.62 Cartridge" - result = /obj/item/ammo_casing/a762/improv/hotload - reqs = list(/obj/item/grenade/chem_grenade = 1, - /obj/item/stack/sheet/iron = 1, - /obj/item/stack/cable_coil = 1, - /datum/reagent/blackpowder = 10) - tools = list(TOOL_SCREWDRIVER) - time = 5 - category = CAT_WEAPONRY - subcategory = CAT_AMMO - dangerous_craft = TRUE - -/datum/crafting_recipe/improv9mm_pack - name = "Improvised 9mm Ammo Pack" - result = /obj/item/ammo_box/pouch/c9mm/improv - reqs = list(/obj/item/grenade/chem_grenade = 2, - /obj/item/stack/rods = 3, - /obj/item/stack/cable_coil = 3, - /datum/reagent/fuel = 20, - /obj/item/paper = 1) - tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) - time = 15 - category = CAT_WEAPONRY - subcategory = CAT_AMMO - dangerous_craft = TRUE - -/datum/crafting_recipe/improv10mm_pack - name = "Improvised 10mm Ammo Pack" - result = /obj/item/ammo_box/pouch/c10mm/improv - reqs = list(/obj/item/grenade/chem_grenade = 2, - /obj/item/stack/sheet/iron = 2, - /obj/item/stack/cable_coil = 2, - /datum/reagent/fuel = 20, - /obj/item/paper = 1) - tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) - time = 15 - category = CAT_WEAPONRY - subcategory = CAT_AMMO - dangerous_craft = TRUE - -/datum/crafting_recipe/improv38_pack - name = "Improvised .38 Ammo Pack" - result = /obj/item/ammo_box/pouch/c38/improv - reqs = list(/obj/item/grenade/chem_grenade = 2, - /obj/item/stack/rods = 2, - /obj/item/stack/cable_coil = 2, - /datum/reagent/fuel = 20, - /obj/item/paper = 1) - tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) - time = 15 - category = CAT_WEAPONRY - subcategory = CAT_AMMO - dangerous_craft = TRUE - -/datum/crafting_recipe/improv357 - name = "Improvised .357 Cartridge" - result = /obj/item/ammo_casing/a357/improv - reqs = list(/obj/item/grenade/chem_grenade = 1, - /obj/item/stack/sheet/iron = 1, - /obj/item/stack/cable_coil = 2, - /datum/reagent/blackpowder = 10) - tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) - time = 5 - category = CAT_WEAPONRY - subcategory = CAT_AMMO - dangerous_craft = TRUE - -/datum/crafting_recipe/pipesmg_mag - name = "Pipe Repeater Magazine" - result = /obj/item/ammo_box/magazine/pipem9mm - reqs = list(/obj/item/grenade/chem_grenade = 1, - /obj/item/stock_parts/matter_bin = 1, - /obj/item/stack/cable_coil = 3, - /obj/item/stack/package_wrap = 3) - tools = list(TOOL_WELDER, TOOL_WIRECUTTER) - time = 50 - category = CAT_WEAPONRY - subcategory = CAT_AMMO - -/datum/crafting_recipe/arrow - name = "Arrow" - result = /obj/item/ammo_casing/caseless/arrow/wood - time = 30 - reqs = list(/obj/item/stack/sheet/wood = 1, - /obj/item/stack/sheet/silk = 1, - /obj/item/stack/rods = 1) //1 metal sheet = 2 rods= 2 arrows - category = CAT_WEAPONRY - subcategory = CAT_AMMO - -/datum/crafting_recipe/bone_arrow - name = "Bone Arrow" - result = /obj/item/ammo_casing/caseless/arrow/bone - time = 30 - reqs = list(/obj/item/stack/sheet/bone = 1, - /obj/item/stack/sheet/sinew = 1, - /obj/item/ammo_casing/caseless/arrow/ash = 1) - category = CAT_WEAPONRY - subcategory = CAT_AMMO - -/datum/crafting_recipe/ashen_arrow - name = "Ashen arrow" - result = /obj/item/ammo_casing/caseless/arrow/ash - tools = list(TOOL_WELDER) - time = 30 - reqs = list(/obj/item/ammo_casing/caseless/arrow/wood = 1) - category = CAT_WEAPONRY - subcategory = CAT_AMMO - -/datum/crafting_recipe/bronze_arrow - name = "Bronze arrow" - result = /obj/item/ammo_casing/caseless/arrow/bronze - time = 30 - reqs = list(/obj/item/stack/sheet/wood = 1, - /obj/item/stack/sheet/bronze = 1, - /obj/item/stack/sheet/silk = 1) - category = CAT_WEAPONRY - subcategory = CAT_AMMO - -/datum/crafting_recipe/ishotgun - name = "Improvised Shotgun" - result = /obj/item/gun/ballistic/shotgun/doublebarrel/improvised - reqs = list(/obj/item/weaponcrafting/receiver = 1, - /obj/item/pipe = 1, - /obj/item/weaponcrafting/stock = 1, - /obj/item/assembly/igniter = 1, - /obj/item/stack/package_wrap = 5) - tools = list(TOOL_SCREWDRIVER, TOOL_WELDER) - time = 100 - category = CAT_WEAPONRY - subcategory = CAT_WEAPON - dangerous_craft = TRUE - -/datum/crafting_recipe/piperifle - name = "Singleshot Pipe Rifle" - result = /obj/item/gun/ballistic/rifle/pipe - reqs = list(/obj/item/weaponcrafting/receiver = 1, - /obj/item/pipe = 1, - /obj/item/weaponcrafting/stock = 1, - /obj/item/assembly/igniter = 1, - /obj/item/stack/package_wrap = 5) - tools = list(TOOL_SCREWDRIVER, TOOL_WELDER) - time = 100 - category = CAT_WEAPONRY - subcategory = CAT_WEAPON - dangerous_craft = TRUE - -/datum/crafting_recipe/pipesmg - name = "Mag-Fed Pipe Repeater" - result = /obj/item/gun/ballistic/automatic/pipe_smg - reqs = list(/obj/item/weaponcrafting/receiver = 1, - /obj/item/pipe = 2, - /obj/item/stack/rods = 2, - /obj/item/stack/sheet/wood = 2, - /obj/item/assembly/igniter = 1, - /obj/item/stack/package_wrap = 5) - tools = list(TOOL_SCREWDRIVER, TOOL_WELDER) - time = 100 - category = CAT_WEAPONRY - subcategory = CAT_WEAPON - dangerous_craft = TRUE - -/datum/crafting_recipe/chainsaw - name = "Chainsaw" - result = /obj/item/chainsaw - reqs = list(/obj/item/circular_saw = 1, - /obj/item/stack/cable_coil = 3, - /obj/item/stack/sheet/plasteel = 5) - tools = list(TOOL_WELDER) - time = 50 - category = CAT_WEAPONRY - subcategory = CAT_WEAPON - dangerous_craft = TRUE - -/datum/crafting_recipe/spear - name = "Spear" - result = /obj/item/spear - reqs = list(/obj/item/restraints/handcuffs/cable = 1, - /obj/item/shard = 1, - /obj/item/stack/rods = 1) - parts = list(/obj/item/shard = 1) - time = 40 - category = CAT_WEAPONRY - subcategory = CAT_WEAPON - dangerous_craft = TRUE - -/datum/crafting_recipe/switchblade_kitchen - name = "Iron Switchblade" - result = /obj/item/switchblade/kitchen - reqs = list(/obj/item/stack/sheet/iron = 2, - /obj/item/weaponcrafting/receiver = 1, - /obj/item/knife = 1, - /obj/item/stack/cable_coil = 2) - tools = list(TOOL_WELDER) - time = 45 - category = CAT_WEAPONRY - subcategory = CAT_WEAPON - dangerous_craft = TRUE - -/datum/crafting_recipe/switchblade_kitchenupgrade - name = "Plastitanium Switchblade" - result = /obj/item/switchblade/plastitanium - reqs = list(/obj/item/switchblade/kitchen = 1, - /obj/item/stack/sheet/mineral/plastitanium = 2) - tools = list(TOOL_WELDER) - time = 20 - category = CAT_WEAPONRY - subcategory = CAT_WEAPON - dangerous_craft = TRUE - -/datum/crafting_recipe/switchblade_plastitanium - name = "Plastitanium Switchblade" - result = /obj/item/switchblade/plastitanium - reqs = list(/obj/item/weaponcrafting/stock = 1, - /obj/item/weaponcrafting/receiver = 1, - /obj/item/knife = 1, - /obj/item/stack/cable_coil = 2, - /obj/item/stack/sheet/mineral/plastitanium = 2) - tools = list(TOOL_WELDER) - time = 65 - category = CAT_WEAPONRY - subcategory = CAT_WEAPON - dangerous_craft = TRUE - -/datum/crafting_recipe/spooky_camera - name = "Camera Obscura" - result = /obj/item/camera/spooky - time = 15 - reqs = list(/obj/item/camera = 1, - /datum/reagent/water/holywater = 10) - parts = list(/obj/item/camera = 1) - category = CAT_MISC - -/datum/crafting_recipe/lizardhat - name = "Lizard Cloche Hat" - result = /obj/item/clothing/head/costume/lizard - time = 10 - reqs = list(/obj/item/organ/tail/lizard = 1) - category = CAT_MISC - -/datum/crafting_recipe/lizardhat_alternate - name = "Lizard Cloche Hat" - result = /obj/item/clothing/head/costume/lizard - time = 10 - reqs = list(/obj/item/stack/sheet/animalhide/lizard = 1) - category = CAT_MISC - -/datum/crafting_recipe/kittyears - name = "Kitty Ears" - result = /obj/item/clothing/head/costume/kitty/genuine - time = 10 - reqs = list(/obj/item/organ/tail/cat = 1, - /obj/item/organ/ears/cat = 1) - category = CAT_MISC - -/datum/crafting_recipe/skateboard - name = "Skateboard" - result = /obj/item/melee/skateboard - time = 60 - reqs = list(/obj/item/stack/sheet/iron = 5, - /obj/item/stack/rods = 10) - category = CAT_MISC - -/datum/crafting_recipe/scooter - name = "Scooter" - result = /obj/vehicle/ridden/scooter - time = 65 - reqs = list(/obj/item/stack/sheet/iron = 5, - /obj/item/stack/rods = 12) - category = CAT_MISC - -/datum/crafting_recipe/wheelchair - name = "Wheelchair" - result = /obj/vehicle/ridden/wheelchair - reqs = list(/obj/item/stack/sheet/iron = 4, - /obj/item/stack/rods = 6) - time = 100 - category = CAT_MISC - -/datum/crafting_recipe/motorized_wheelchair - name = "Motorized Wheelchair" - result = /obj/vehicle/ridden/wheelchair/motorized - reqs = list(/obj/item/stack/sheet/iron = 10, - /obj/item/stack/rods = 8, - /obj/item/stock_parts/manipulator = 2, - /obj/item/stock_parts/capacitor = 1) - parts = list(/obj/item/stock_parts/manipulator = 2, - /obj/item/stock_parts/capacitor = 1) - tools = list(TOOL_WELDER, TOOL_SCREWDRIVER, TOOL_WRENCH) - time = 200 - category = CAT_MISC - -/datum/crafting_recipe/mousetrap - name = "Mouse Trap" - result = /obj/item/assembly/mousetrap - time = 10 - reqs = list(/obj/item/stack/sheet/cardboard = 1, - /obj/item/stack/rods = 1) - category = CAT_MISC - -/datum/crafting_recipe/papersack - name = "Paper Sack" - result = /obj/item/storage/box/papersack - time = 10 - reqs = list(/obj/item/paper = 5) - category = CAT_MISC - - -/datum/crafting_recipe/flashlight_eyes - name = "Flashlight Eyes" - result = /obj/item/organ/eyes/robotic/flashlight - time = 10 - reqs = list( - /obj/item/flashlight = 2, - /obj/item/restraints/handcuffs/cable = 1 - ) - category = CAT_MISC - -/datum/crafting_recipe/paperframes - name = "Paper Frames" - result = /obj/item/stack/sheet/paperframes/five - time = 10 - reqs = list(/obj/item/stack/sheet/wood = 2, /obj/item/paper = 10) - category = CAT_MISC - -/datum/crafting_recipe/naturalpaper - name = "Hand-Pressed Paper Bundle" - time = 30 - reqs = list(/datum/reagent/water = 50, /obj/item/stack/sheet/wood = 1) - tools = list(/obj/item/hatchet) - result = /obj/item/paper_bin/bundlenatural - category = CAT_MISC - -/datum/crafting_recipe/toysword - name = "Toy Sword" - reqs = list(/obj/item/light/bulb = 1, /obj/item/stack/cable_coil = 1, /obj/item/stack/sheet/plastic = 4) - result = /obj/item/toy/sword - category = CAT_MISC - -/datum/crafting_recipe/blackcarpet - name = "Black Carpet" - reqs = list(/obj/item/stack/tile/carpet = 50, /obj/item/toy/crayon/black = 1) - result = /obj/item/stack/tile/carpet/black/fifty - category = CAT_MISC - -/datum/crafting_recipe/extendohand - name = "Extendo-Hand" - reqs = list(/obj/item/bodypart/r_arm/robot = 1, /obj/item/clothing/gloves/boxing = 1) - result = /obj/item/extendohand - category = CAT_MISC - -/datum/crafting_recipe/mothplush - name = "Moth Plushie" - result = /obj/item/toy/plush/moth - reqs = list(/obj/item/stack/sheet/animalhide/mothroach = 1, - /obj/item/stack/sheet/cotton/cloth = 3) - category = CAT_MISC - -/datum/crafting_recipe/chemical_payload - name = "Chemical Payload (C4)" - result = /obj/item/bombcore/chemical - reqs = list( - /obj/item/stock_parts/matter_bin = 1, - /obj/item/grenade/plastic/c4 = 1, - /obj/item/grenade/chem_grenade = 2 - ) - parts = list(/obj/item/stock_parts/matter_bin = 1, /obj/item/grenade/chem_grenade = 2) - time = 30 - category = CAT_WEAPONRY - subcategory = CAT_WEAPON - dangerous_craft = TRUE - -/datum/crafting_recipe/chemical_payload2 - name = "Chemical Payload (Gibtonite)" - result = /obj/item/bombcore/chemical - reqs = list( - /obj/item/stock_parts/matter_bin = 1, - /obj/item/gibtonite = 1, - /obj/item/grenade/chem_grenade = 2 - ) - parts = list(/obj/item/stock_parts/matter_bin = 1, /obj/item/grenade/chem_grenade = 2) - time = 50 - category = CAT_WEAPONRY - subcategory = CAT_WEAPON - dangerous_craft = TRUE - -/datum/crafting_recipe/bonearmor - name = "Bone Armor" - result = /obj/item/clothing/suit/armor/bone - time = 30 - reqs = list(/obj/item/stack/sheet/bone = 6) - category = CAT_PRIMAL - -/datum/crafting_recipe/heavybonearmor - name = "Heavy Bone Armor" - result = /obj/item/clothing/suit/hooded/cloak/bone - time = 60 - reqs = list(/obj/item/stack/sheet/bone = 8, - /obj/item/stack/sheet/sinew = 3) - category = CAT_PRIMAL - -/datum/crafting_recipe/bonetalisman - name = "Bone Talisman" - result = /obj/item/clothing/accessory/talisman - time = 20 - reqs = list(/obj/item/stack/sheet/bone = 2, - /obj/item/stack/sheet/sinew = 1) - category = CAT_PRIMAL - -/datum/crafting_recipe/bonecodpiece - name = "Skull Codpiece" - result = /obj/item/clothing/accessory/skullcodpiece - time = 20 - reqs = list(/obj/item/stack/sheet/bone = 2, - /obj/item/stack/sheet/animalhide/goliath_hide = 1) - category = CAT_PRIMAL - -/datum/crafting_recipe/bracers - name = "Bone Bracers" - result = /obj/item/clothing/gloves/bracer - time = 20 - reqs = list(/obj/item/stack/sheet/bone = 2, - /obj/item/stack/sheet/sinew = 1) - category = CAT_PRIMAL - -/datum/crafting_recipe/skullhelm - name = "Skull Helmet" - result = /obj/item/clothing/head/helmet/skull - time = 30 - reqs = list(/obj/item/stack/sheet/bone = 4) - category = CAT_PRIMAL - -/datum/crafting_recipe/goliathcloak - name = "Goliath Cloak" - result = /obj/item/clothing/suit/hooded/cloak/goliath - time = 50 - reqs = list(/obj/item/stack/sheet/leather = 2, - /obj/item/stack/sheet/sinew = 2, - /obj/item/stack/sheet/animalhide/goliath_hide = 2) //it takes 4 goliaths to make 1 cloak if the plates are skinned - category = CAT_PRIMAL - -/datum/crafting_recipe/drakecloak - name = "Ash Drake Armour" - result = /obj/item/clothing/suit/hooded/cloak/drake - time = 60 - reqs = list(/obj/item/stack/sheet/bone = 10, - /obj/item/stack/sheet/sinew = 2, - /obj/item/stack/sheet/animalhide/ashdrake = 5) - always_available = FALSE - category = CAT_PRIMAL - -/datum/crafting_recipe/watcherbola - name = "Watcher Bola" - result = /obj/item/restraints/legcuffs/bola/watcher - time = 30 - reqs = list(/obj/item/stack/sheet/animalhide/goliath_hide = 2, - /obj/item/restraints/handcuffs/cable/sinew = 1) - category = CAT_PRIMAL - -/datum/crafting_recipe/goliathshield - name = "Goliath shield" - result = /obj/item/shield/riot/goliath - time = 60 - reqs = list(/obj/item/stack/sheet/bone = 4, - /obj/item/stack/sheet/animalhide/goliath_hide = 3) - category = CAT_PRIMAL - -/datum/crafting_recipe/bonesword - name = "Bone Sword" - result = /obj/item/claymore/bone - time = 40 - reqs = list(/obj/item/stack/sheet/bone = 3, - /obj/item/stack/sheet/sinew = 2) - category = CAT_PRIMAL - dangerous_craft = TRUE - -/datum/crafting_recipe/hunterbelt - name = "Hunters Belt" - result = /obj/item/storage/belt/mining/primitive - time = 20 - reqs = list(/obj/item/stack/sheet/sinew = 2, - /obj/item/stack/sheet/animalhide/goliath_hide = 2) - category = CAT_PRIMAL - -/datum/crafting_recipe/quiver - name = "Quiver" - result = /obj/item/storage/belt/quiver - time = 80 - reqs = list(/obj/item/stack/sheet/leather = 3, - /obj/item/stack/sheet/sinew = 4) - category = CAT_PRIMAL - -/datum/crafting_recipe/bone_bow - name = "Bone Bow" - result = /obj/item/gun/ballistic/bow/ashen - time = 200 - reqs = list(/obj/item/stack/sheet/bone = 8, - /obj/item/stack/sheet/sinew = 4) - category = CAT_PRIMAL - -/datum/crafting_recipe/firebrand - name = "Firebrand" - result = /obj/item/match/firebrand - time = 100 //Long construction time. Making fire is hard work. - reqs = list(/obj/item/stack/sheet/wood = 2) - category = CAT_PRIMAL - -/datum/crafting_recipe/gold_horn - name = "Golden Bike Horn" - result = /obj/item/bikehorn/golden - time = 20 - reqs = list(/obj/item/stack/sheet/mineral/bananium = 5, - /obj/item/bikehorn = 1) - category = CAT_MISC - -/datum/crafting_recipe/flash_ducky - name = "Toy Rubber Duck Mine" - result = /obj/item/deployablemine/traitor/toy - time = 20 - reqs = list(/obj/item/bikehorn/rubberducky = 1, - /obj/item/assembly/flash/handheld = 1, - /obj/item/stack/cable_coil = 2, - /obj/item/assembly/prox_sensor) - blacklist = list(/obj/item/assembly/flash/handheld/strong) - category = CAT_MISC - -/datum/crafting_recipe/bonedagger - name = "Bone Dagger" - result = /obj/item/knife/combat/bone - time = 20 - reqs = list(/obj/item/stack/sheet/bone = 2) - category = CAT_PRIMAL - -/datum/crafting_recipe/bonespear - name = "Bone Spear" - result = /obj/item/spear/bonespear - time = 30 - reqs = list(/obj/item/stack/sheet/bone = 4, - /obj/item/stack/sheet/sinew = 1) - category = CAT_PRIMAL - dangerous_craft = TRUE - -/datum/crafting_recipe/boneaxe - name = "Bone Axe" - result = /obj/item/fireaxe/boneaxe - time = 50 - reqs = list(/obj/item/stack/sheet/bone = 6, - /obj/item/stack/sheet/sinew = 3) - category = CAT_PRIMAL - dangerous_craft = TRUE - -/datum/crafting_recipe/bonfire - name = "Bonfire" - time = 60 - reqs = list(/obj/item/grown/log = 5) - result = /obj/structure/bonfire - category = CAT_PRIMAL - -/datum/crafting_recipe/skeleton_key - name = "Skeleton Key" - time = 30 - reqs = list(/obj/item/stack/sheet/bone = 5) - result = /obj/item/skeleton_key - always_available = FALSE - category = CAT_PRIMAL - -/datum/crafting_recipe/headpike - name = "Spike Head (Glass Spear)" - time = 65 - reqs = list(/obj/item/spear = 1, - /obj/item/bodypart/head = 1) - parts = list(/obj/item/bodypart/head = 1, - /obj/item/spear = 1) - blacklist = list(/obj/item/spear/explosive, /obj/item/spear/bonespear, /obj/item/spear/bamboospear) - result = /obj/structure/headpike/glass - category = CAT_PRIMAL - dangerous_craft = TRUE - -/datum/crafting_recipe/headpikebone - name = "Spike Head (Bone Spear)" - time = 65 - reqs = list(/obj/item/spear/bonespear = 1, - /obj/item/bodypart/head = 1) - parts = list(/obj/item/bodypart/head = 1, - /obj/item/spear/bonespear = 1) - result = /obj/structure/headpike/bone - category = CAT_PRIMAL - dangerous_craft = TRUE - -/datum/crafting_recipe/headpikebamboo - name = "Spike Head (Bamboo Spear)" - time = 65 - reqs = list(/obj/item/spear/bamboospear = 1, - /obj/item/bodypart/head = 1) - parts = list(/obj/item/bodypart/head = 1, - /obj/item/spear/bamboospear = 1) - result = /obj/structure/headpike/bamboo - category = CAT_PRIMAL - dangerous_craft = TRUE - -/datum/crafting_recipe/pressureplate - name = "Pressure Plate" - result = /obj/item/pressure_plate - time = 5 - reqs = list(/obj/item/stack/sheet/iron = 1, - /obj/item/stack/tile/iron = 1, - /obj/item/stack/cable_coil = 2, - /obj/item/assembly/igniter = 1) - category = CAT_MISC - - -/datum/crafting_recipe/rcl - name = "Makeshift Rapid Cable Layer" - result = /obj/item/rcl/ghetto - time = 40 - tools = list(TOOL_WELDER, TOOL_SCREWDRIVER, TOOL_WRENCH) - reqs = list(/obj/item/stack/sheet/iron = 15) - category = CAT_MISC - -/datum/crafting_recipe/mummy - name = "Mummification Bandages (Mask)" - result = /obj/item/clothing/mask/mummy - time = 10 - tools = list(/obj/item/nullrod/egyptian) - reqs = list(/obj/item/stack/sheet/cotton/cloth = 2) - category = CAT_CLOTHING - -/datum/crafting_recipe/mummy/body - name = "Mummification Bandages (Body)" - result = /obj/item/clothing/under/costume/mummy - reqs = list(/obj/item/stack/sheet/cotton/cloth = 5) - - -/datum/crafting_recipe/chaplain_hood - name = "Follower Hoodie" - result = /obj/item/clothing/suit/hooded/chaplain_hoodie - time = 10 - tools = list(/obj/item/clothing/suit/hooded/chaplain_hoodie, /obj/item/storage/book/bible) - reqs = list(/obj/item/stack/sheet/cotton/cloth = 4) - category = CAT_CLOTHING - -/datum/crafting_recipe/aitater - name = "intelliTater" - result = /obj/item/aicard/aitater - time = 30 - tools = list(TOOL_WIRECUTTER) - reqs = list(/obj/item/aicard = 1, - /obj/item/food/grown/potato = 1, - /obj/item/stack/cable_coil = 5) - category = CAT_MISC - -/datum/crafting_recipe/aispook - name = "intelliLantern" - result = /obj/item/aicard/aispook - time = 30 - tools = list(TOOL_WIRECUTTER) - reqs = list(/obj/item/aicard = 1, - /obj/item/food/grown/pumpkin = 1, - /obj/item/stack/cable_coil = 5) - category = CAT_MISC - -/datum/crafting_recipe/ghettojetpack - name = "Improvised Jetpack" - result = /obj/item/tank/jetpack/improvised - time = 30 - reqs = list(/obj/item/tank/internals/oxygen/red = 2, /obj/item/extinguisher = 1, /obj/item/pipe = 3, /obj/item/stack/cable_coil = 30)//red oxygen tank so it looks right - category = CAT_MISC - tools = list(TOOL_WRENCH, TOOL_WELDER, TOOL_WIRECUTTER) - -/datum/crafting_recipe/multiduct - name = "Multi-layer duct" - result = /obj/machinery/duct/multilayered - time = 5 - reqs = list(/obj/item/stack/ducts = 5) - category = CAT_MISC - tools = list(TOOL_WELDER) - -/datum/crafting_recipe/upgraded_gauze - name = "Improved Gauze" - result = /obj/item/stack/medical/gauze/adv/one - time = 1 - reqs = list(/obj/item/stack/medical/gauze = 1, - /datum/reagent/space_cleaner/sterilizine = 10) - category = CAT_MISC - -/datum/crafting_recipe/bruise_pack - name = "Bruise Pack" - result = /obj/item/stack/medical/bruise_pack/one - time = 1 - reqs = list(/obj/item/stack/medical/gauze = 1, - /datum/reagent/medicine/styptic_powder = 20) - category = CAT_MISC - -/datum/crafting_recipe/burn_pack - name = "Burn Ointment" - result = /obj/item/stack/medical/ointment/one - time = 1 - reqs = list(/obj/item/stack/medical/gauze = 1, - /datum/reagent/medicine/silver_sulfadiazine = 20) - category = CAT_MISC - -// Shank - Makeshift weapon that can embed on throw -/datum/crafting_recipe/shank - name = "Shank" - reqs = list(/obj/item/shard = 1, - /obj/item/stack/cable_coil = 10) // 1 glass shard + 10 cable; needs a wirecutter to snip the cable. - result = /obj/item/knife/shank - tools = list(TOOL_WIRECUTTER) - time = 20 - category = CAT_WEAPONRY - subcategory = CAT_WEAPON - always_available = TRUE - dangerous_craft = TRUE - -/datum/crafting_recipe/sharpmop - name = "Sharpened Mop" - result = /obj/item/mop/sharp - time = 30 - reqs = list(/obj/item/mop = 1, - /obj/item/shard = 1) - category = CAT_WEAPONRY - subcategory = CAT_WEAPON - tools = list(TOOL_WIRECUTTER) - dangerous_craft = TRUE - -/datum/crafting_recipe/poppy_pin - name = "Poppy Pin" - result = /obj/item/clothing/accessory/poppy_pin - time = 5 - reqs = list(/obj/item/stack/rods = 1, - /obj/item/food/grown/flower/poppy = 1) - category = CAT_MISC - -/datum/crafting_recipe/poppy_pin_removal - name = "Poppy Pin Removal" - result = /obj/item/food/grown/flower/poppy - time = 5 - reqs = list(/obj/item/clothing/accessory/poppy_pin = 1) - - category = CAT_MISC - -/datum/crafting_recipe/insulated_boxing_gloves - name = "Insulated Boxing Gloves" - result = /obj/item/clothing/gloves/boxing/yellow/insulated - time = 60 - reqs = list(/obj/item/clothing/gloves/boxing = 1, - /obj/item/clothing/gloves/color/yellow = 1) - - category = CAT_CLOTHING - -/datum/crafting_recipe/paper_cup - name= "Paper Cup" - result = /obj/item/reagent_containers/food/drinks/sillycup - time = 10 - reqs = list(/obj/item/paper = 1) - category = CAT_MISC - tools = list(TOOL_WIRECUTTER) - -/datum/crafting_recipe/paperslip - name = "Paper Slip" - result = /obj/item/card/id/paper - time = 1 SECONDS - reqs = list(/obj/item/paper = 5) - category = CAT_MISC - tools = list(TOOL_WIRECUTTER) - -/datum/crafting_recipe/basic_lasso - name= "Basic Lasso" - result = /obj/item/mob_lasso - time = 20 - reqs = list(/obj/item/stack/sheet/leather = 5) - category = CAT_MISC - -/datum/crafting_recipe/primal_lasso - name= "Primal Lasso" - result = /obj/item/mob_lasso/primal - always_available = FALSE - time = 20 - reqs = list(/obj/item/stack/sheet/animalhide/goliath_hide = 3, - /obj/item/stack/sheet/sinew = 4) - category = CAT_PRIMAL - -/datum/crafting_recipe/dragon_lasso - name = "Ash Drake Lasso" - result = /obj/item/mob_lasso/drake - always_available = FALSE - time = 20 - reqs = list(/obj/item/stack/sheet/bone = 10, - /obj/item/stack/sheet/sinew = 2, - /obj/item/stack/sheet/animalhide/ashdrake = 5) - category = CAT_PRIMAL - -/datum/crafting_recipe/foldable - name = "Foldable Chair" - result = /obj/item/chair/foldable - time = 40 - reqs = list(/obj/item/stack/rods = 2, - /obj/item/stack/sheet/plastic = 1 - ) - tools = list(TOOL_WRENCH, TOOL_WIRECUTTER) - category = CAT_MISC - -/datum/crafting_recipe/chair_fancy - name = "Fancy Chair" - result = /obj/item/chair/fancy - time = 60 - reqs = list(/obj/item/stack/rods = 2, - /obj/item/chair = 1 - ) - tools = list(TOOL_WRENCH, TOOL_WIRECUTTER) - category = CAT_MISC - -/datum/crafting_recipe/personal_locker - name = "Personal Locker" - result = /obj/structure/closet/secure_closet/personal/empty - time = 10 SECONDS - reqs = list(/obj/item/stack/sheet/iron = 2, - /obj/item/electronics/airlock = 1, - /obj/item/stack/cable_coil = 2 - ) - tools = list(TOOL_WIRECUTTER, TOOL_SCREWDRIVER) - category = CAT_STRUCTURE - -/datum/crafting_recipe/shutters - name = "Shutters" - reqs = list(/obj/item/stack/sheet/plasteel = 5, - /obj/item/stack/cable_coil = 5, - /obj/item/electronics/airlock = 1 - ) - result = /obj/machinery/door/poddoor/shutters/preopen - tools = list(TOOL_SCREWDRIVER, TOOL_MULTITOOL, TOOL_WIRECUTTER, TOOL_WELDER) - time = 10 SECONDS - category = CAT_STRUCTURE - one_per_turf = TRUE - -/datum/crafting_recipe/glassshutters - name = "Windowed Shutters" - reqs = list(/obj/item/stack/sheet/plasteel = 5, - /obj/item/stack/sheet/rglass = 2, - /obj/item/stack/cable_coil = 5, - /obj/item/electronics/airlock = 1 - ) - result = /obj/machinery/door/poddoor/shutters/window/preopen - tools = list(TOOL_SCREWDRIVER, TOOL_MULTITOOL, TOOL_WIRECUTTER, TOOL_WELDER) - time = 10 SECONDS - category = CAT_STRUCTURE - one_per_turf = TRUE - -/datum/crafting_recipe/radshutters - name = "Radiation Shutters" - reqs = list(/obj/item/stack/sheet/plasteel = 5, - /obj/item/stack/cable_coil = 5, - /obj/item/electronics/airlock = 1, - /obj/item/stack/sheet/mineral/uranium = 2 - ) - result = /obj/machinery/door/poddoor/shutters/radiation/preopen - tools = list(TOOL_SCREWDRIVER, TOOL_MULTITOOL, TOOL_WIRECUTTER, TOOL_WELDER) - time = 10 SECONDS - category = CAT_STRUCTURE - one_per_turf = TRUE - - -/datum/crafting_recipe/blast_doors - name = "Blast Door" - reqs = list(/obj/item/stack/sheet/plasteel = 15, - /obj/item/stack/cable_coil = 15, - /obj/item/electronics/airlock = 1 - ) - result = /obj/machinery/door/poddoor/preopen - tools = list(TOOL_SCREWDRIVER, TOOL_MULTITOOL, TOOL_WIRECUTTER, TOOL_WELDER) - time = 30 SECONDS - category = CAT_STRUCTURE - one_per_turf = TRUE - -/datum/crafting_recipe/showercurtain - name = "Shower Curtains" - reqs = list(/obj/item/stack/sheet/cotton/cloth = 2, /obj/item/stack/sheet/plastic = 2, /obj/item/stack/rods = 1) - result = /obj/structure/curtain - category = CAT_STRUCTURE - -/datum/crafting_recipe/aquarium - name = "Aquarium" - result = /obj/structure/aquarium - time = 10 SECONDS - reqs = list(/obj/item/stack/sheet/iron = 15, - /obj/item/stack/sheet/glass = 10, - /obj/item/aquarium_kit = 1 - ) - category = CAT_STRUCTURE - -/datum/crafting_recipe/guillotine - name = "Guillotine" - result = /obj/structure/guillotine - time = 150 // Building a functioning guillotine takes time - reqs = list(/obj/item/stack/sheet/plasteel = 3, - /obj/item/stack/sheet/wood = 20, - /obj/item/stack/cable_coil = 10) - tools = list(TOOL_SCREWDRIVER, TOOL_WRENCH, TOOL_WELDER) - category = CAT_STRUCTURE - dangerous_craft = TRUE - -/datum/crafting_recipe/mirror - name = "Wall Mirror Frame" - result = /obj/item/wallframe/mirror - time = 4 SECONDS - reqs = list(/obj/item/stack/sheet/mineral/silver = 1, /obj/item/stack/sheet/glass = 2) - tools = list(TOOL_WRENCH) - category = CAT_STRUCTURE diff --git a/code/datums/components/crafting/tailoring.dm b/code/datums/components/crafting/tailoring.dm deleted file mode 100644 index 692a89e9707a3..0000000000000 --- a/code/datums/components/crafting/tailoring.dm +++ /dev/null @@ -1,353 +0,0 @@ -/datum/crafting_recipe/durathread_vest - name = "Durathread Vest" - result = /obj/item/clothing/suit/armor/vest/durathread - reqs = list(/obj/item/stack/sheet/cotton/cloth/durathread = 5, - /obj/item/stack/sheet/leather = 4) - time = 50 - category = CAT_CLOTHING - -/datum/crafting_recipe/durathread_helmet - name = "Durathread Helmet" - result = /obj/item/clothing/head/helmet/durathread - reqs = list(/obj/item/stack/sheet/cotton/cloth/durathread = 4, - /obj/item/stack/sheet/leather = 5) - time = 40 - category = CAT_CLOTHING - -/datum/crafting_recipe/durathread_jumpsuit - name = "Durathread Jumpsuit" - result = /obj/item/clothing/under/color/durathread - reqs = list(/obj/item/stack/sheet/cotton/cloth/durathread = 4) - time = 40 - category = CAT_CLOTHING - -/datum/crafting_recipe/durathread_jumpskirt - name = "Durathread Jumpskirt" - result = /obj/item/clothing/under/color/jumpskirt/durathread - reqs = list(/obj/item/stack/sheet/cotton/cloth/durathread = 4) - time = 40 - category = CAT_CLOTHING - -/datum/crafting_recipe/durathread_hoodie - name = "Durathread Hoodie" - result = /obj/item/clothing/suit/hooded/hoodie/durathread - reqs = list(/obj/item/stack/sheet/cotton/cloth/durathread = 5) - time = 50 - category = CAT_CLOTHING - -/datum/crafting_recipe/durathread_beret - name = "Durathread Beret" - result = /obj/item/clothing/head/beret/durathread - reqs = list(/obj/item/stack/sheet/cotton/cloth/durathread = 2) - time = 40 - category = CAT_CLOTHING - -/datum/crafting_recipe/durathread_beanie - name = "Durathread Beanie" - result = /obj/item/clothing/head/beanie/durathread - reqs = list(/obj/item/stack/sheet/cotton/cloth/durathread = 2) - time = 40 - category = CAT_CLOTHING - -/datum/crafting_recipe/durathread_bandana - name = "Durathread Bandana" - result = /obj/item/clothing/mask/bandana/durathread - reqs = list(/obj/item/stack/sheet/cotton/cloth/durathread = 1) - time = 25 - category = CAT_CLOTHING - -/datum/crafting_recipe/fannypack - name = "Fannypack" - result = /obj/item/storage/belt/fannypack - reqs = list(/obj/item/stack/sheet/cotton/cloth = 2, - /obj/item/stack/sheet/leather = 1) - time = 20 - category = CAT_CLOTHING - -/datum/crafting_recipe/voice_modulator - name = "Voice Modulator Mask" - result = /obj/item/clothing/mask/gas/old/modulator - time = 45 - tools = list(TOOL_SCREWDRIVER, TOOL_MULTITOOL) - reqs = list(/obj/item/clothing/mask/gas/old = 1, - /obj/item/assembly/voice = 1, - /obj/item/stack/cable_coil = 5) - category = CAT_CLOTHING - -/datum/crafting_recipe/hudsunsec - name = "Security HUDsunglasses" - result = /obj/item/clothing/glasses/hud/security/sunglasses - time = 20 - tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) - reqs = list(/obj/item/clothing/glasses/hud/security = 1, - /obj/item/clothing/glasses/sunglasses/advanced = 1, - /obj/item/stack/cable_coil = 5) - category = CAT_EYEWEAR - -/datum/crafting_recipe/hudsunsecremoval - name = "Security HUD removal" - result = /obj/item/clothing/glasses/sunglasses/advanced - time = 20 - tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) - reqs = list(/obj/item/clothing/glasses/hud/security/sunglasses = 1) - blacklist = list(/obj/item/clothing/glasses/hud/security/sunglasses/degraded) - category = CAT_EYEWEAR - -/datum/crafting_recipe/hudsunmed - name = "Medical HUDsunglasses" - result = /obj/item/clothing/glasses/hud/health/sunglasses - time = 20 - tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) - reqs = list(/obj/item/clothing/glasses/hud/health = 1, - /obj/item/clothing/glasses/sunglasses/advanced = 1, - /obj/item/stack/cable_coil = 5) - category = CAT_EYEWEAR - -/datum/crafting_recipe/hudsunmedremoval - name = "Medical HUD removal" - result = /obj/item/clothing/glasses/sunglasses/advanced - time = 20 - tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) - reqs = list(/obj/item/clothing/glasses/hud/health/sunglasses = 1) - blacklist = list(/obj/item/clothing/glasses/hud/health/sunglasses/degraded) - category = CAT_EYEWEAR - -/datum/crafting_recipe/hudsundiag - name = "Diagnostic HUDsunglasses" - result = /obj/item/clothing/glasses/hud/diagnostic/sunglasses - time = 20 - tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) - reqs = list(/obj/item/clothing/glasses/hud/diagnostic = 1, - /obj/item/clothing/glasses/sunglasses/advanced = 1, - /obj/item/stack/cable_coil = 5) - category = CAT_EYEWEAR - -/datum/crafting_recipe/hudsundiagremoval - name = "Diagnostic HUD removal" - result = /obj/item/clothing/glasses/sunglasses/advanced - time = 20 - tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) - reqs = list(/obj/item/clothing/glasses/hud/diagnostic/sunglasses = 1) - blacklist = list(/obj/item/clothing/glasses/hud/diagnostic/sunglasses/degraded) - category = CAT_EYEWEAR - -/datum/crafting_recipe/beergoggles - name = "Beer Goggles" - result = /obj/item/clothing/glasses/sunglasses/advanced/reagent - time = 20 - tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) - reqs = list(/obj/item/clothing/glasses/science = 1, - /obj/item/clothing/glasses/sunglasses/advanced = 1, - /obj/item/stack/cable_coil = 5) - category = CAT_EYEWEAR - -/datum/crafting_recipe/beergogglesremoval - name = "Beer Goggles removal" - result = /obj/item/clothing/glasses/sunglasses/advanced - time = 20 - tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) - reqs = list(/obj/item/clothing/glasses/sunglasses/advanced/reagent = 1) - category = CAT_EYEWEAR - -/datum/crafting_recipe/sunhudscience - name = "Science Sunglasses" - result = /obj/item/clothing/glasses/science/sciencesun - time = 20 - tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) - reqs = list(/obj/item/clothing/glasses/science = 1, - /obj/item/clothing/glasses/sunglasses/advanced = 1, - /obj/item/stack/cable_coil = 5) - category = CAT_EYEWEAR - -/datum/crafting_recipe/sunhudscienceremoval - name = "Science Sunglasses removal" - result = /obj/item/clothing/glasses/sunglasses/advanced - time = 20 - tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) - reqs = list(/obj/item/clothing/glasses/science/sciencesun = 1) - blacklist = list(/obj/item/clothing/glasses/science/sciencesun/degraded) - category = CAT_EYEWEAR - -/datum/crafting_recipe/deghudsunsec - name = "Degraded Security HUDsunglasses" - result = /obj/item/clothing/glasses/hud/security/sunglasses/degraded - time = 20 - tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) - reqs = list(/obj/item/clothing/glasses/hud/security = 1, - /obj/item/clothing/glasses/sunglasses = 1, - /obj/item/stack/cable_coil = 5) - category = CAT_EYEWEAR - -/datum/crafting_recipe/deghudsunsecremoval - name = "Degraded Security HUD removal" - result = /obj/item/clothing/glasses/sunglasses - time = 20 - tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) - reqs = list(/obj/item/clothing/glasses/hud/security/sunglasses/degraded = 1) - category = CAT_EYEWEAR - -/datum/crafting_recipe/deghudsunmed - name = "Degraded Medical HUDsunglasses" - result = /obj/item/clothing/glasses/hud/health/sunglasses/degraded - time = 20 - tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) - reqs = list(/obj/item/clothing/glasses/hud/health = 1, - /obj/item/clothing/glasses/sunglasses = 1, - /obj/item/stack/cable_coil = 5) - category = CAT_EYEWEAR - -/datum/crafting_recipe/deghudsunmedremoval - name = "Degraded Medical HUD removal" - result = /obj/item/clothing/glasses/sunglasses - time = 20 - tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) - reqs = list(/obj/item/clothing/glasses/hud/health/sunglasses/degraded = 1) - category = CAT_EYEWEAR - -/datum/crafting_recipe/deghudsundiag - name = "Degraded Diagnostic HUDsunglasses" - result = /obj/item/clothing/glasses/hud/diagnostic/sunglasses/degraded - time = 20 - tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) - reqs = list(/obj/item/clothing/glasses/hud/diagnostic = 1, - /obj/item/clothing/glasses/sunglasses = 1, - /obj/item/stack/cable_coil = 5) - category = CAT_EYEWEAR - -/datum/crafting_recipe/deghudsundiagremoval - name = "Degraded Diagnostic HUD removal" - result = /obj/item/clothing/glasses/sunglasses - time = 20 - tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) - reqs = list(/obj/item/clothing/glasses/hud/diagnostic/sunglasses/degraded = 1) - category = CAT_EYEWEAR - -/datum/crafting_recipe/degsunhudscience - name = "Degraded Science Sunglasses" - result = /obj/item/clothing/glasses/science/sciencesun/degraded - time = 20 - tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) - reqs = list(/obj/item/clothing/glasses/science = 1, - /obj/item/clothing/glasses/sunglasses = 1, - /obj/item/stack/cable_coil = 5) - category = CAT_EYEWEAR - -/datum/crafting_recipe/degsunhudscienceremoval - name = "Degraded Science Sunglasses removal" - result = /obj/item/clothing/glasses/sunglasses - time = 20 - tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) - reqs = list(/obj/item/clothing/glasses/science/sciencesun/degraded = 1) - category = CAT_EYEWEAR - -/datum/crafting_recipe/hudpresmed - name = "Prescription Medical HUDglasses" - result = /obj/item/clothing/glasses/hud/health/prescription - time = 20 - tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) - reqs = list(/obj/item/clothing/glasses/hud/health = 1, - /obj/item/clothing/glasses/regular/ = 1, - /obj/item/stack/cable_coil = 5) - category = CAT_EYEWEAR - -/datum/crafting_recipe/hudpressec - name = "Prescription Security HUDglasses" - result = /obj/item/clothing/glasses/hud/security/prescription - time = 20 - tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) - reqs = list(/obj/item/clothing/glasses/hud/security = 1, - /obj/item/clothing/glasses/regular/ = 1, - /obj/item/stack/cable_coil = 5) - category = CAT_EYEWEAR - -/datum/crafting_recipe/hudpressci - name = "Prescription Science Goggles" - result = /obj/item/clothing/glasses/science/prescription - time = 20 - tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) - reqs = list(/obj/item/clothing/glasses/science = 1, - /obj/item/clothing/glasses/regular/ = 1, - /obj/item/stack/cable_coil = 5) - category = CAT_EYEWEAR - -/datum/crafting_recipe/hudpresmeson - name = "Prescription Meson Scanner" - result = /obj/item/clothing/glasses/meson/prescription - time = 20 - tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) - reqs = list(/obj/item/clothing/glasses/meson = 1, - /obj/item/clothing/glasses/regular/ = 1, - /obj/item/stack/cable_coil = 5) - category = CAT_EYEWEAR - -/datum/crafting_recipe/hudpresdiag - name = "Prescription Diagnostic HUDsunglasses" - result = /obj/item/clothing/glasses/hud/diagnostic/prescription - time = 20 - tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) - reqs = list(/obj/item/clothing/glasses/hud/diagnostic = 1, - /obj/item/clothing/glasses/regular/ = 1, - /obj/item/stack/cable_coil = 5) - category = CAT_EYEWEAR - -/datum/crafting_recipe/ghostsheet - name = "Ghost Sheet" - result = /obj/item/clothing/suit/costume/ghost_sheet - time = 5 - tools = list(TOOL_WIRECUTTER) - reqs = list(/obj/item/bedsheet = 1) - category = CAT_CLOTHING - -/datum/crafting_recipe/foilhat - name = "Tinfoil Hat" - result = /obj/item/clothing/head/costume/foilhat - time = 5 - tools = list(TOOL_CROWBAR) - reqs = list(/obj/item/stack/sheet/iron = 3) - category = CAT_CLOTHING - -/datum/crafting_recipe/foilenvirohelm - name = "Ghetto Envirosuit Helmet" - result = /obj/item/clothing/head/costume/foilhat/plasmaman - time = 40 - tools = list(TOOL_CROWBAR, TOOL_WIRECUTTER, TOOL_SCREWDRIVER) - reqs = list(/obj/item/clothing/head/costume/foilhat = 1, - /obj/item/stack/package_wrap = 10, - /obj/item/stack/cable_coil = 15, - /obj/item/clothing/glasses/meson = 1, - /obj/item/flashlight = 1, - /obj/item/clothing/head/utility/hardhat = 1, - /obj/item/stack/sheet/glass = 1) - category = CAT_CLOTHING - -/datum/crafting_recipe/rainbowbunchcrown - name = "Rainbow Flower Crown" - result = /obj/item/clothing/head/flowercrown/rainbowbunch - time = 20 - reqs = list(/obj/item/food/grown/flower/rainbow = 5, - /obj/item/stack/cable_coil = 3) - category = CAT_CLOTHING - -/datum/crafting_recipe/sunflowercrown - name = "Sunflower Crown" - result = /obj/item/clothing/head/flowercrown/sunflower - time = 20 - reqs = list(/obj/item/grown/sunflower = 5, - /obj/item/stack/cable_coil = 3) - category = CAT_CLOTHING - -/datum/crafting_recipe/poppycrown - name = "Poppy Crown" - result = /obj/item/clothing/head/flowercrown/poppy - time = 20 - reqs = list(/obj/item/food/grown/flower/poppy = 5, - /obj/item/stack/cable_coil = 3) - category = CAT_CLOTHING - -/datum/crafting_recipe/lilycrown - name = "Lily Crown" - result = /obj/item/clothing/head/flowercrown/lily - time = 20 - reqs = list(/obj/item/food/grown/flower/lily = 3, - /obj/item/stack/cable_coil = 3) - category = CAT_CLOTHING diff --git a/code/datums/diseases/advance/symptoms/clockwork.dm b/code/datums/diseases/advance/symptoms/clockwork.dm index 9c84bd2161db6..31be490fe2e1a 100644 --- a/code/datums/diseases/advance/symptoms/clockwork.dm +++ b/code/datums/diseases/advance/symptoms/clockwork.dm @@ -348,7 +348,7 @@ H.update_body() return if(istype(H)) - if(!("tail_human" in H.dna.species.mutant_bodyparts)) + if(!(H.dna.species.mutant_bodyparts["tail_human"])) H.dna.features["tail_human"] = tail_type H.dna.species.mutant_bodyparts |= "tail_human" H.update_body() diff --git a/code/datums/diseases/advance/symptoms/organs.dm b/code/datums/diseases/advance/symptoms/organs.dm index 85f64b361ab4c..266b01f75ece0 100644 --- a/code/datums/diseases/advance/symptoms/organs.dm +++ b/code/datums/diseases/advance/symptoms/organs.dm @@ -202,15 +202,6 @@ O.Insert(M, drop_if_replaced = FALSE) M.adjustOrganLoss(ORGAN_SLOT_LIVER, 200) return - if(!M.getorgan(/obj/item/organ/tail)) - if(S.mutanttail) - var/obj/item/organ/tail/O = new S.mutanttail() - O.Insert(M, drop_if_replaced = FALSE) - M.adjustOrganLoss(ORGAN_SLOT_TAIL, 200) - M.visible_message("[M] sprouts a new tail!", "You sprout a new tail!.") - playsound(M, 'sound/magic/demon_consume.ogg', 50, 1) - M.add_splatter_floor(get_turf(M)) - return if(!M.getorgan(/obj/item/organ/wings)) if(S.mutantwings) var/obj/item/organ/wings/O = new S.mutantwings() diff --git a/code/datums/elements/mechanical_repair.dm b/code/datums/elements/mechanical_repair.dm index 5f8071c37fd50..ecfd1e7d78a19 100644 --- a/code/datums/elements/mechanical_repair.dm +++ b/code/datums/elements/mechanical_repair.dm @@ -32,7 +32,7 @@ return COMPONENT_NO_AFTERATTACK /datum/element/mechanical_repair/proc/complete_repairs(mob/living/carbon/human/target, obj/item/I, mob/user, selected_zone) - if(target in user.do_afters || !user.can_interact_with(target, TRUE) || !user.can_interact_with(I, TRUE)) + if((target in user.do_afters) || !user.can_interact_with(target, TRUE) || !user.can_interact_with(I, TRUE)) return COMPONENT_NO_AFTERATTACK var/obj/item/bodypart/affecting = target.get_bodypart(check_zone(selected_zone)) diff --git a/code/datums/elements/shatters_when_thrown.dm b/code/datums/elements/shatters_when_thrown.dm new file mode 100644 index 0000000000000..756ea8ff3441f --- /dev/null +++ b/code/datums/elements/shatters_when_thrown.dm @@ -0,0 +1,66 @@ +/** + * When attached to something, will make that thing shatter into shards on throw impact or z level falling + */ +/datum/element/shatters_when_thrown + element_flags = ELEMENT_BESPOKE + id_arg_index = 2 + + /// What type of item is spawned as a 'shard' once the shattering happens + var/obj/item/shard_type + /// How many shards total are made when the thing we're attached to shatters + var/number_of_shards + /// What sound plays when the thing we're attached to shatters + var/shattering_sound + +/datum/element/shatters_when_thrown/Attach(datum/target, shard_type = /obj/item/plate_shard, number_of_shards = 5, shattering_sound = 'sound/items/ceramic_break.ogg') + . = ..() + + if(!ismovable(target)) + return ELEMENT_INCOMPATIBLE + + src.shard_type = shard_type + src.number_of_shards = number_of_shards + src.shattering_sound = shattering_sound + + RegisterSignal(target, COMSIG_MOVABLE_IMPACT, PROC_REF(on_throw_impact)) + RegisterSignal(target, COMSIG_ATOM_ON_Z_IMPACT, PROC_REF(on_z_impact)) + +/datum/element/shatters_when_thrown/Detach(datum/target) + . = ..() + + UnregisterSignal(target, list(COMSIG_MOVABLE_IMPACT, COMSIG_ATOM_ON_Z_IMPACT)) + +/// Tells the parent to shatter if we impact a lower zlevel +/datum/element/shatters_when_thrown/proc/on_z_impact(datum/source, turf/impacted_turf, levels) + SIGNAL_HANDLER + + shatter(source, impacted_turf) + +/// Tells the parent to shatter if we are thrown and impact something +/datum/element/shatters_when_thrown/proc/on_throw_impact(datum/source, atom/hit_atom) + SIGNAL_HANDLER + + shatter(source, hit_atom) + +/// Handles the actual shattering part, throwing shards of whatever is defined on the component everywhere +/datum/element/shatters_when_thrown/proc/shatter(atom/movable/source, atom/hit_atom) + var/generator/scatter_gen = generator("circle", 0, 48, NORMAL_RAND) + var/scatter_turf = get_turf(hit_atom) + + for(var/obj/item/scattered_item as anything in source.contents) + scattered_item.forceMove(scatter_turf) + var/list/scatter_vector = scatter_gen.Rand() + scattered_item.pixel_x = scatter_vector[1] + scattered_item.pixel_y = scatter_vector[2] + + for(var/iteration in 1 to number_of_shards) + var/obj/item/shard = new shard_type(scatter_turf) + shard.pixel_x = rand(-6, 6) + shard.pixel_y = rand(-6, 6) + playsound(scatter_turf, shattering_sound, 60, TRUE) + if(isobj(source)) + var/obj/obj_source = source + obj_source.deconstruct(FALSE) + return + else + qdel(source) diff --git a/code/datums/wires/_wires.dm b/code/datums/wires/_wires.dm index ab15cefb5386f..3f49137762e68 100644 --- a/code/datums/wires/_wires.dm +++ b/code/datums/wires/_wires.dm @@ -58,7 +58,12 @@ /datum/wires/Destroy() holder = null - assemblies.Cut() + //properly clear refs to avoid harddels & other problems + for(var/color in assemblies) + var/obj/item/assembly/assembly = assemblies[color] + assembly.holder = null + assembly.connected = null + LAZYCLEARLIST(assemblies) return ..() /datum/wires/proc/add_duds(duds) @@ -178,7 +183,16 @@ if(S && istype(S) && S.attachable && !is_attached(color)) assemblies[color] = S S.forceMove(holder) + /** + * special snowflake check for machines + * someone attached a signaler to the machines wires + * move it to the machines component parts so it doesn't get moved out in dump_inventory_contents() which gets called a lot + */ + if(istype(holder, /obj/machinery)) + var/obj/machinery/machine = holder + LAZYADD(machine.component_parts, S) S.connected = src + S.on_attach() // Notify assembly that it is attached ui_update() return S @@ -186,8 +200,7 @@ var/obj/item/assembly/S = get_attached(color) if(S && istype(S)) assemblies -= color - S.connected = null - S.forceMove(holder.drop_location()) + S.on_detach() // Notify the assembly. This should remove the reference to our holder ui_update() return S diff --git a/code/game/communications.dm b/code/game/communications.dm index 041bfa2e005ec..19a321899713d 100644 --- a/code/game/communications.dm +++ b/code/game/communications.dm @@ -178,10 +178,13 @@ GLOBAL_LIST_INIT(reverseradiochannels, list( if (!filter) filter = "_default" + var/datum/weakref/new_listener = WEAKREF(device) + if(isnull(new_listener)) + CRASH("null, non-datum, or qdeleted device") var/list/devices_line = devices[filter] if(!devices_line) devices[filter] = devices_line = list() - devices_line += WEAKREF(device) + devices_line += new_listener /datum/radio_frequency/proc/remove_listener(obj/device) @@ -198,11 +201,21 @@ GLOBAL_LIST_INIT(reverseradiochannels, list( return /datum/signal + /// The source of this signal. var/obj/source + /// The frequency on which this signal was emitted. var/frequency = 0 + /// The method through which this signal was transmitted. + /// See all of the `TRANSMISSION_X` in `code/__DEFINES/radio.dm` for + /// all of the possible options. var/transmission_method + /// The data carried through this signal. Defaults to `null`, otherwise it's + /// an associative list of (string, any). var/list/data + /// Logging data, used for logging purposes. Makes sense, right? + var/logging_data -/datum/signal/New(data, transmission_method = TRANSMISSION_RADIO) +/datum/signal/New(data, transmission_method = TRANSMISSION_RADIO, logging_data = null) src.data = data || list() src.transmission_method = transmission_method + src.logging_data = logging_data diff --git a/code/game/machinery/buttons.dm b/code/game/machinery/buttons.dm index e2f637ce90b3c..54182368f4896 100644 --- a/code/game/machinery/buttons.dm +++ b/code/game/machinery/buttons.dm @@ -173,7 +173,7 @@ CREATION_TEST_IGNORE_SUBTYPES(/obj/machinery/button) icon_state = "[skin]1" if(device) - device.pulsed() + device.pulsed(user) addtimer(CALLBACK(src, TYPE_PROC_REF(/atom, update_icon)), 15) diff --git a/code/game/machinery/computer/card.dm b/code/game/machinery/computer/card.dm index 031b5df731bc0..8144aa115344c 100644 --- a/code/game/machinery/computer/card.dm +++ b/code/game/machinery/computer/card.dm @@ -698,7 +698,7 @@ GLOBAL_VAR_INIT(time_last_changed_position, 0) update_modify_manifest() if ("demote") - if(inserted_modify_id.assignment in head_subordinates || inserted_modify_id.assignment == "Assistant") + if((inserted_modify_id.assignment in head_subordinates) || inserted_modify_id.assignment == "Assistant") inserted_modify_id.assignment = "Demoted" log_id("[key_name(usr)] demoted [inserted_modify_id], unassigning the card without affecting access, using [inserted_scan_id] at [AREACOORD(usr)].") playsound(src, 'sound/machines/terminal_prompt_confirm.ogg', 50, FALSE) diff --git a/code/game/machinery/dish_drive.dm b/code/game/machinery/dish_drive.dm index bd5eb18709cb2..c2d434811fae6 100644 --- a/code/game/machinery/dish_drive.dm +++ b/code/game/machinery/dish_drive.dm @@ -12,7 +12,6 @@ pass_flags = PASSTABLE var/static/list/collectable_items = list( /obj/item/trash/waffles, - /obj/item/trash/plate, /obj/item/trash/tray, /obj/item/reagent_containers/glass/bowl, /obj/item/reagent_containers/food/drinks/drinkingglass, @@ -23,7 +22,6 @@ var/static/list/disposable_items = list( /obj/item/trash/waffles, - /obj/item/trash/plate, /obj/item/trash/tray, /obj/item/shard, /obj/item/broken_bottle diff --git a/code/game/objects/effects/spawners/lootdrop.dm b/code/game/objects/effects/spawners/lootdrop.dm index 4eb5d8fc14d0d..6e4f4a1268f61 100644 --- a/code/game/objects/effects/spawners/lootdrop.dm +++ b/code/game/objects/effects/spawners/lootdrop.dm @@ -91,7 +91,6 @@ /obj/item/trash/chips = 1, /obj/item/food/deadmouse = 1, /obj/item/trash/pistachios = 1, - /obj/item/trash/plate = 1, /obj/item/trash/popcorn = 1, /obj/item/trash/raisins = 1, /obj/item/trash/sosjerky = 1, diff --git a/code/game/objects/items/carp_lasso.dm b/code/game/objects/items/carp_lasso.dm index c2fea3899e1de..13a36119865cc 100644 --- a/code/game/objects/items/carp_lasso.dm +++ b/code/game/objects/items/carp_lasso.dm @@ -77,14 +77,13 @@ to_chat(user, "You can't do that right now!") return //Do lasso/beam for style points - var/datum/beam/B = new(loc, C, time=1 SECONDS, beam_icon='icons/effects/beam.dmi', beam_icon_state="carp_lasso", btype=/obj/effect/ebeam) - INVOKE_ASYNC(B, TYPE_PROC_REF(/datum/beam, Start)) + user.Beam(BeamTarget=C,icon_state = "carp_lasso",icon='icons/effects/beam.dmi', time = 1 SECONDS) C.unbuckle_all_mobs() mob_target = C C.throw_at(get_turf(src), 9, 2, user, FALSE, force = 0) C.transform = transform.Turn(180) C.toggle_ai(AI_OFF) - RegisterSignal(C, COMSIG_PARENT_QDELETING, PROC_REF(handle_hard_del)) + RegisterSignal(C, COMSIG_PARENT_QDELETING, PROC_REF(handle_hard_del), override=TRUE) to_chat(user, "You lasso [C]!") timer = addtimer(CALLBACK(src, PROC_REF(fail_ally)), 6 SECONDS, TIMER_STOPPABLE) //after 6 seconds set the carp back @@ -92,14 +91,17 @@ return ((!whitelist_mobs || is_type_in_typecache(target, whitelist_mobs)) && (!blacklist_mobs || !is_type_in_typecache(target, blacklist_mobs))) /obj/item/mob_lasso/proc/fail_ally() + if(!mob_target) + return visible_message("[mob_target] breaks free!") - mob_target?.transform = transform.Turn(0) - mob_target?.toggle_ai(AI_ON) + mob_target.transform = transform.Turn(0) + mob_target.toggle_ai(AI_ON) UnregisterSignal(mob_target, COMSIG_PARENT_QDELETING) mob_target = null timer = null /obj/item/mob_lasso/proc/handle_hard_del() + SIGNAL_HANDLER mob_target = null timer = null diff --git a/code/game/objects/items/crayons.dm b/code/game/objects/items/crayons.dm index d54ac8c5c523d..9b06ed7837563 100644 --- a/code/game/objects/items/crayons.dm +++ b/code/game/objects/items/crayons.dm @@ -227,7 +227,7 @@ . = TRUE if("select_stencil") var/stencil = params["item"] - if(stencil in all_drawables + randoms) + if(stencil in (all_drawables + randoms)) drawtype = stencil . = TRUE text_buffer = "" @@ -316,7 +316,7 @@ temp = "symbol" else if(drawing in drawings) temp = "drawing" - else if(drawing in graffiti|oriented) + else if(drawing in (graffiti | oriented)) temp = "graffiti" var/gang_check = hippie_gang_check(user,target) // hippie start -- gang check and temp setting if(!gang_check) return // hippie end diff --git a/code/game/objects/items/devices/scanners.dm b/code/game/objects/items/devices/scanners.dm index 912ae6c2c49a7..fe483c15e7822 100644 --- a/code/game/objects/items/devices/scanners.dm +++ b/code/game/objects/items/devices/scanners.dm @@ -410,29 +410,18 @@ GENE SCANNER if(ishuman(M)) var/mob/living/carbon/human/H = M var/datum/species/S = H.dna.species - var/mutant = FALSE - if(H.dna.check_mutation(HULK)) - mutant = TRUE - else if(S.mutantlungs != initial(S.mutantlungs)) - mutant = TRUE - else if(S.mutant_brain != initial(S.mutant_brain)) - mutant = TRUE - else if(S.mutant_heart != initial(S.mutant_heart)) - mutant = TRUE - else if(S.mutanteyes != initial(S.mutanteyes)) - mutant = TRUE - else if(S.mutantears != initial(S.mutantears)) - mutant = TRUE - else if(S.mutanthands != initial(S.mutanthands)) - mutant = TRUE - else if(S.mutanttongue != initial(S.mutanttongue)) - mutant = TRUE - else if(S.mutanttail != initial(S.mutanttail)) - mutant = TRUE - else if(S.mutantliver != initial(S.mutantliver)) - mutant = TRUE - else if(S.mutantstomach != initial(S.mutantstomach)) - mutant = TRUE + var/mutant = H.dna.check_mutation(HULK) \ + || S.mutantlungs != initial(S.mutantlungs) \ + || S.mutantbrain != initial(S.mutantbrain) \ + || S.mutantheart != initial(S.mutantheart) \ + || S.mutanteyes != initial(S.mutanteyes) \ + || S.mutantears != initial(S.mutantears) \ + || S.mutanthands != initial(S.mutanthands) \ + || S.mutanttongue != initial(S.mutanttongue) \ + || S.mutantliver != initial(S.mutantliver) \ + || S.mutantstomach != initial(S.mutantstomach) \ + || S.mutantappendix != initial(S.mutantappendix) \ + || S.mutantwings != initial(S.mutantwings) message += "Species: [S.name][mutant ? "-derived mutant" : ""]" message += "Core temperature: [round(H.coretemperature-T0C,0.1)] °C ([round(H.coretemperature*1.8-459.67,0.1)] °F)" diff --git a/code/game/objects/items/devices/transfer_valve.dm b/code/game/objects/items/devices/transfer_valve.dm index 8b6d1ad9d75a1..3e38084aca31a 100644 --- a/code/game/objects/items/devices/transfer_valve.dm +++ b/code/game/objects/items/devices/transfer_valve.dm @@ -58,8 +58,8 @@ return attached_device = A to_chat(user, "You attach the [item] to the valve controls and secure it.") - A.on_attach() A.holder = src + A.on_attach() A.toggle_secure() //this calls update_icon(), which calls update_icon() on the holder (i.e. the bomb). log_bomber(user, "attached a [item.name] to a ttv -", src, null, FALSE) attacher = user diff --git a/code/game/objects/items/food/cake.dm b/code/game/objects/items/food/cake.dm index c3fd84ca4471f..4e68af279c979 100644 --- a/code/game/objects/items/food/cake.dm +++ b/code/game/objects/items/food/cake.dm @@ -355,10 +355,10 @@ tastes = list("blackberry" = 2, "strawberries" = 2, "vanilla" = 2, "sweetness" = 2,"cake" = 3) foodtypes = GRAIN | DAIRY | FRUIT | SUGAR -/obj/item/food/cake/bscc // blackbarry strawberries chocolate cake - name = "blackberry and strawberry chocolate cake" - desc = "A chocolate cake, filled with assortment of blackberries and strawberries!" - icon_state = "blackberry_strawberries_cake_cocoa_cake" +/obj/item/food/cake/bscc // blackbarry strawberries chocolate cake <- this is a relic from before resprite + name = "strawberry chocolate cake" + desc = "A chocolate cake with five strawberries on top. For some reason, this configuration of cake is particularly aesthetically pleasing to AIs in SELF." + icon_state = "liars_cake" food_reagents = list( /datum/reagent/consumable/nutriment = 20, /datum/reagent/consumable/nutriment/vitamin = 5, @@ -369,10 +369,10 @@ slice_type = /obj/item/food/cakeslice/bscc /obj/item/food/cakeslice/bscc - name = "blackberry and strawberry chocolate cake slice" - desc = "Just a slice of cake filled with assortment of blackberries and strawberries!" - icon_state = "blackberry_strawberries_cake_cocoa_slice" - tastes = list("blackberry" = 2, "strawberries" = 2, "chocolate" = 4, "sweetness" = 2,"cake" = 3) + name = "strawberry chocolate cake slice" + desc = "Just a slice of cake with five strawberries on top. For some reason, this configuration of cake is particularly aesthetically pleasing to AIs in SELF." //yes, I know the one referenced has cherries, but I'm not implementing a new cake today. + icon_state = "liars_slice" + tastes = list("strawberries" = 2, "chocolate" = 2, "sweetness" = 2,"cake" = 3) foodtypes = GRAIN | DAIRY | FRUIT | SUGAR /obj/item/food/cake/holy_cake diff --git a/code/game/objects/items/food/egg.dm b/code/game/objects/items/food/egg.dm index e992a6ed02a97..f5a1e479812fa 100644 --- a/code/game/objects/items/food/egg.dm +++ b/code/game/objects/items/food/egg.dm @@ -120,7 +120,6 @@ desc = "That's all you can say!" icon = 'icons/obj/food/egg.dmi' icon_state = "omelette" - trash_type = /obj/item/trash/plate food_reagents = list( /datum/reagent/consumable/nutriment/protein = 10, /datum/reagent/consumable/nutriment/vitamin = 3 @@ -158,7 +157,6 @@ /datum/reagent/consumable/nutriment/protein = 6, /datum/reagent/consumable/nutriment = 3 ) - trash_type = /obj/item/trash/plate w_class = WEIGHT_CLASS_SMALL tastes = list("egg" = 1, "bacon" = 1, "bun" = 1) foodtypes = MEAT | BREAKFAST | GRAIN diff --git a/code/game/objects/items/food/pie.dm b/code/game/objects/items/food/pie.dm index 57c4a8efe90ce..e88ce03a34511 100644 --- a/code/game/objects/items/food/pie.dm +++ b/code/game/objects/items/food/pie.dm @@ -293,7 +293,7 @@ /obj/item/food/pie/cocoalavatart name = "chocolate lava tart" desc = "A tasty dessert made of chocolate, with a liquid core." //But it doesn't even contain chocolate... - icon_state = "cocoalavatart" + icon_state = "cocolavatart" food_reagents = list( /datum/reagent/consumable/nutriment = 4, /datum/reagent/consumable/nutriment/vitamin = 4, diff --git a/code/game/objects/items/food/sandwichtoast.dm b/code/game/objects/items/food/sandwichtoast.dm index 9f977a7702882..9760d1788e92d 100644 --- a/code/game/objects/items/food/sandwichtoast.dm +++ b/code/game/objects/items/food/sandwichtoast.dm @@ -34,10 +34,14 @@ desc = "A light snack for a warm day. ...but what if you grilled it?" icon = 'icons/obj/food/burgerbread.dmi' icon_state = "sandwich" - trash_type = /obj/item/trash/plate - food_reagents = list(/datum/reagent/consumable/nutriment = 7, /datum/reagent/consumable/nutriment/protein = 3, /datum/reagent/consumable/nutriment/vitamin = 1) + food_reagents = list( + /datum/reagent/consumable/nutriment = 7, + /datum/reagent/consumable/nutriment/protein = 3, + /datum/reagent/consumable/nutriment/vitamin = 1 + ) tastes = list("bread" = 1, "cheese" = 1) foodtypes = GRAIN | DAIRY + food_flags = FOOD_FINGER_FOOD w_class = WEIGHT_CLASS_SMALL /obj/item/food/cheese_sandwich/make_grillable() diff --git a/code/game/objects/items/food/spaghetti.dm b/code/game/objects/items/food/spaghetti.dm index cfcd7518150aa..49f3a581289d2 100644 --- a/code/game/objects/items/food/spaghetti.dm +++ b/code/game/objects/items/food/spaghetti.dm @@ -2,7 +2,6 @@ name = "Spaghetti Parent" desc = "You either spawned this erroneously, or a coder did. Either way, someone messed up." icon = 'icons/obj/food/spaghetti.dmi' - icon_state = "ERROR" food_reagents = list(/datum/reagent/consumable/nutriment = 1, /datum/reagent/consumable/nutriment/vitamin = 1) foodtypes = GRAIN @@ -25,7 +24,6 @@ name = "boiled spaghetti" desc = "A plain dish of noodles, this needs more ingredients." icon_state = "spaghettiboiled" - trash_type = /obj/item/trash/plate food_reagents = list(/datum/reagent/consumable/nutriment = 2, /datum/reagent/consumable/nutriment/vitamin = 1) microwaved_type = null @@ -37,7 +35,6 @@ name = "spaghetti" desc = "Spaghetti and crushed tomatoes. Just like your abusive father used to make!" icon_state = "pastatomato" - trash_type = /obj/item/trash/plate bite_consumption = 4 food_reagents = list(/datum/reagent/consumable/nutriment = 6, /datum/reagent/consumable/tomatojuice = 10, /datum/reagent/consumable/nutriment/vitamin = 4) microwaved_type = null @@ -48,7 +45,6 @@ name = "copypasta" desc = "You probably shouldn't try this, you always hear people talking about how bad it is..." icon_state = "copypasta" - trash_type = /obj/item/trash/plate bite_consumption = 4 food_reagents = list(/datum/reagent/consumable/nutriment = 12, /datum/reagent/consumable/tomatojuice = 20, /datum/reagent/consumable/nutriment/vitamin = 8) microwaved_type = null @@ -59,7 +55,6 @@ name = "spaghetti and meatballs" desc = "Now that's a nic'e meatball!" icon_state = "meatballspaghetti" - trash_type = /obj/item/trash/plate food_reagents = list(/datum/reagent/consumable/nutriment = 4, /datum/reagent/consumable/nutriment/vitamin = 2) microwaved_type = null tastes = list("pasta" = 1, "meat" = 1) @@ -69,7 +64,6 @@ name = "spesslaw" desc = "A lawyers favourite." icon_state = "spesslaw" - trash_type = /obj/item/trash/plate food_reagents = list(/datum/reagent/consumable/nutriment = 4, /datum/reagent/consumable/nutriment/vitamin = 3) microwaved_type = null tastes = list("pasta" = 1, "meat" = 1) @@ -78,7 +72,6 @@ name = "chow mein" desc = "A nice mix of noodles and fried vegetables." icon_state = "chowmein" - trash_type = /obj/item/trash/plate food_reagents = list(/datum/reagent/consumable/nutriment = 6, /datum/reagent/consumable/nutriment/vitamin = 6) microwaved_type = null tastes = list("noodle" = 1, "tomato" = 1) @@ -97,7 +90,6 @@ name = "butter noodles" desc = "Noodles covered in savory butter. Simple and slippery, but delicious." icon_state = "butternoodles" - trash_type = /obj/item/trash/plate food_reagents = list(/datum/reagent/consumable/nutriment = 9, /datum/reagent/consumable/nutriment/vitamin = 2) microwaved_type = null tastes = list("noodle" = 1, "butter" = 1) @@ -107,7 +99,6 @@ name = "käsespätzle" desc = "A special kind of pasta made with eggs, served with tasty cheese." icon_state = "kasespatzle" - trash_type = /obj/item/trash/plate food_reagents = list(/datum/reagent/consumable/nutriment = 8, /datum/reagent/consumable/nutriment/vitamin = 4) microwaved_type = null tastes = list("pasta" = 1, "cheese" = 1, "egg" = 1) @@ -117,7 +108,6 @@ name = "spaghetti napolitan" desc = "The only excuse to ever put ketchup into your spaghetti." icon_state = "spaghettinapolitan" - trash_type = /obj/item/trash/plate food_reagents = list(/datum/reagent/consumable/nutriment = 8, /datum/reagent/consumable/nutriment/vitamin = 6) microwaved_type = null tastes = list("pasta" = 1, "ketchup" = 1, "sausage" = 1) @@ -127,7 +117,6 @@ name = "lasagna" desc = "Somewhere, in some different universe, a cat is smoking your pipe." icon_state = "lasagna" - trash_type = /obj/item/trash/plate food_reagents = list(/datum/reagent/consumable/nutriment = 6, /datum/reagent/consumable/tomatojuice = 5, /datum/reagent/consumable/nutriment/vitamin = 4) microwaved_type = null tastes = list("pasta" = 1, "tomato" = 1, "cheese" = 1, "mondays" = 1) @@ -137,7 +126,6 @@ name = "glass noodles" desc = "Noodles so transparent, you can see through them!" icon_state = "glassnoodles" - trash_type = /obj/item/trash/plate food_reagents = list(/datum/reagent/consumable/nutriment = 7, /datum/reagent/consumable/nutriment/vitamin = 6) microwaved_type = null tastes = list("noodle" = 1, "sweetness" = 1, "tofu" = 1) diff --git a/code/game/objects/items/pet_carrier.dm b/code/game/objects/items/pet_carrier.dm index 8389506970502..6fa312c6cf393 100644 --- a/code/game/objects/items/pet_carrier.dm +++ b/code/game/objects/items/pet_carrier.dm @@ -39,7 +39,7 @@ occupant_weight -= L.mob_size /obj/item/pet_carrier/handle_atom_del(atom/A) - if(A in occupants && isliving(A)) + if((A in occupants) && isliving(A)) var/mob/living/L = A occupants -= L occupant_weight -= L.mob_size @@ -184,7 +184,7 @@ add_occupant(target) /obj/item/pet_carrier/proc/add_occupant(mob/living/occupant) - if(occupant in occupants || !istype(occupant)) + if((occupant in occupants) || !istype(occupant)) return occupant.forceMove(src) occupants += occupant diff --git a/code/game/objects/items/religion.dm b/code/game/objects/items/religion.dm index 30a5b22125a64..f0f9182affd16 100644 --- a/code/game/objects/items/religion.dm +++ b/code/game/objects/items/religion.dm @@ -88,14 +88,6 @@ /obj/item/banner/security/mundane inspiration_available = FALSE -/datum/crafting_recipe/security_banner - name = "Securistan Banner" - result = /obj/item/banner/security/mundane - time = 40 - reqs = list(/obj/item/stack/rods = 2, - /obj/item/clothing/under/rank/security/officer = 1) - category = CAT_MISC - /obj/item/banner/medical name = "meditopia banner" desc = "The banner of Meditopia, generous benefactors that cure wounds and shelter the weak." @@ -112,14 +104,6 @@ /obj/item/banner/medical/check_inspiration(mob/living/carbon/human/H) return H.stat //Meditopia is moved to help those in need -/datum/crafting_recipe/medical_banner - name = "Meditopia Banner" - result = /obj/item/banner/medical/mundane - time = 40 - reqs = list(/obj/item/stack/rods = 2, - /obj/item/clothing/under/rank/medical = 1) - category = CAT_MISC - /obj/item/banner/medical/special_inspiration(mob/living/carbon/human/H) H.adjustToxLoss(-15, FALSE, TRUE) H.setOxyLoss(0) @@ -141,14 +125,6 @@ /obj/item/banner/science/check_inspiration(mob/living/carbon/human/H) return H.on_fire //Sciencia is pleased by dedication to the art of Toxins -/datum/crafting_recipe/science_banner - name = "Sciencia Banner" - result = /obj/item/banner/science/mundane - time = 40 - reqs = list(/obj/item/stack/rods = 2, - /obj/item/clothing/under/rank/rnd/scientist = 1) - category = CAT_MISC - /obj/item/banner/cargo name = "cargonia banner" desc = "The banner of the eternal Cargonia, with the mystical power of conjuring any object into existence." @@ -162,14 +138,6 @@ /obj/item/banner/cargo/mundane inspiration_available = FALSE -/datum/crafting_recipe/cargo_banner - name = "Cargonia Banner" - result = /obj/item/banner/cargo/mundane - time = 40 - reqs = list(/obj/item/stack/rods = 2, - /obj/item/clothing/under/rank/cargo/tech = 1) - category = CAT_MISC - /obj/item/banner/engineering name = "engitopia banner" desc = "The banner of Engitopia, wielders of limitless power." @@ -186,14 +154,6 @@ /obj/item/banner/engineering/special_inspiration(mob/living/carbon/human/H) H.radiation = 0 -/datum/crafting_recipe/engineering_banner - name = "Engitopia Banner" - result = /obj/item/banner/engineering/mundane - time = 40 - reqs = list(/obj/item/stack/rods = 2, - /obj/item/clothing/under/rank/engineering/engineer = 1) - category = CAT_MISC - /obj/item/banner/command name = "command banner" desc = "The banner of Command, a staunch and ancient line of bueraucratic kings and queens." @@ -207,14 +167,6 @@ /obj/item/banner/command/check_inspiration(mob/living/carbon/human/H) return HAS_TRAIT(H, TRAIT_MINDSHIELD) //Command is stalwart but rewards their allies. -/datum/crafting_recipe/command_banner - name = "Command Banner" - result = /obj/item/banner/command/mundane - time = 40 - reqs = list(/obj/item/stack/rods = 2, - /obj/item/clothing/under/rank/captain/parade = 1) - category = CAT_MISC - /obj/item/banner/red name = "red banner" icon_state = "banner-red" diff --git a/code/game/objects/items/robot/robot_items.dm b/code/game/objects/items/robot/robot_items.dm index eed38a704e5b2..2d53fad04d176 100644 --- a/code/game/objects/items/robot/robot_items.dm +++ b/code/game/objects/items/robot/robot_items.dm @@ -841,7 +841,7 @@ /********************************************************************** Borg apparatus ***********************************************************************/ -//These are tools that can hold only specific items. For example, the mediborg gets one that can only hold beakers and bottles. +//These are tools that can hold only specific items. For example, the mediborg and service borg get one that can only hold reagent containers /obj/item/borg/apparatus/ name = "unknown storage apparatus" @@ -923,33 +923,28 @@ return . = ..() -///////////////// -//beaker holder// -///////////////// +//////////////////// +//container holder// +//////////////////// -/obj/item/borg/apparatus/beaker - name = "beaker storage apparatus" - desc = "A special apparatus for carrying beakers without spilling the contents." +/obj/item/borg/apparatus/container + name = "container storage apparatus" + desc = "A special apparatus for carrying containers without spilling the contents. It can also synthesize new beakers!" icon_state = "borg_beaker_apparatus" - storable = list(/obj/item/reagent_containers/glass/beaker, - /obj/item/reagent_containers/glass/bottle) - -/obj/item/borg/apparatus/beaker/Initialize(mapload) - . = ..() - stored = new /obj/item/reagent_containers/glass/beaker/large(src) - RegisterSignal(stored, COMSIG_ATOM_UPDATE_ICON, TYPE_PROC_REF(/atom, update_icon)) - update_icon() + storable = list(/obj/item/reagent_containers/glass) + var/defaultcontainer = /obj/item/reagent_containers/glass/beaker -/obj/item/borg/apparatus/beaker/Destroy() +/obj/item/borg/apparatus/container/Destroy() if(stored) var/obj/item/reagent_containers/C = stored C.SplashReagents(get_turf(src)) QDEL_NULL(stored) . = ..() -/obj/item/borg/apparatus/beaker/examine() +/obj/item/borg/apparatus/container/examine() . = ..() - if(stored) + //apparatus/container/service means this will not always be true. + if(istype(stored, /obj/item/reagent_containers/glass)) var/obj/item/reagent_containers/C = stored . += "The apparatus currently has [C] secured, which contains:" if(length(C.reagents.reagent_list)) @@ -959,7 +954,7 @@ . += "Nothing." . += "Alt-click will drop the currently stored [stored]." -/obj/item/borg/apparatus/beaker/update_overlays() +/obj/item/borg/apparatus/container/update_overlays() . = ..() var/mutable_appearance/arm = mutable_appearance(icon = icon, icon_state = "borg_beaker_apparatus_arm") if(stored) @@ -976,7 +971,14 @@ arm.pixel_y = arm.pixel_y - 5 . += arm -/obj/item/borg/apparatus/beaker/attack_self(mob/living/silicon/robot/user) +/obj/item/borg/apparatus/container/attack_self(mob/living/silicon/robot/user) + if(!stored) + var/newcontainer = new defaultcontainer(src) + stored = newcontainer + to_chat(user, "You synthesize a new [newcontainer]!") + playsound(src, 'sound/machines/click.ogg', 10, 1) + update_icon() + return if(stored && !user.client?.keys_held["Alt"] && user.a_intent != "help") var/obj/item/reagent_containers/C = stored C.SplashReagents(get_turf(user)) @@ -984,9 +986,9 @@ return . = ..() -/obj/item/borg/apparatus/beaker/extra - name = "secondary beaker storage apparatus" - desc = "A supplementary beaker storage apparatus." +/obj/item/borg/apparatus/container/extra + name = "container storage apparatus" + desc = "A supplementary container storage apparatus." //////////////////// //engi part holder// @@ -1033,10 +1035,11 @@ //versatile service holder// //////////////////// -/obj/item/borg/apparatus/beaker/service +/obj/item/borg/apparatus/container/service name = "versatile service grasper" - desc = "Specially designed for carrying glasses, food and seeds." + desc = "Specially designed for carrying glasses, food and seeds. It can also synthesize glasses for drinks!" storable = list(/obj/item/reagent_containers/food, + /obj/item/reagent_containers/glass, /obj/item/seeds, /obj/item/storage/fancy/donut_box, /obj/item/storage/fancy/egg_box, @@ -1046,10 +1049,13 @@ /obj/item/reagent_containers/glass/bottle, /obj/item/reagent_containers/glass/bucket ) + defaultcontainer = /obj/item/reagent_containers/food/drinks/drinkingglass -/obj/item/borg/apparatus/beaker/service/examine() + +/obj/item/borg/apparatus/container/service/examine() . = ..() - if(stored) + //Parent type handles this type. All other objects held are handled here. + if(!istype(stored, /obj/item/reagent_containers/glass)) . += "You are currently holding [stored]." . += "Alt-click will drop the currently stored [stored]." diff --git a/code/game/objects/items/robot/robot_upgrades.dm b/code/game/objects/items/robot/robot_upgrades.dm index c8a6796c9d501..42c09695b12c5 100644 --- a/code/game/objects/items/robot/robot_upgrades.dm +++ b/code/game/objects/items/robot/robot_upgrades.dm @@ -742,8 +742,8 @@ R.module.remove_module(C, TRUE) /obj/item/borg/upgrade/beaker_app - name = "beaker storage apparatus" - desc = "A supplementary beaker storage apparatus for medical cyborgs." + name = "container storage apparatus" + desc = "A supplementary container storage apparatus for medical cyborgs." icon_state = "cyborg_upgrade3" require_module = TRUE module_type = list(/obj/item/robot_module/medical) @@ -752,7 +752,7 @@ /obj/item/borg/upgrade/beaker_app/action(mob/living/silicon/robot/R, user = usr) . = ..() if(.) - var/obj/item/borg/apparatus/beaker/extra/E = locate() in R.module.modules + var/obj/item/borg/apparatus/container/extra/E = locate() in R.module.modules if(E) to_chat(user, "This unit has no room for additional beaker storage.") return FALSE @@ -764,11 +764,10 @@ /obj/item/borg/upgrade/beaker_app/deactivate(mob/living/silicon/robot/R, user = usr) . = ..() if (.) - var/obj/item/borg/apparatus/beaker/extra/E = locate() in R.module.modules + var/obj/item/borg/apparatus/container/extra/E = locate() in R.module.modules if (E) R.module.remove_module(E, TRUE) - /obj/item/borg/upgrade/speciality name = "Speciality Module" icon_state = "cyborg_upgrade3" diff --git a/code/game/objects/items/signs.dm b/code/game/objects/items/signs.dm index 99e9ac8c494ad..e6148861fd798 100644 --- a/code/game/objects/items/signs.dm +++ b/code/game/objects/items/signs.dm @@ -44,10 +44,3 @@ user.visible_message("[user] waves around blank sign.") user.changeNext_move(CLICK_CD_MELEE) -/datum/crafting_recipe/picket_sign - name = "Picket Sign" - result = /obj/item/picket_sign - reqs = list(/obj/item/stack/rods = 1, - /obj/item/stack/sheet/cardboard = 2) - time = 80 - category = CAT_MISC diff --git a/code/game/objects/items/storage/bags.dm b/code/game/objects/items/storage/bags.dm index fed6580a6761b..971f18c36535f 100644 --- a/code/game/objects/items/storage/bags.dm +++ b/code/game/objects/items/storage/bags.dm @@ -324,7 +324,7 @@ * Trays - Agouri */ /obj/item/storage/bag/tray - name = "tray" + name = "serving tray" icon = 'icons/obj/food/containers.dmi' icon_state = "tray" worn_icon_state = "tray" @@ -333,8 +333,8 @@ throwforce = 10 throw_speed = 3 throw_range = 5 - w_class = WEIGHT_CLASS_BULKY flags_1 = CONDUCT_1 + slot_flags = ITEM_SLOT_BELT custom_materials = list(/datum/material/iron=3000) /obj/item/storage/bag/tray/ComponentInitialize() diff --git a/code/game/objects/items/trash.dm b/code/game/objects/items/trash.dm index b27c6af8d2e84..f9a1b10bdfb6c 100644 --- a/code/game/objects/items/trash.dm +++ b/code/game/objects/items/trash.dm @@ -48,11 +48,6 @@ name = "waffles tray" icon_state = "waffles" -/obj/item/trash/plate - name = "plate" - icon_state = "plate" - resistance_flags = NONE - /obj/item/trash/pistachios name = "pistachios pack" icon_state = "pistachios_pack" diff --git a/code/modules/admin/permissionedit.dm b/code/modules/admin/permissionedit.dm index 4123e0882f1b1..cf544c293bd4a 100644 --- a/code/modules/admin/permissionedit.dm +++ b/code/modules/admin/permissionedit.dm @@ -218,7 +218,7 @@ . = ckey(admin_key) if(!.) return FALSE - if(!admin_ckey && (. in GLOB.admin_datums+GLOB.deadmins)) + if(!admin_ckey && (. in (GLOB.admin_datums+GLOB.deadmins))) to_chat(usr, "[admin_key] is already an admin.") return FALSE if(use_db) diff --git a/code/modules/antagonists/blob/overmind.dm b/code/modules/antagonists/blob/overmind.dm index 025d085e789fd..5113bb18ca5f5 100644 --- a/code/modules/antagonists/blob/overmind.dm +++ b/code/modules/antagonists/blob/overmind.dm @@ -140,7 +140,7 @@ CREATION_TEST_IGNORE_SUBTYPES(/mob/camera/blob) if(!T || !is_station_level(T.z)) continue - if(L in GLOB.overminds || (L.pass_flags & PASSBLOB)) + if((L in GLOB.overminds) || (L.pass_flags & PASSBLOB)) continue var/area/Ablob = get_area(T) diff --git a/code/modules/antagonists/changeling/powers/regenerate.dm b/code/modules/antagonists/changeling/powers/regenerate.dm index 7987a3761650d..130ced301e540 100644 --- a/code/modules/antagonists/changeling/powers/regenerate.dm +++ b/code/modules/antagonists/changeling/powers/regenerate.dm @@ -26,8 +26,8 @@ C.regenerate_limbs(1) if(!user.getorganslot(ORGAN_SLOT_BRAIN)) var/obj/item/organ/brain/B - if(C.has_dna() && C.dna.species.mutant_brain) - B = new C.dna.species.mutant_brain() + if(C.has_dna() && C.dna.species.mutantbrain) + B = new C.dna.species.mutantbrain() else B = new() B.organ_flags &= ~ORGAN_VITAL diff --git a/code/modules/antagonists/heretic/knowledge/rust_lore.dm b/code/modules/antagonists/heretic/knowledge/rust_lore.dm index 43ee73e2b6ca2..ada6562b60a4c 100644 --- a/code/modules/antagonists/heretic/knowledge/rust_lore.dm +++ b/code/modules/antagonists/heretic/knowledge/rust_lore.dm @@ -402,7 +402,7 @@ max_dist = max(max_dist, get_dist(found_turf, centre) + 1) for(var/turf/nearby_turf as anything in spiral_range_turfs(max_dist, centre, FALSE)) - if(nearby_turf in rusted_turfs || is_type_in_typecache(nearby_turf, blacklisted_turfs)) + if((nearby_turf in rusted_turfs) || is_type_in_typecache(nearby_turf, blacklisted_turfs)) continue for(var/turf/line_turf as anything in getline(nearby_turf, centre)) diff --git a/code/modules/antagonists/heretic/magic/ash_ascension.dm b/code/modules/antagonists/heretic/magic/ash_ascension.dm index 4b4d2ef267ed8..af77434b6872f 100644 --- a/code/modules/antagonists/heretic/magic/ash_ascension.dm +++ b/code/modules/antagonists/heretic/magic/ash_ascension.dm @@ -127,7 +127,7 @@ if(L.anti_magic_check()) L.visible_message("The spell bounces off of [L]!","The spell bounces off of you!") continue - if(L in hit_list || L == source) + if((L in hit_list) || L == source) continue hit_list += L L.adjustFireLoss(20) diff --git a/code/modules/antagonists/wizard/equipment/spellbook.dm b/code/modules/antagonists/wizard/equipment/spellbook.dm index 08bc6e67b5a93..e40f16ca2dded 100644 --- a/code/modules/antagonists/wizard/equipment/spellbook.dm +++ b/code/modules/antagonists/wizard/equipment/spellbook.dm @@ -12,6 +12,7 @@ var/limit //used to prevent a spellbook_entry from being bought more than X times with one wizard spellbook var/list/no_coexistence_typecache //Used so you can't have specific spells together var/no_random = FALSE // This is awful one to be a part of randomness - i.e.) soul tap + var/disabled = FALSE // Is this item disabled due to having issues? Must provide an issue reference and description of issue. /datum/spellbook_entry/New() ..() @@ -21,6 +22,8 @@ return TRUE /datum/spellbook_entry/proc/CanBuy(mob/living/carbon/human/user,obj/item/spellbook/book) // Specific circumstances + if (disabled) + return FALSE if(book.uses world.time)) +/obj/item/assembly/proc/activate(mob/activator) + if(QDELETED(src) || !secured || (next_activate > world.time)) return FALSE - next_activate = world.time + activate_delay + next_activate = world.time + 30 return TRUE /obj/item/assembly/proc/toggle_secure() - secured = securable && !secured - update_icon() + secured = !secured + update_appearance() return secured +// This is overwritten so that clumsy people can set off mousetraps even when in a holder. +// We are not going deeper than that however (won't set off if in a tank bomb or anything with wires) +// That would need to be added to all parent objects, or a signal created, whatever. +// Anyway this return check prevents you from picking up every assembly inside the holder at once. +/obj/item/assembly/attack_hand(mob/living/user, list/modifiers) + if(holder || connected) + return + . = ..() /obj/item/assembly/attackby(obj/item/W, mob/user, params) if(isassembly(W)) - var/obj/item/assembly/A = W - if((!A.secured) && (!secured)) - holder = new/obj/item/assembly_holder(get_turf(src)) - holder.assemble(src,A,user) - to_chat(user, "You attach and secure \the [A] to \the [src]!") - else - to_chat(user, "Both devices must be in attachable mode to be attached together.") + var/obj/item/assembly/new_assembly = W + + // Check both our's and their's assembly flags to see if either should not duplicate + // If so, and we match types, don't create a holder - block it + if(((new_assembly.assembly_flags|assembly_flags) & ASSEMBLY_NO_DUPLICATES) && istype(new_assembly, type)) + balloon_alert(user, "can't attach another of that!") + return + if(new_assembly.secured || secured) + balloon_alert(user, "both devices not attachable!") + return + + holder = new /obj/item/assembly_holder(get_turf(src)) + holder.assemble(src, new_assembly, user) + to_chat(user, "You attach and secure \the [new_assembly] to \the [src]!") + return + + if(istype(W, /obj/item/assembly_holder)) + var/obj/item/assembly_holder/added_to_holder = W + added_to_holder.try_add_assembly(src, user) return - ..() + + return ..() /obj/item/assembly/screwdriver_act(mob/living/user, obj/item/I) if(..()) return TRUE - if(!securable) - return FALSE if(toggle_secure()) to_chat(user, "\The [src] is ready!") else @@ -123,18 +146,13 @@ . = ..() . += "\The [src] [secured? "is secured and ready to be used!" : "can be attached to other things."]" - -/obj/item/assembly/attack_self(mob/user) - if(!user) - return FALSE - user.set_machine(src) - interact(user) - return TRUE - -/obj/item/assembly/interact(mob/user) - return ui_interact(user) - /obj/item/assembly/ui_host(mob/user) - if(holder) - return holder - return src + // In order, return: + // - The conencted wiring datum's owner, or + // - The thing your assembly holder is attached to, or + // - the assembly holder itself, or + // - us + return connected?.holder || holder?.master || holder || src + +/obj/item/assembly/ui_state(mob/user) + return GLOB.hands_state diff --git a/code/modules/assembly/holder.dm b/code/modules/assembly/holder.dm index c4898219fac7d..3ec654e578876 100644 --- a/code/modules/assembly/holder.dm +++ b/code/modules/assembly/holder.dm @@ -11,28 +11,41 @@ throw_speed = 2 throw_range = 7 - var/obj/item/assembly/a_left = null - var/obj/item/assembly/a_right = null + var/list/obj/item/assembly/assemblies /// used to store the list of assemblies making up our assembly holder /obj/item/assembly_holder/Initialize(mapload) . = ..() - var/static/list/loc_connections = list( - COMSIG_ATOM_ENTERED = PROC_REF(on_entered), - ) - AddElement(/datum/element/connect_loc, loc_connections) + AddComponent(/datum/component/simple_rotation,ROTATION_ALTCLICK | ROTATION_CLOCKWISE | ROTATION_COUNTERCLOCKWISE | ROTATION_VERBS ) + +/obj/item/assembly_holder/Destroy() + QDEL_LAZYLIST(assemblies) + return ..() /obj/item/assembly_holder/proc/on_entered(datum/source, atom/movable/AM) SIGNAL_HANDLER return -/obj/item/assembly_holder/ComponentInitialize() +/obj/item/assembly_holder/Exited(atom/movable/gone, direction) . = ..() - var/static/rotation_flags = ROTATION_ALTCLICK | ROTATION_CLOCKWISE | ROTATION_COUNTERCLOCKWISE | ROTATION_FLIP | ROTATION_VERBS - AddComponent(/datum/component/simple_rotation, rotation_flags) + LAZYREMOVE(assemblies, gone) /obj/item/assembly_holder/IsAssemblyHolder() return TRUE +/obj/item/assembly_holder/examine(mob/user) + . = ..() + for(var/assembly in assemblies) + if(istype(assembly, /obj/item/assembly/timer)) + var/obj/item/assembly/timer/timer = assembly + . += "The timer is [timer.timing ? "counting down from [timer.time]":"set for [timer.time] seconds"]." + +/obj/item/assembly_holder/Moved(atom/old_loc, movement_dir) + . = ..() + on_move(old_loc, movement_dir) + +/obj/item/assembly_holder/proc/on_move(atom/old_loc, movement_dir) + for(var/obj/item/assembly/infra/assembly in assemblies) + assembly.on_move(old_loc, movement_dir) /obj/item/assembly_holder/proc/assemble(obj/item/assembly/A, obj/item/assembly/A2, mob/user) attach(A,user) @@ -41,6 +54,49 @@ update_icon() SSblackbox.record_feedback("tally", "assembly_made", 1, "[initial(A.name)]-[initial(A2.name)]") +// on_attach: Pass on_attach message to child assemblies +/obj/item/assembly_holder/proc/on_attach(var/obj/structure/reagent_dispensers/rig) + var/obj/item/newloc = loc + if(!newloc.IsSpecialAssembly() && !newloc.IsAssemblyHolder()) + return + for(var/obj/item/assembly/assembly in assemblies) + assembly.on_attach(rig) + +/obj/item/assembly_holder/proc/try_add_assembly(obj/item/assembly/attached_assembly, mob/user) + if(attached_assembly.secured) + balloon_alert(attached_assembly, "not attachable!") + return FALSE + + if(LAZYLEN(assemblies) >= HOLDER_MAX_ASSEMBLIES) + balloon_alert(user, "too many assemblies!") + return FALSE + + if(attached_assembly.assembly_flags & ASSEMBLY_NO_DUPLICATES) + if(locate(attached_assembly.type) in assemblies) + balloon_alert(user, "can't attach another of that!") + return FALSE + + add_assembly(attached_assembly, user) + balloon_alert(user, "part attached") + return TRUE + +/** + * Adds an assembly to the assembly holder + * + * This proc is used to add an assembly to the assembly holder, update the appearance, and the name of it. + * Arguments: + * * attached_assembly - assembly we are adding to the assembly holder + * * user - user we pass into attach() + */ +/obj/item/assembly_holder/proc/add_assembly(obj/item/assembly/attached_assembly, mob/user) + attach(attached_assembly, user) + name = "" + for(var/obj/item/assembly/assembly as anything in assemblies) + name += "[assembly.name]-" + name = splicetext(name, length(name), length(name) + 1, "") + name += " assembly" + update_appearance() + /obj/item/assembly_holder/proc/attach(obj/item/assembly/A, mob/user) if(!A.remove_item_from_storage(src)) if(user) @@ -49,102 +105,97 @@ A.forceMove(src) A.holder = src A.toggle_secure() - if(!a_left) - a_left = A - else - a_right = A + LAZYADD(assemblies, A) A.holder_movement() A.on_attach() -/obj/item/assembly_holder/update_icon() - cut_overlays() - if(a_left) - add_overlay("[a_left.icon_state]_left") - for(var/O in a_left.attached_overlays) - add_overlay("[O]_l") - - if(a_right) - if(a_right.is_position_sensitive) - add_overlay("[a_right.icon_state]_right") - for(var/O in a_right.attached_overlays) - add_overlay("[O]_r") - else - var/mutable_appearance/right = mutable_appearance(icon, "[a_right.icon_state]_left") - right.transform = matrix(-1, 0, 0, 0, 1, 0) - for(var/O in a_right.attached_overlays) - right.add_overlay("[O]_l") - add_overlay(right) +/obj/item/assembly_holder/update_icon(updates=ALL) + . = ..() + master?.update_appearance(updates) - if(master) - master.update_icon() +/obj/item/assembly_holder/update_overlays() + . = ..() + for(var/i in 1 to LAZYLEN(assemblies)) + if(i % 2 == 1) + var/obj/item/assembly/assembly = assemblies[i] + . += "[assembly.icon_state]_left" + for(var/left_overlay in assembly.attached_overlays) + . += "[left_overlay]_l" + if(i % 2 == 0) + var/obj/item/assembly/assembly = assemblies[i] + var/mutable_appearance/right = mutable_appearance(icon, "[assembly.icon_state]_left") + right.transform = matrix(-1, 0, 0, 0, 1, 0) + for(var/right_overlay in assembly.attached_overlays) + right.add_overlay("[right_overlay]_l") + . += right /obj/item/assembly_holder/on_found(mob/finder) - if(a_left) - a_left.on_found(finder) - if(a_right) - a_right.on_found(finder) + for(var/obj/item/assembly/assembly as anything in assemblies) + assembly.on_found(finder) /obj/item/assembly_holder/setDir() . = ..() - if(a_left) - a_left.holder_movement() - if(a_right) - a_right.holder_movement() + for(var/obj/item/assembly/assembly as anything in assemblies) + assembly.holder_movement() + /obj/item/assembly_holder/dropped(mob/user) - ..() - if(a_left) - a_left.dropped(user) - if(a_right) - a_right.dropped(user) + . = ..() + for(var/obj/item/assembly/assembly as anything in assemblies) + assembly.dropped(user) -/obj/item/assembly_holder/attack_hand()//Perhapse this should be a holder_pickup proc instead, can add if needbe I guess +/obj/item/assembly_holder/attack_hand(mob/living/user, list/modifiers)//Perhapse this should be a holder_pickup proc instead, can add if needbe I guess . = ..() if(.) return - if(a_left) - a_left.attack_hand() - if(a_right) - a_right.attack_hand() + for(var/obj/item/assembly/assembly as anything in assemblies) + assembly.attack_hand(user, modifiers) // Note override in assembly.dm to prevent side effects here + +/obj/item/assembly_holder/attackby(obj/item/weapon, mob/user, params) + if(isassembly(weapon)) + try_add_assembly(weapon, user) + return + + return ..() + +/obj/item/assembly_holder/AltClick(mob/user) + return ..() // This hotkey is BLACKLISTED since it's used by /datum/component/simple_rotation /obj/item/assembly_holder/screwdriver_act(mob/user, obj/item/tool) if(..()) return TRUE - to_chat(user, "You disassemble [src]!") - if(a_left) - a_left.on_detach() - a_left = null - if(a_right) - a_right.on_detach() - a_right = null + balloon_alert(user, "disassembled") + for(var/obj/item/assembly/assembly as anything in assemblies) + assembly.on_detach() + LAZYREMOVE(assemblies, assembly) qdel(src) return TRUE /obj/item/assembly_holder/attack_self(mob/user) - add_fingerprint(user) - if(!a_left || !a_right) - to_chat(user, "Assembly part missing!") - return - if(istype(a_left,a_right.type))//If they are the same type it causes issues due to window code - switch(alert("Which side would you like to use?",,"Left","Right")) - if("Left") - a_left.attack_self(user) - if("Right") - a_right.attack_self(user) + src.add_fingerprint(user) + if(LAZYLEN(assemblies) == 1) + balloon_alert(user, "part missing!") return - else - a_left.attack_self(user) - a_right.attack_self(user) + + for(var/obj/item/assembly/assembly as anything in assemblies) + assembly.attack_self(user) -/obj/item/assembly_holder/proc/process_activation(obj/D, normal = 1, special = 1) +/** + * this proc is used to process the activation of the assembly holder + * + * This proc is usually called by signalers, timers, or anything that can trigger and + * send a pulse to the assembly holder, which then calls this proc that actually activates the assemblies + * Arguments: + * * /obj/D - the device we sent the pulse from which called this proc + */ +/obj/item/assembly_holder/proc/process_activation(obj/D) if(!D) return FALSE - if((normal) && (a_right) && (a_left)) - if(a_right != D) - a_right.pulsed(FALSE) - if(a_left != D) - a_left.pulsed(FALSE) + if(LAZYLEN(assemblies) >= 2) + for(var/obj/item/assembly/assembly as anything in assemblies) + if(assembly != D) + assembly.pulsed() if(master) master.receive_signal() return TRUE diff --git a/code/modules/assembly/igniter.dm b/code/modules/assembly/igniter.dm index 3da6b42804653..2a88d120969d4 100644 --- a/code/modules/assembly/igniter.dm +++ b/code/modules/assembly/igniter.dm @@ -5,6 +5,9 @@ custom_materials = list(/datum/material/iron=500, /datum/material/glass=50) var/datum/effect_system/spark_spread/sparks heat = 1000 + drop_sound = 'sound/items/handling/component_drop.ogg' + pickup_sound = 'sound/items/handling/component_pickup.ogg' + assembly_flags = ASSEMBLY_NO_DUPLICATES /obj/item/assembly/igniter/suicide_act(mob/living/carbon/user) user.visible_message("[user] is trying to ignite [user.p_them()]self with \the [src]! It looks like [user.p_theyre()] trying to commit suicide!") @@ -29,6 +32,10 @@ var/turf/location = get_turf(loc) if(location) location.hotspot_expose(1000,1000) + if(holder) + SEND_SIGNAL(holder.loc, COMSIG_IGNITER_ACTIVATE) + if(QDELETED(src)) + return TRUE sparks.start() return TRUE diff --git a/code/modules/assembly/infrared.dm b/code/modules/assembly/infrared.dm index 5bf8e46cefaa5..04d3ce725c7be 100644 --- a/code/modules/assembly/infrared.dm +++ b/code/modules/assembly/infrared.dm @@ -5,194 +5,282 @@ custom_materials = list(/datum/material/iron=1000, /datum/material/glass=500) is_position_sensitive = TRUE item_flags = NO_PIXEL_RANDOM_DROP - - var/on = FALSE - var/visible = FALSE - var/maxlength = 8 - var/list/obj/effect/beam/i_beam/beams - var/olddir = 0 - var/turf/listeningTo - var/hearing_range = 3 + drop_sound = 'sound/items/handling/component_drop.ogg' + pickup_sound = 'sound/items/handling/component_pickup.ogg' + set_dir_on_move = FALSE + var/on = FALSE // Whether the beam is beaming + var/visible = FALSE // Whether the beam is visible + var/maxlength = 8 // The length the beam can go + var/beam_pass_flags = PASSTABLE|PASSTRANSPARENT|PASSGRILLE // Pass flags the beam uses to determine what it can pass through + var/hearing_range = 3 // The radius of which people can hear triggers + var/datum/beam/active_beam // The current active beam datum + var/turf/buffer_turf // A reference to the turf at the END of our active beam /obj/item/assembly/infra/Initialize(mapload) . = ..() - beams = list() - START_PROCESSING(SSobj, src) - -/obj/item/assembly/infra/ComponentInitialize() - . = ..() - var/static/rotation_flags = ROTATION_ALTCLICK | ROTATION_CLOCKWISE | ROTATION_COUNTERCLOCKWISE | ROTATION_FLIP | ROTATION_VERBS - AddComponent(/datum/component/simple_rotation, rotation_flags, after_rotation=CALLBACK(src,PROC_REF(after_rotation))) - -/obj/item/assembly/infra/proc/after_rotation() - refreshBeam() + AddComponent(/datum/component/simple_rotation,ROTATION_ALTCLICK | ROTATION_CLOCKWISE | ROTATION_COUNTERCLOCKWISE | ROTATION_VERBS ) /obj/item/assembly/infra/Destroy() - STOP_PROCESSING(SSobj, src) - listeningTo = null - QDEL_LIST(beams) - . = ..() + QDEL_NULL(active_beam) + buffer_turf = null + return ..() /obj/item/assembly/infra/examine(mob/user) . = ..() . += "The infrared trigger is [on?"on":"off"]." -/obj/item/assembly/infra/activate() - if(!..()) - return FALSE //Cooldown check - on = !on - refreshBeam() - update_icon() +/// Checks if the passed movable can block the beam. +/obj/item/assembly/infra/proc/atom_blocks_beam(atom/movable/beam_atom) + if(isnull(beam_atom)) + return FALSE + if(beam_atom == src || beam_atom == holder) + return FALSE + // Blocks beams from triggering themselves, important to avoid infinite loops + if(istype(beam_atom, /obj/effect/ebeam)) + return FALSE + // Anti-revenant / anti-ghost guard + if(beam_atom.invisibility) + return FALSE + // In general non-dense items should not block beams, but make special cases for things being thrown + if(!beam_atom.density && !beam_atom.throwing) + return FALSE + // The actually important check. Ensures stuff like mobs trip it but stuff like laser projectiles don't + if(beam_atom.pass_flags_self & beam_pass_flags) + return FALSE + if(isitem(beam_atom)) + var/obj/item/beam_item = beam_atom + if(beam_item.item_flags & ABSTRACT) + return FALSE + return TRUE -/obj/item/assembly/infra/toggle_secure() - secured = !secured - if(secured) - START_PROCESSING(SSobj, src) - refreshBeam() - else - QDEL_LIST(beams) - STOP_PROCESSING(SSobj, src) - update_icon() - return secured +/// Checks if the passed turf (or something on it) can block the beam. +/obj/item/assembly/infra/proc/turf_blocks_beam(turf/beam_turf) + if(beam_turf.density) + return TRUE + for(var/atom/movable/blocker as anything in beam_turf) + if(atom_blocks_beam(blocker)) + return TRUE + return FALSE -/obj/item/assembly/infra/update_icon() - cut_overlays() - attached_overlays = list() - if(on) - add_overlay("infrared_on") - attached_overlays += "infrared_on" - if(visible && secured) - add_overlay("infrared_visible") - attached_overlays += "infrared_visible" +/// Used to refresh the beam in whatever context. +/obj/item/assembly/infra/proc/make_beam() + SHOULD_NOT_SLEEP(TRUE) - if(holder) - holder.update_icon() - return + if(!isnull(buffer_turf)) + UnregisterSignal(buffer_turf, list(COMSIG_ATOM_EXITED, COMSIG_TURF_CHANGE)) + buffer_turf = null -/obj/item/assembly/infra/dropped() - ..() - if(holder) - holder_movement() //sync the dir of the device as well if it's contained in a TTV or an assembly holder - else - refreshBeam() - -/obj/item/assembly/infra/process() + QDEL_NULL(active_beam) + if(QDELETED(src)) + return if(!on || !secured) - refreshBeam() return -/obj/item/assembly/infra/proc/refreshBeam() - QDEL_LIST(beams) - if(throwing || !on || !secured) + var/atom/start_loc = rig || holder || src + var/turf/start_turf = start_loc.loc + if(!istype(start_turf)) return - if(holder) - if(holder.master) //incase the sensor is part of an assembly that's contained in another item, such as a single tank bomb - if(!holder.master.IsSpecialAssembly() || !isturf(holder.master.loc)) - return - else if(!isturf(holder.loc)) //else just check where the holder is - return - else if(!isturf(loc)) //or just where the fuck we are in general + // One extra turf is added to max length to get an extra buffer + var/list/turf/potential_turfs = getline(start_turf, get_ranged_target_turf(start_turf, dir, maxlength + 1)) + if(!length(potential_turfs)) return - var/turf/T = get_turf(src) - var/_dir = dir - var/turf/_T = get_step(T, _dir) - if(_T) - for(var/i in 1 to maxlength) - var/obj/effect/beam/i_beam/I = new(T) - if(istype(holder, /obj/item/assembly_holder)) - var/obj/item/assembly_holder/assembly_holder = holder - I.icon_state = "[initial(I.icon_state)]_[(assembly_holder.a_left == src) ? "l":"r"]" //Sync the offset of the beam with the position of the sensor. - else if(istype(holder, /obj/item/transfer_valve)) - I.icon_state = "[initial(I.icon_state)]_ttv" - I.set_density(TRUE) - if(!I.Move(_T)) - qdel(I) - switchListener(_T) - break - I.set_density(FALSE) - beams += I - I.master = src - I.setDir(_dir) - I.invisibility = visible? 0 : INVISIBILITY_ABSTRACT - T = _T - _T = get_step(_T, _dir) - CHECK_TICK -/obj/item/assembly/infra/on_detach() + var/list/turf/final_turfs = list() + for(var/turf/target_turf as anything in potential_turfs) + if(target_turf != start_turf && turf_blocks_beam(target_turf)) + break + final_turfs += target_turf + + if(!length(final_turfs)) + return + + var/turf/last_turf = final_turfs[length(final_turfs)] + buffer_turf = get_step(last_turf, dir) + + var/beam_target_x = pixel_x + var/beam_target_y = pixel_y + // The beam by default will go to middle of turf (because items are in the middle of turfs) + // So we need to offset it + if(dir & NORTH) + beam_target_y += 16 + else if(dir & SOUTH) + beam_target_y -= 16 + if(dir & WEST) + beam_target_x -= 16 + else if(dir & EAST) + beam_target_x += 16 + + active_beam = start_loc.Beam( + BeamTarget = last_turf, + beam_type = /obj/effect/ebeam/reacting/infrared, + icon = 'icons/effects/beam.dmi', + icon_state = "1-full", + beam_color = COLOR_RED, + emissive = TRUE, + override_target_pixel_x = beam_target_x, + override_target_pixel_y = beam_target_y, + ) + RegisterSignal(active_beam, COMSIG_BEAM_ENTERED, PROC_REF(beam_entered)) + RegisterSignal(active_beam, COMSIG_BEAM_TURFS_CHANGED, PROC_REF(beam_turfs_changed)) + update_visible() + // Buffer can be null (if we're at map edge for an example) but this fine + if(!isnull(buffer_turf)) + // We need to check the state of the turf at the end of the beam, to determine when we need to re-grow (if blocked) + RegisterSignal(buffer_turf, COMSIG_ATOM_EXITED, PROC_REF(buffer_exited)) + RegisterSignal(buffer_turf, COMSIG_TURF_CHANGE, PROC_REF(buffer_changed)) + +/obj/item/assembly/infra/proc/beam_entered(datum/beam/source, obj/effect/ebeam/hit, atom/movable/entered) + SIGNAL_HANDLER + + // First doesn't count + if(hit == active_beam.elements[1]) + return + if(!atom_blocks_beam(entered)) + return + + beam_trigger(hit, entered) + +/obj/item/assembly/infra/proc/beam_turfs_changed(datum/beam/source, list/datum/callback/post_change_callbacks) + SIGNAL_HANDLER + // If the turfs changed it's possible something is now blocking it, remake when done + post_change_callbacks += CALLBACK(src, PROC_REF(make_beam)) + +/obj/item/assembly/infra/proc/buffer_exited(turf/source, atom/movable/exited, ...) + SIGNAL_HANDLER + + if(!atom_blocks_beam(exited)) + return + + make_beam() + +/obj/item/assembly/infra/proc/buffer_changed(turf/source, path, list/new_baseturfs, flags, list/datum/callback/post_change_callbacks) + SIGNAL_HANDLER + + post_change_callbacks += CALLBACK(src, PROC_REF(make_beam)) + +/obj/item/assembly/infra/proc/beam_trigger(obj/effect/ebeam/hit, atom/movable/entered) + make_beam() + if(!COOLDOWN_FINISHED(src, next_activate)) + return + + pulse() + audible_message("[icon2html(src, hearers(src))] *beep* *beep* *beep*", null, hearing_range) + playsound(src, 'sound/machines/triple_beep.ogg', ASSEMBLY_BEEP_VOLUME, TRUE, extrarange = hearing_range - SOUND_RANGE + 1, falloff_distance = hearing_range) + COOLDOWN_START(src, next_activate, 3 SECONDS) + +/obj/item/assembly/infra/activate() . = ..() if(!.) return - refreshBeam() + toggle_on() -/obj/item/assembly/infra/attack_hand() +/obj/item/assembly/infra/toggle_secure() . = ..() - refreshBeam() + make_beam() + +/obj/item/assembly/infra/proc/toggle_on() // Toggles the beam on or off. + on = !on + make_beam() + update_icon() + +/obj/item/assembly/infra/proc/toggle_visible() // Toggles the visibility of the beam. + visible = !visible + update_visible() + update_icon() + +/obj/item/assembly/infra/proc/update_visible() // Updates the visibility of the beam (if active). + if(visible) + for(var/obj/effect/ebeam/beam as anything in active_beam?.elements) + beam.invisibility = FALSE + else + for(var/obj/effect/ebeam/beam as anything in active_beam?.elements) + beam.invisibility = TRUE -/obj/item/assembly/infra/Moved() - var/t = dir +/obj/item/assembly/infra/vv_edit_var(var_name, var_value) . = ..() - setDir(t) + if(!.) + return + switch(var_name) + if(NAMEOF(src, visible)) + update_visible() + update_icon() + + if(NAMEOF(src, on), NAMEOF(src, maxlength), NAMEOF(src, beam_pass_flags)) + make_beam() + update_icon() -/obj/item/assembly/infra/throw_at(atom/target, range, speed, mob/thrower, spin=1, diagonals_first = 0, datum/callback/callback, force, gentle = FALSE, quickstart = TRUE) + +/obj/item/assembly/infra/update_icon() . = ..() - olddir = dir + holder?.update_appearance() + attached_overlays = list() + if(on) + attached_overlays += "[icon_state]_on" + + add_overlay(attached_overlays) -/obj/item/assembly/infra/throw_impact(atom/hit_atom, datum/thrownthing/throwingdatum) +/obj/item/assembly/infra/dropped() . = ..() - if(!olddir) - return - setDir(olddir) - olddir = null + if(holder) + holder_movement() //sync the dir of the device as well if it's contained in a TTV or an assembly holder + make_beam() -/obj/item/assembly/infra/proc/trigger_beam(atom/movable/AM, turf/location) - refreshBeam() - switchListener(location) - if(!secured || !on || next_activate > world.time) - return FALSE - pulse(FALSE) - audible_message("[icon2html(src, hearers(src))] *beep* *beep* *beep*", null, hearing_range) - playsound(get_turf(src), 'sound/machines/triple_beep.ogg', ASSEMBLY_BEEP_VOLUME, TRUE) - next_activate = world.time + 30 +/obj/item/assembly/infra/on_attach() + . = ..() + make_beam() + holder.set_dir_on_move = set_dir_on_move -/obj/item/assembly/infra/proc/switchListener(turf/newloc) - if(listeningTo == newloc) +/obj/item/assembly/infra/on_detach() + holder.set_dir_on_move = initial(holder.set_dir_on_move) + . = ..() + if(!.) return - if(listeningTo) - UnregisterSignal(listeningTo, COMSIG_ATOM_EXITED) - RegisterSignal(newloc, COMSIG_ATOM_EXITED, PROC_REF(check_exit)) - listeningTo = newloc + make_beam() -/obj/item/assembly/infra/proc/check_exit(datum/source, atom/movable/gone, direction) - SIGNAL_HANDLER +/obj/item/assembly/infra/Moved(atom/old_loc, movement_dir, forced, list/old_locs, momentum_change) + . = ..() + on_move(old_loc, movement_dir) - if(QDELETED(src)) +/obj/item/assembly/infra/proc/on_move(atom/old_loc, movement_dir, forced, list/old_locs, momentum_change) + if(loc == old_loc) return - if(src == gone || istype(gone, /obj/effect/beam/i_beam)) + make_beam() + if(!visible || forced || !movement_dir || !Adjacent(old_loc)) return - if(isitem(gone)) - var/obj/item/I = gone - if (I.item_flags & ABSTRACT) - return - INVOKE_ASYNC(src, PROC_REF(refreshBeam)) - -/obj/item/assembly/infra/setDir() + // Because the new beam is made in the new loc, it "jumps" from one turf to another + // We can do an animate to pretend we're gliding between turfs rather than making a whole new beam + var/x_move = 0 + var/y_move = 0 + if(movement_dir & NORTH) + y_move = -32 + else if(movement_dir & SOUTH) + y_move = 32 + if(movement_dir & WEST) + x_move = 32 + else if(movement_dir & EAST) + x_move = -32 + + var/fake_glide_time = round(world.icon_size / glide_size * world.tick_lag, world.tick_lag) + for(var/obj/effect/ebeam/beam as anything in active_beam?.elements) + var/matrix/base_transform = matrix(beam.transform) + beam.transform = beam.transform.Translate(x_move, y_move) + animate(beam, transform = base_transform, time = fake_glide_time) + +/obj/item/assembly/infra/setDir(newdir) + var/prev_dir = dir . = ..() - refreshBeam() - -/obj/item/assembly/infra/ui_status(mob/user) - if(is_secured(user)) - return ..() - return UI_CLOSE - + if(dir == prev_dir) + return + make_beam() -/obj/item/assembly/infra/ui_state(mob/user) - return GLOB.hands_state +/obj/item/assembly/infra/ui_status(mob/user, datum/ui_state/state) + return is_secured(user) ? ..() : UI_CLOSE /obj/item/assembly/infra/ui_interact(mob/user, datum/tgui/ui) ui = SStgui.try_update_ui(user, src, ui) if(!ui) - ui = new(user, src, "InfraredEmitter") + ui = new(user, src, "InfraredEmitter", name) ui.open() /obj/item/assembly/infra/ui_data(mob/user) @@ -202,47 +290,19 @@ return data /obj/item/assembly/infra/ui_act(action, params) - if(..()) - return + . = ..() + if(.) + return . switch(action) if("power") - on = !on - . = TRUE + toggle_on() + return TRUE if("visibility") - visible = !visible - . = TRUE - - if(.) - update_icon() - refreshBeam() - -/***************************IBeam*********************************/ + toggle_visible() + return TRUE -/obj/effect/beam/i_beam +// Beam subtype for the infrared emitter +/obj/effect/ebeam/reacting/infrared name = "infrared beam" - icon = 'icons/obj/projectiles.dmi' - icon_state = "ibeam" - anchored = TRUE - density = FALSE - pass_flags = PASSTABLE|PASSTRANSPARENT|PASSGRILLE - pass_flags_self = LETPASSTHROW - var/obj/item/assembly/infra/master - -/obj/effect/beam/i_beam/Initialize(mapload) - . = ..() - var/static/list/loc_connections = list( - COMSIG_ATOM_ENTERED = PROC_REF(on_entered), - ) - AddElement(/datum/element/connect_loc, loc_connections) - -/obj/effect/beam/i_beam/proc/on_entered(datum/source, atom/movable/AM as mob|obj) - SIGNAL_HANDLER - - if(istype(AM, /obj/effect/beam)) - return - if (isitem(AM)) - var/obj/item/I = AM - if (I.item_flags & ABSTRACT) - return - INVOKE_ASYNC(master, TYPE_PROC_REF(/obj/item/assembly/infra, trigger_beam), AM, get_turf(src)) + alpha = 175 diff --git a/code/modules/assembly/mousetrap.dm b/code/modules/assembly/mousetrap.dm index ccedff04b3bd9..db98df285b98e 100644 --- a/code/modules/assembly/mousetrap.dm +++ b/code/modules/assembly/mousetrap.dm @@ -6,23 +6,59 @@ custom_materials = list(/datum/material/iron=100) attachable = TRUE var/armed = FALSE - - ///if we are attached to an assembly holder, we attach a connect_loc element to ourselves that listens to this from the holder - var/static/list/holder_connections = list( - COMSIG_ATOM_ENTERED = PROC_REF(on_entered), - ) + drop_sound = 'sound/items/handling/component_drop.ogg' + pickup_sound = 'sound/items/handling/component_pickup.ogg' + var/obj/item/host = null + var/turf/host_turf = null /obj/item/assembly/mousetrap/Initialize(mapload) . = ..() - var/static/list/loc_connections = list( - COMSIG_ATOM_ENTERED = PROC_REF(on_entered), - ) - AddElement(/datum/element/connect_loc, loc_connections) + update_host(force = TRUE) /obj/item/assembly/mousetrap/examine(mob/user) . = ..() . += "The pressure plate is [armed?"primed":"safe"]." +/obj/item/assembly/mousetrap/proc/update_host(force = FALSE) + var/obj/item/newhost + // Pick the first valid object in this list: + // Wiring datum's owner + // assembly holder's attached object + // assembly holder itself + // us + newhost = connected?.holder || holder?.master || holder || src + //only trigger step-on mode if the host is an item + if(!istype(newhost,/obj/item)) + if(host) + UnregisterSignal(host,COMSIG_MOVABLE_MOVED) + host = src + if(isturf(host_turf)) + UnregisterSignal(host_turf,COMSIG_ATOM_ENTERED) + host_turf = null + return + + // If host changed + if((newhost != host) || force) + if(host) + UnregisterSignal(host,COMSIG_MOVABLE_MOVED) + host = newhost + RegisterSignal(host,COMSIG_MOVABLE_MOVED, PROC_REF(holder_movement)) + + // If host moved + if((host_turf != host.loc) || force) + if(isturf(host_turf)) + UnregisterSignal(host_turf,COMSIG_ATOM_ENTERED) + host_turf = null + if(isturf(host.loc)) + host_turf = host.loc + RegisterSignal(host_turf,COMSIG_ATOM_ENTERED, PROC_REF(on_entered)) + else + host_turf = null + +/obj/item/assembly/mousetrap/holder_movement() + . = ..() + update_host() + /obj/item/assembly/mousetrap/activate() if(..()) armed = !armed @@ -36,31 +72,28 @@ playsound(src, 'sound/weapons/handcuffs.ogg', 30, TRUE, -3) /obj/item/assembly/mousetrap/update_icon() - if(armed) - icon_state = "mousetraparmed" - else - icon_state = "mousetrap" + icon_state = "mousetrap[armed ? "armed" : ""]" if(holder) holder.update_icon() /obj/item/assembly/mousetrap/on_attach() . = ..() - AddComponent(/datum/component/connect_loc_behalf, holder, holder_connections) + update_host() /obj/item/assembly/mousetrap/on_detach() . = ..() - qdel(GetComponent(/datum/component/connect_loc_behalf)) + update_host() /obj/item/assembly/mousetrap/proc/triggered(mob/target, type = "feet") if(!armed) return + armed = FALSE // moved to the top because you could trigger it more than once under some circumstances + update_icon() var/obj/item/bodypart/affecting = null if(ishuman(target)) var/mob/living/carbon/human/H = target if(HAS_TRAIT(H, TRAIT_PIERCEIMMUNE)) playsound(src, 'sound/effects/snap.ogg', 50, TRUE) - armed = FALSE - update_icon() pulse(FALSE) return FALSE switch(type) @@ -68,10 +101,14 @@ if(!H.shoes) affecting = H.get_bodypart(pick(BODY_ZONE_L_LEG, BODY_ZONE_R_LEG)) H.Paralyze(60) + else + to_chat(H, "Your [H.shoes] protects you from [src].") if(BODY_ZONE_PRECISE_L_HAND, BODY_ZONE_PRECISE_R_HAND) if(!H.gloves) affecting = H.get_bodypart(type) H.Stun(60) + else + to_chat(H, "Your [H.gloves] protects you from [src].") if(affecting) if(affecting.receive_damage(1, 0)) H.update_damage_overlays() @@ -80,10 +117,26 @@ visible_message("SPLAT!") M.splat() playsound(src, 'sound/effects/snap.ogg', 50, TRUE) - armed = FALSE - update_icon() pulse(FALSE) +/** + * clumsy_check: Sets off the mousetrap if handled by a clown (with some probability) + * + * Arguments: + * * user: The mob handling the trap + */ +/obj/item/assembly/mousetrap/proc/clumsy_check(mob/living/carbon/human/user) + if(!armed) + return FALSE + if((HAS_TRAIT(user, TRAIT_DUMB) || HAS_TRAIT(user, TRAIT_CLUMSY)) && prob(50)) + var/which_hand = BODY_ZONE_PRECISE_L_HAND + if(!(user.active_hand_index % 2)) + which_hand = BODY_ZONE_PRECISE_R_HAND + triggered(user, which_hand) + user.visible_message(("[user] accidentally sets off [src], breaking their fingers."), \ + ("You accidentally trigger [src]!")) + return TRUE + return FALSE /obj/item/assembly/mousetrap/attack_self(mob/living/carbon/human/user) if(!armed) @@ -154,6 +207,14 @@ visible_message("[src] is triggered by [AM].") triggered(null) +/obj/item/assembly/mousetrap/Destroy() + if(host) + UnregisterSignal(host,COMSIG_MOVABLE_MOVED) + host = null + if(isturf(host_turf)) + UnregisterSignal(host_turf,COMSIG_ATOM_ENTERED) + host_turf = null + return ..() /obj/item/assembly/mousetrap/armed icon_state = "mousetraparmed" diff --git a/code/modules/assembly/proximity.dm b/code/modules/assembly/proximity.dm index 967220f201e02..4d000b79b5d6f 100644 --- a/code/modules/assembly/proximity.dm +++ b/code/modules/assembly/proximity.dm @@ -4,13 +4,14 @@ icon_state = "prox" custom_materials = list(/datum/material/iron=800, /datum/material/glass=200) attachable = TRUE - - + drop_sound = 'sound/items/handling/component_drop.ogg' + pickup_sound = 'sound/items/handling/component_pickup.ogg' var/scanning = FALSE var/timing = FALSE var/time = 20 var/sensitivity = 0 var/hearing_range = 3 + ///Proximity monitor associated with this atom, needed for it to work after this rework /obj/item/assembly/prox_sensor/Initialize(mapload) . = ..() @@ -19,6 +20,7 @@ /obj/item/assembly/prox_sensor/Destroy() STOP_PROCESSING(SSobj, src) + QDEL_NULL(proximity_monitor) . = ..() /obj/item/assembly/prox_sensor/examine(mob/user) @@ -35,12 +37,35 @@ update_icon() return TRUE +/obj/item/assembly/prox_sensor/dropped() + . = ..() + // Pick the first valid object in this list: + // Wiring datum's owner + // assembly holder's attached object + // assembly holder itself + // us + proximity_monitor?.SetHost(connected?.holder || holder?.master || holder || src, src) + +/obj/item/assembly/prox_sensor/on_attach() + . = ..() + // Pick the first valid object in this list: + // Wiring datum's owner + // assembly holder's attached object + // assembly holder itself + // us + proximity_monitor.SetHost(connected?.holder || holder?.master || holder || src, src) + /obj/item/assembly/prox_sensor/on_detach() . = ..() if(!.) return else - proximity_monitor.SetHost(src,src) + // Pick the first valid object in this list: + // Wiring datum's owner + // assembly holder's attached object + // assembly holder itself + // us + proximity_monitor.SetHost(connected?.holder || holder?.master || holder || src, src) /obj/item/assembly/prox_sensor/toggle_secure() secured = !secured @@ -64,10 +89,11 @@ /obj/item/assembly/prox_sensor/proc/sense() if(!scanning || !secured || next_activate > world.time) return FALSE + next_activate = world.time + 30 pulse(FALSE) audible_message("[icon2html(src, hearers(src))] *beep* *beep* *beep*", null, hearing_range) playsound(get_turf(src), 'sound/machines/triple_beep.ogg', ASSEMBLY_BEEP_VOLUME, TRUE) - next_activate = world.time + 30 + return TRUE /obj/item/assembly/prox_sensor/process(delta_time) diff --git a/code/modules/assembly/signaler.dm b/code/modules/assembly/signaler.dm index ceb6c37234717..8b5409ca65362 100644 --- a/code/modules/assembly/signaler.dm +++ b/code/modules/assembly/signaler.dm @@ -6,18 +6,18 @@ lefthand_file = 'icons/mob/inhands/misc/devices_lefthand.dmi' righthand_file = 'icons/mob/inhands/misc/devices_righthand.dmi' custom_materials = list(/datum/material/iron=400, /datum/material/glass=120) - wires = WIRE_RECEIVE | WIRE_PULSE | WIRE_RADIO_PULSE | WIRE_RADIO_RECEIVE attachable = TRUE - - - var/code = DEFAULT_SIGNALER_CODE - var/frequency = FREQ_SIGNALER - var/datum/radio_frequency/radio_connection - ///Holds the mind that commited suicide. - var/datum/mind/suicider - ///Holds a reference string to the mob, decides how much of a gamer you are. - var/suicide_mob - var/hearing_range = 1 + drop_sound = 'sound/items/handling/component_drop.ogg' + pickup_sound = 'sound/items/handling/component_pickup.ogg' + + var/code = DEFAULT_SIGNALER_CODE /// The code sent by this signaler. + var/frequency = FREQ_SIGNALER /// The frequency this signaler is set to. + var/cooldown_length = 1 SECONDS /// How long of a cooldown exists on this signaller. + var/datum/radio_frequency/radio_connection /// The radio frequency connection this signaler is using. + var/datum/mind/suicider /// Holds the mind that commited suicide. + var/suicide_mob /// Holds a reference string to the mob, decides how much of a gamer you are. + var/hearing_range = 1 /// How many tiles away can you hear when this signaler is used or gets activated. + var/last_receive_signal_log /// String containing the last piece of logging data relating to when this signaller has received a signal. /obj/item/assembly/signaler/suicide_act(mob/living/carbon/user) user.visible_message("[user] eats \the [src]! If it is signaled, [user.p_they()] will die!") @@ -56,41 +56,43 @@ return TRUE /obj/item/assembly/signaler/update_icon() - if(holder) - holder.update_icon() - return + . = ..() + holder?.update_icon() -/obj/item/assembly/signaler/ui_status(mob/user) +/obj/item/assembly/signaler/ui_status(mob/user, datum/ui_state/state) if(is_secured(user)) return ..() return UI_CLOSE - -/obj/item/assembly/signaler/ui_state(mob/user) - return GLOB.hands_state - /obj/item/assembly/signaler/ui_interact(mob/user, datum/tgui/ui) ui = SStgui.try_update_ui(user, src, ui) if(!ui) - ui = new(user, src, "Signaler") + ui = new(user, src, "Signaler", name) ui.open() /obj/item/assembly/signaler/ui_data(mob/user) var/list/data = list() data["frequency"] = frequency + data["cooldown"] = cooldown_length data["code"] = code data["minFrequency"] = MIN_FREE_FREQ data["maxFrequency"] = MAX_FREE_FREQ - data["connection"] = !!radio_connection return data -/obj/item/assembly/signaler/ui_act(action, params) - if(..()) +/obj/item/assembly/signaler/ui_act(action, params, datum/tgui/ui) + . = ..() + if(.) return switch(action) if("signal") + if(cooldown_length > 0) + if(TIMER_COOLDOWN_CHECK(src, COOLDOWN_SIGNALLER_SEND)) + balloon_alert(ui.user, "recharging!") + return + TIMER_COOLDOWN_START(src, COOLDOWN_SIGNALLER_SEND, cooldown_length) INVOKE_ASYNC(src, PROC_REF(signal)) + balloon_alert(ui.user, "signaled") . = TRUE if("freq") var/new_frequency = sanitize_frequency(unformat_frequency(params["freq"]), TRUE) @@ -107,8 +109,7 @@ code = initial(code) . = TRUE - if(.) - update_icon() + update_icon() /obj/item/assembly/signaler/attackby(obj/item/W, mob/user, params) if(issignaler(W)) @@ -117,22 +118,20 @@ code = signaler2.code set_frequency(signaler2.frequency) to_chat(user, "You transfer the frequency and code of \the [signaler2.name] to \the [name]") - ui_update() ..() /obj/item/assembly/signaler/proc/signal() if(!radio_connection) return - var/datum/signal/signal = new(list("code" = code)) - radio_connection.post_signal(src, signal) - var/time = time2text(world.realtime,"hh:mm:ss") var/turf/T = get_turf(src) - if(usr) - GLOB.lastsignalers.Add("[time] : [usr.key] used [src] @ location ([T.x],[T.y],[T.z]) : with frequency: [format_frequency(frequency)]/[code]") - log_telecomms("[time] : [usr.key] used [src] @ location [AREACOORD(T)] : with frequency: [format_frequency(frequency)]/[code]") - message_admins(": [usr.key] used [src] @ location [AREACOORD(T)] : with frequency: [format_frequency(frequency)]/[code]") + + var/logging_data = "[time] : [key_name(usr)] used [src] @ location ([T.x],[T.y],[T.z]) : [format_frequency(frequency)]/[code]" + add_to_signaler_investigate_log(logging_data) + + var/datum/signal/signal = new(list("code" = code), logging_data = logging_data) + radio_connection.post_signal(src, signal) /obj/item/assembly/signaler/receive_signal(datum/signal/signal) . = FALSE @@ -140,42 +139,48 @@ return if(signal.data["code"] != code) return - if(!(src.wires & WIRE_RADIO_RECEIVE)) - return if(suicider) manual_suicide(suicider) return - pulse(TRUE) - audible_message("[icon2html(src, hearers(src))] *beep* *beep* *beep*", null, hearing_range) - playsound(get_turf(src), 'sound/machines/triple_beep.ogg', ASSEMBLY_BEEP_VOLUME, TRUE) + + // If the holder is a TTV, we want to store the last received signal to incorporate it into TTV logging, else wipe it. + last_receive_signal_log = istype(holder, /obj/item/transfer_valve) ? signal.logging_data : null + + pulse() + audible_message("[icon2html(src, hearers(src))] *beep* *beep* *beep*", null, hearing_range) + for(var/mob/hearing_mob in get_hearers_in_view(hearing_range, src)) + hearing_mob.playsound_local(get_turf(src), 'sound/machines/triple_beep.ogg', ASSEMBLY_BEEP_VOLUME, TRUE) return TRUE /obj/item/assembly/signaler/proc/set_frequency(new_frequency) SSradio.remove_object(src, frequency) frequency = new_frequency radio_connection = SSradio.add_object(src, frequency, RADIO_SIGNALER) + return -// Embedded signaller used in grenade construction. -// It's necessary because the signaler doens't have an off state. -// Generated during grenade construction. -Sayu -/obj/item/assembly/signaler/receiver - var/on = FALSE +/obj/item/assembly/signaler/cyborg -/obj/item/assembly/signaler/receiver/proc/toggle_safety() - on = !on +/obj/item/assembly/signaler/cyborg/attackby(obj/item/W, mob/user, params) + return +/obj/item/assembly/signaler/cyborg/screwdriver_act(mob/living/user, obj/item/I) + return -/obj/item/assembly/signaler/receiver/activate() - toggle_safety() - return TRUE +/obj/item/assembly/signaler/internal + name = "internal remote signaling device" -/obj/item/assembly/signaler/receiver/examine(mob/user) - . = ..() - . += "The radio receiver is [on?"on":"off"]." +/obj/item/assembly/signaler/internal/ui_state(mob/user) + return GLOB.inventory_state -/obj/item/assembly/signaler/receiver/receive_signal(datum/signal/signal) - if(!on) - return - return ..(signal) +/obj/item/assembly/signaler/internal/attackby(obj/item/W, mob/user, params) + return + +/obj/item/assembly/signaler/internal/screwdriver_act(mob/living/user, obj/item/I) + return + +/obj/item/assembly/signaler/internal/can_interact(mob/user) + if(ispAI(user)) + return TRUE + . = ..() // Embedded signaller used in anomalies. /obj/item/assembly/signaler/anomaly @@ -260,27 +265,3 @@ /obj/item/assembly/signaler/anomaly/attack_self() return - -/obj/item/assembly/signaler/cyborg - -/obj/item/assembly/signaler/cyborg/attackby(obj/item/W, mob/user, params) - return -/obj/item/assembly/signaler/cyborg/screwdriver_act(mob/living/user, obj/item/I) - return - -/obj/item/assembly/signaler/internal - name = "internal remote signaling device" - -/obj/item/assembly/signaler/internal/ui_state(mob/user) - return GLOB.inventory_state - -/obj/item/assembly/signaler/internal/attackby(obj/item/W, mob/user, params) - return - -/obj/item/assembly/signaler/internal/screwdriver_act(mob/living/user, obj/item/I) - return - -/obj/item/assembly/signaler/internal/can_interact(mob/user) - if(istype(user, /mob/living/silicon/pai)) - return TRUE - . = ..() diff --git a/code/modules/assembly/timer.dm b/code/modules/assembly/timer.dm index 830a8c32f8efc..df486b1e4144e 100644 --- a/code/modules/assembly/timer.dm +++ b/code/modules/assembly/timer.dm @@ -4,7 +4,8 @@ icon_state = "timer" custom_materials = list(/datum/material/iron=500, /datum/material/glass=50) attachable = TRUE - + drop_sound = 'sound/items/handling/component_drop.ogg' + pickup_sound = 'sound/items/handling/component_pickup.ogg' var/timing = FALSE var/time = 10 diff --git a/code/modules/buildmode/buttons.dm b/code/modules/buildmode/buttons.dm index 0e9583e61e038..18f8972107ee5 100644 --- a/code/modules/buildmode/buttons.dm +++ b/code/modules/buildmode/buttons.dm @@ -1,8 +1,6 @@ /atom/movable/screen/buildmode icon = 'icons/misc/buildmode.dmi' var/datum/buildmode/bd - // If we don't do this, we get occluded by item action buttons - plane = ABOVE_HUD_PLANE /atom/movable/screen/buildmode/New(bld) bd = bld @@ -23,7 +21,7 @@ bd.toggle_modeswitch() else if(LAZYACCESS(modifiers, RIGHT_CLICK)) bd.mode.change_settings(usr.client) - + update_icon() return 1 diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm index 89b2a95d5e7e2..9e178c26bbbb8 100644 --- a/code/modules/clothing/clothing.dm +++ b/code/modules/clothing/clothing.dm @@ -126,10 +126,11 @@ /obj/item/clothing/attack(mob/attacker, mob/user, params) if(user.a_intent == INTENT_HARM) return //Harm intent does not eat - //if(!ismoth(attacker) || !ispsyphoza(attacker)) - // return ..() //Not a clotheater species? No Clotheating! - //if((clothing_flags & NOTCONSUMABLE) && (resistance_flags & INDESTRUCTIBLE) && (armor.getRating(MELEE) != 0)) - // return ..() //Any remaining flags that make eating it impossible? + var/obj/item/organ/tongue/tongue = attacker.getorganslot(ORGAN_SLOT_TONGUE) + if(!istype(tongue, /obj/item/organ/tongue/moth) && !istype(tongue, /obj/item/organ/tongue/psyphoza)) + return ..() //Not a clotheater tongue? No Clotheating! + if((clothing_flags & NOTCONSUMABLE) && (resistance_flags & INDESTRUCTIBLE) && (armor.getRating(MELEE) != 0)) + return ..() //Any remaining flags that make eating it impossible? if (isnull(moth_snack)) moth_snack = new diff --git a/code/modules/food_and_drinks/plate.dm b/code/modules/food_and_drinks/plate.dm new file mode 100644 index 0000000000000..9a20e38b7372e --- /dev/null +++ b/code/modules/food_and_drinks/plate.dm @@ -0,0 +1,105 @@ +/obj/item/plate + name = "plate" + desc = "Holds food. Powerful. Good for morale when you're not eating your spaghetti off of a desk." + icon = 'icons/obj/kitchen.dmi' + icon_state = "plate" + w_class = WEIGHT_CLASS_BULKY //No backpack. + ///How many things fit on this plate? + var/max_items = 8 + ///The offset from side to side the food items can have on the plate + var/max_x_offset = 4 + ///The max height offset the food can reach on the plate + var/max_height_offset = 5 + ///Offset of where the click is calculated from, due to how food is positioned in their DMIs. + var/placement_offset = -15 + /// If the plate will shatter when thrown + var/fragile = TRUE + +/obj/item/plate/Initialize(mapload) + . = ..() + + if(fragile) + AddElement(/datum/element/shatters_when_thrown) + +/obj/item/plate/attackby(obj/item/I, mob/user, params) + if(!IS_EDIBLE(I)) + to_chat(user, "[src] is made for food, and food alone!") + return + if(contents.len >= max_items) + to_chat(user, "[src] can't fit more items!") + return + var/list/modifiers = params2list(params) + //Center the icon where the user clicked. + if(!LAZYACCESS(modifiers, ICON_X) || !LAZYACCESS(modifiers, ICON_Y)) + return + if(user.transferItemToLoc(I, src, silent = FALSE)) + I.pixel_x = clamp(text2num(LAZYACCESS(modifiers, ICON_X)) - 16, -max_x_offset, max_x_offset) + I.pixel_y = min(text2num(LAZYACCESS(modifiers, ICON_Y)) + placement_offset, max_height_offset) + to_chat(user, "You place [I] on [src].") + AddToPlate(I, user) + update_appearance() + else + return ..() + +/obj/item/plate/pre_attack(atom/A, mob/living/user, params) + if(!iscarbon(A)) + return + if(!contents.len) + return + var/obj/item/object_to_eat = contents[1] + A.attackby(object_to_eat, user) + return TRUE //No normal attack + +///This proc adds the food to viscontents and makes sure it can deregister if this changes. +/obj/item/plate/proc/AddToPlate(obj/item/item_to_plate, mob/user) + vis_contents += item_to_plate + item_to_plate.flags_1 |= IS_ONTOP_1 + RegisterSignal(item_to_plate, COMSIG_MOVABLE_MOVED, PROC_REF(ItemMoved)) + RegisterSignal(item_to_plate, COMSIG_PARENT_QDELETING, PROC_REF(ItemMoved)) + ///ovens update + //update_appearance() + +///This proc cleans up any signals on the item when it is removed from a plate, and ensures it has the correct state again. +/obj/item/plate/proc/ItemRemovedFromPlate(obj/item/removed_item) + removed_item.flags_1 &= ~IS_ONTOP_1 + vis_contents -= removed_item + UnregisterSignal(removed_item, list(COMSIG_MOVABLE_MOVED, COMSIG_PARENT_QDELETING)) + +///This proc is called by signals that remove the food from the plate. +/obj/item/plate/proc/ItemMoved(obj/item/moved_item, atom/OldLoc, Dir, Forced) + SIGNAL_HANDLER + ItemRemovedFromPlate(moved_item) + +/obj/item/plate/large + name = "buffet plate" + desc = "A large plate made for the professional catering industry but also apppreciated by mukbangers and other persons of considerable size and heft." + icon_state = "plate_large" + max_items = 12 + max_x_offset = 8 + max_height_offset = 12 + +/obj/item/plate/small + name = "appetizer plate" + desc = "A small plate, perfect for appetizers, desserts or trendy modern cusine." + icon_state = "plate_small" + max_items = 4 + max_x_offset = 4 + max_height_offset = 5 + +/obj/item/plate_shard + name = "ceramic shard" + icon = 'icons/obj/kitchen.dmi' + icon_state = "plate_shard1" + base_icon_state = "plate_shard" + force = 5 + throwforce = 5 + sharpness = IS_SHARP + /// How many variants of shard there are + var/variants = 5 + +/obj/item/plate_shard/Initialize(mapload) + . = ..() + + AddComponent(/datum/component/caltrop, min_damage = force) + + icon_state = "[base_icon_state][pick(1,variants)]" diff --git a/code/modules/food_and_drinks/recipes/food_mixtures.dm b/code/modules/food_and_drinks/recipes/food_mixtures.dm index 840a710febe5a..2785ba189d134 100644 --- a/code/modules/food_and_drinks/recipes/food_mixtures.dm +++ b/code/modules/food_and_drinks/recipes/food_mixtures.dm @@ -1,10 +1,3 @@ -/datum/crafting_recipe/food - var/real_parts - category = CAT_FOOD - -/datum/crafting_recipe/food/New() - real_parts = parts.Copy() - parts |= reqs //////////////////////////////////////////FOOD MIXTURES//////////////////////////////////// diff --git a/code/modules/holiday/easter.dm b/code/modules/holiday/easter.dm index 8d2481f06b64f..4276be9bdae13 100644 --- a/code/modules/holiday/easter.dm +++ b/code/modules/holiday/easter.dm @@ -172,24 +172,6 @@ foodtypes = SUGAR | GRAIN tastes = list("easter") -/datum/crafting_recipe/food/hotcrossbun - name = "Hot-Cross Bun" - reqs = list( - /obj/item/food/bread/plain = 1, - /datum/reagent/consumable/sugar = 1 - ) - result = /obj/item/food/hotcrossbun - subcategory = CAT_MISCFOOD - -/datum/crafting_recipe/food/briochecake - name = "Brioche cake" - reqs = list( - /obj/item/food/cake/plain = 1, - /datum/reagent/consumable/sugar = 2 - ) - result = /obj/item/food/cake/brioche - subcategory = CAT_MISCFOOD - /obj/item/food/scotchegg name = "scotch egg" desc = "A boiled egg wrapped in a delicious, seasoned meatball." @@ -198,38 +180,8 @@ bite_consumption = 3 food_reagents = list(/datum/reagent/consumable/nutriment = 6, /datum/reagent/consumable/nutriment/vitamin = 2) -/datum/crafting_recipe/food/scotchegg - name = "Scotch egg" - reqs = list( - /datum/reagent/consumable/sodiumchloride = 1, - /datum/reagent/consumable/blackpepper = 1, - /obj/item/food/boiledegg = 1, - /obj/item/food/meatball = 1 - ) - result = /obj/item/food/scotchegg - subcategory = CAT_MISCFOOD - -/datum/crafting_recipe/food/mammi - name = "Mammi" - reqs = list( - /obj/item/food/bread/plain = 1, - /obj/item/food/chocolatebar = 1, - /datum/reagent/consumable/milk = 5 - ) - result = /obj/item/food/soup/mammi - subcategory = CAT_MISCFOOD - /obj/item/food/chocolatebunny name = "chocolate bunny" desc = "Contains less than 10% real rabbit!" icon_state = "chocolatebunny" food_reagents = list(/datum/reagent/consumable/nutriment = 4, /datum/reagent/consumable/sugar = 2, /datum/reagent/consumable/cocoa = 2, /datum/reagent/consumable/nutriment/vitamin = 1) - -/datum/crafting_recipe/food/chocolatebunny - name = "Chocolate bunny" - reqs = list( - /datum/reagent/consumable/sugar = 2, - /obj/item/food/chocolatebar = 1 - ) - result = /obj/item/food/chocolatebunny - subcategory = CAT_MISCFOOD diff --git a/code/modules/holoparasite/holoparasite_barriers.dm b/code/modules/holoparasite/holoparasite_barriers.dm index d7d7273ad1959..af5f7b5e27ca6 100644 --- a/code/modules/holoparasite/holoparasite_barriers.dm +++ b/code/modules/holoparasite/holoparasite_barriers.dm @@ -47,7 +47,7 @@ if(WEST) start_pos = locate(min(sx + range + 1, world.maxx), max(sy - range, 1), sz) end_pos = locate(min(sx + range + 1, world.maxx), min(sy + range, world.maxy), sz) - for(var/turf/edge in get_line(start_pos, end_pos)) + for(var/turf/edge in getline(start_pos, end_pos)) ADD_BARRIER_IMAGE(edge, direction) ADD_BARRIER_IMAGE(locate(max(sx - range - 1, 1), sy + range + 1, sz), SOUTHEAST) diff --git a/code/modules/holoparasite/holoparasite_builder.dm b/code/modules/holoparasite/holoparasite_builder.dm index 26adb2fa11413..9af88ec114b37 100644 --- a/code/modules/holoparasite/holoparasite_builder.dm +++ b/code/modules/holoparasite/holoparasite_builder.dm @@ -565,7 +565,7 @@ CREATION_TEST_IGNORE_SUBTYPES(/obj/item/holoparasite_creator) /obj/item/holoparasite_creator/carp name = "holocarp fishsticks" desc = "Using the power of Carp'sie, you can catch a carp from byond the veil of Carpthulu, and bind it to your fleshy flesh form." - icon = 'icons/obj/food/food.dmi' + icon = 'icons/obj/food/meat.dmi' icon_state = "fishfingers" theme = /datum/holoparasite_theme/carp allow_multiple = TRUE diff --git a/code/modules/hydroponics/fermenting_barrel.dm b/code/modules/hydroponics/fermenting_barrel.dm index bdea34bf9684f..74637a8416f06 100644 --- a/code/modules/hydroponics/fermenting_barrel.dm +++ b/code/modules/hydroponics/fermenting_barrel.dm @@ -71,9 +71,3 @@ else icon_state = "barrel" -/datum/crafting_recipe/fermenting_barrel - name = "Wooden Barrel" - result = /obj/structure/fermenting_barrel - reqs = list(/obj/item/stack/sheet/wood = 30) - time = 50 - category = CAT_PRIMAL diff --git a/code/modules/jobs/job_types/_job.dm b/code/modules/jobs/job_types/_job.dm index 39545f1901143..7f4ca8766fdcc 100644 --- a/code/modules/jobs/job_types/_job.dm +++ b/code/modules/jobs/job_types/_job.dm @@ -504,5 +504,5 @@ mmi.brainmob.real_name = organic_name //the name of the brain inside the cyborg is the robotized human's name. mmi.brainmob.name = organic_name // If this checks fails, then the name will have been handled during initialization. - if(player_client.prefs.read_character_preference(/datum/preference/name/cyborg) != DEFAULT_CYBORG_NAME) + if(player_client.prefs.read_character_preference(/datum/preference/name/cyborg) != DEFAULT_CYBORG_NAME && check_cyborg_name(player_client, mmi)) apply_pref_name(/datum/preference/name/cyborg, player_client) diff --git a/code/modules/mining/lavaland/ash_flora.dm b/code/modules/mining/lavaland/ash_flora.dm index a470b84973a2b..1414d9a7abee0 100644 --- a/code/modules/mining/lavaland/ash_flora.dm +++ b/code/modules/mining/lavaland/ash_flora.dm @@ -292,13 +292,6 @@ //CRAFTING -/datum/crafting_recipe/mushroom_bowl - name = "Mushroom Bowl" - result = /obj/item/reagent_containers/glass/bowl/mushroom_bowl - reqs = list(/obj/item/food/grown/ash_flora/shavings = 5) - time = 30 - category = CAT_PRIMAL - /obj/item/reagent_containers/glass/bowl/mushroom_bowl name = "mushroom bowl" desc = "A bowl made out of mushrooms. Not food, though it might have contained some at some point." diff --git a/code/modules/mob/living/brain/MMI.dm b/code/modules/mob/living/brain/MMI.dm index 143c013c4aefa..3c44231a81026 100644 --- a/code/modules/mob/living/brain/MMI.dm +++ b/code/modules/mob/living/brain/MMI.dm @@ -13,6 +13,8 @@ var/datum/ai_laws/laws = new() var/force_replace_ai_name = FALSE var/overrides_aicore_laws = FALSE // Whether the laws on the MMI, if any, override possible pre-existing laws loaded on the AI core. + ///Used to reserve an "original" cyborg name. When this mmi first becomes a cyborg, their name will be stored here in case of deconstruction. + var/original_name /obj/item/mmi/Initialize(mapload) . = ..() diff --git a/code/modules/mob/living/brain/posibrain.dm b/code/modules/mob/living/brain/posibrain.dm index 826fade383784..4fba144a59161 100644 --- a/code/modules/mob/living/brain/posibrain.dm +++ b/code/modules/mob/living/brain/posibrain.dm @@ -94,9 +94,6 @@ GLOBAL_VAR(posibrain_notify_cooldown) return FALSE if(is_occupied() || QDELETED(brainmob) || QDELETED(src) || QDELETED(user)) return FALSE - if(user.ckey in GLOB.posi_key_list) - to_chat(user, "Positronic brain spawns limited to 1 per round.") - return FALSE if(!(GLOB.ghost_role_flags & GHOSTROLE_SILICONS)) to_chat(user, "Central Command has temporarily outlawed posibrain sentience in this sector...") return FALSE @@ -108,9 +105,7 @@ GLOBAL_VAR(posibrain_notify_cooldown) return FALSE if(brainmob.suiciding) //clear suicide status if the old occupant suicided. brainmob.set_suicide(FALSE) - var/ckey = user.ckey - if(transfer_personality(user)) - GLOB.posi_key_list += ckey + transfer_personality(user) var/datum/job/posibrain/pj = SSjob.GetJob(JOB_NAME_POSIBRAIN) pj.remove_posi_slot(src) diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm index 1fe9ae2567ded..9ee26290729d5 100644 --- a/code/modules/mob/living/carbon/human/emote.dm +++ b/code/modules/mob/living/carbon/human/emote.dm @@ -188,7 +188,7 @@ /datum/emote/living/carbon/human/wing/select_message_type(mob/user, intentional) . = ..() var/mob/living/carbon/human/H = user - if(("wings" in H.dna.species.mutant_bodyparts) || ("moth_wings" in H.dna.species.mutant_bodyparts)) + if((H.dna.species.mutant_bodyparts["wings"]) || (H.dna.species.mutant_bodyparts["moth_wings"])) . = "opens " + message else . = "closes " + message diff --git a/code/modules/mob/living/carbon/human/species.dm b/code/modules/mob/living/carbon/human/species.dm index a5cc1ea7cea13..6fb41d94c8178 100644 --- a/code/modules/mob/living/carbon/human/species.dm +++ b/code/modules/mob/living/carbon/human/species.dm @@ -33,10 +33,20 @@ GLOBAL_LIST_EMPTY(features_by_species) var/list/no_equip = list() // slots the race can't equip stuff to var/nojumpsuit = 0 // this is sorta... weird. it basically lets you equip stuff that usually needs jumpsuits without one, like belts and pockets and ids var/species_language_holder = /datum/language_holder - var/list/default_features = list("body_size" = "Normal") // Default mutant bodyparts for this species. Don't forget to set one for every mutant bodypart you allow this species to have. - var/list/forced_features = list() // A list of features forced on characters - var/list/mutant_bodyparts = list() // Visible CURRENT bodyparts that are unique to a species. DO NOT USE THIS AS A LIST OF ALL POSSIBLE BODYPARTS AS IT WILL FUCK SHIT UP! Changes to this list for non-species specific bodyparts (ie cat ears and tails) should be assigned at organ level if possible. Layer hiding is handled by handle_mutant_bodyparts() below. + /** + * Visible CURRENT bodyparts that are unique to a species. + * DO NOT USE THIS AS A LIST OF ALL POSSIBLE BODYPARTS AS IT WILL FUCK + * SHIT UP! Changes to this list for non-species specific bodyparts (ie + * cat ears and tails) should be assigned at organ level if possible. + * Assoc values are defaults for given bodyparts, also modified by aforementioned organs. + * They also allow for faster '[]' list access versus 'in'. Other than that, they are useless right now. + * Layer hiding is handled by [/datum/species/proc/handle_mutant_bodyparts] below. + */ + var/list/mutant_bodyparts = list() var/list/mutant_organs = list() //Internal organs that are unique to this race. + + var/list/forced_features = list() // A list of features forced on characters + var/speedmod = 0 // this affects the race's speed. positive numbers make it move slower, negative numbers make it move faster var/armor = 0 // overall defense for the race... or less defense, if it's negative. var/brutemod = 1 // multiplier for brute damage @@ -85,22 +95,36 @@ GLOBAL_LIST_EMPTY(features_by_species) var/sound/attack_sound = 'sound/weapons/punch1.ogg' var/sound/miss_sound = 'sound/weapons/punchmiss.ogg' - //Breathing! - var/obj/item/organ/lungs/mutantlungs = null + //Breathing! Most changes are in mutantlungs, though var/breathid = "o2" var/list/required_organs = list() - var/obj/item/organ/brain/mutant_brain = /obj/item/organ/brain - var/obj/item/organ/heart/mutant_heart = /obj/item/organ/heart + + //Do NOT remove by setting to null. use OR make a RESPECTIVE TRAIT (removing stomach? add the NOSTOMACH trait to your species) + //why does it work this way? because traits also disable the downsides of not having an organ, removing organs but not having the trait will make your species die + + ///Replaces default brain with a different organ + var/obj/item/organ/brain/mutantbrain = /obj/item/organ/brain + ///Replaces default heart with a different organ + var/obj/item/organ/heart/mutantheart = /obj/item/organ/heart + ///Replaces default lungs with a different organ + var/obj/item/organ/lungs/mutantlungs = /obj/item/organ/lungs + ///Replaces default eyes with a different organ var/obj/item/organ/eyes/mutanteyes = /obj/item/organ/eyes + ///Replaces default ears with a different organ var/obj/item/organ/ears/mutantears = /obj/item/organ/ears - var/obj/item/mutanthands + ///Replaces default tongue with a different organ var/obj/item/organ/tongue/mutanttongue = /obj/item/organ/tongue - var/obj/item/organ/tail/mutanttail = null + ///Replaces default liver with a different organ + var/obj/item/organ/liver/mutantliver = /obj/item/organ/liver + ///Replaces default stomach with a different organ + var/obj/item/organ/stomach/mutantstomach = /obj/item/organ/stomach + ///Replaces default appendix with a different organ. + var/obj/item/organ/appendix/mutantappendix = /obj/item/organ/appendix + ///Replaces default wings with a different organ. (There should be no default wings, only those on moths & apids, thus null) var/obj/item/organ/wings/mutantwings = null - - var/obj/item/organ/liver/mutantliver - var/obj/item/organ/stomach/mutantstomach + //only an honorary mutantthing because not an organ and not loaded in the same way, you've been warned to do your research + var/obj/item/mutanthands //Bitflag that controls what in game ways can select this species as a spawnable source //Think magic mirror and pride mirror, slime extract, ERT etc, see defines @@ -230,164 +254,102 @@ GLOBAL_LIST_EMPTY(features_by_species) return 0 return 1 -//Will regenerate missing organs -/datum/species/proc/regenerate_organs(mob/living/carbon/C,datum/species/old_species,replace_current=TRUE) - var/obj/item/organ/brain/brain = C.getorganslot(ORGAN_SLOT_BRAIN) - var/obj/item/organ/heart/heart = C.getorganslot(ORGAN_SLOT_HEART) - var/obj/item/organ/lungs/lungs = C.getorganslot(ORGAN_SLOT_LUNGS) - var/obj/item/organ/appendix/appendix = C.getorganslot(ORGAN_SLOT_APPENDIX) - var/obj/item/organ/eyes/eyes = C.getorganslot(ORGAN_SLOT_EYES) - var/obj/item/organ/ears/ears = C.getorganslot(ORGAN_SLOT_EARS) - var/obj/item/organ/tongue/tongue = C.getorganslot(ORGAN_SLOT_TONGUE) - var/obj/item/organ/liver/liver = C.getorganslot(ORGAN_SLOT_LIVER) - var/obj/item/organ/stomach/stomach = C.getorganslot(ORGAN_SLOT_STOMACH) - var/obj/item/organ/tail/tail = C.getorganslot(ORGAN_SLOT_TAIL) - var/obj/item/organ/wings/wings = C.getorganslot(ORGAN_SLOT_WINGS) - - var/should_have_brain = TRUE - var/should_have_heart = !(NOBLOOD in species_traits) - var/should_have_lungs = !(TRAIT_NOBREATH in inherent_traits) - var/should_have_appendix = !((TRAIT_NOHUNGER in inherent_traits) || (TRAIT_POWERHUNGRY in inherent_traits)) - var/should_have_eyes = TRUE - var/should_have_ears = TRUE - var/should_have_tongue = TRUE - var/should_have_liver = !(TRAIT_NOMETABOLISM in inherent_traits) - var/should_have_stomach = !(NOSTOMACH in species_traits) - var/should_have_tail = mutanttail - var/should_have_wings = mutantwings - - if(heart && (!should_have_heart || replace_current)) - heart.Remove(C,1) - required_organs -= /obj/item/organ/heart - QDEL_NULL(heart) - if(should_have_heart && !heart) - heart = new mutant_heart() - heart.Insert(C) - required_organs |= /obj/item/organ/heart - - if(lungs && (!should_have_lungs || replace_current)) - lungs.Remove(C,1) - required_organs -= /obj/item/organ/lungs - QDEL_NULL(lungs) - if(should_have_lungs && !lungs) - if(mutantlungs) - lungs = new mutantlungs() - else - lungs = new() - lungs.Insert(C) - required_organs |= /obj/item/organ/lungs - - if(liver && (!should_have_liver || replace_current)) - liver.Remove(C,1) - required_organs -= /obj/item/organ/liver - QDEL_NULL(liver) - if(should_have_liver && !liver) - if(mutantliver) - liver = new mutantliver() - else - liver = new() - liver.Insert(C) - required_organs |= /obj/item/organ/liver - - if(stomach && (!should_have_stomach || replace_current)) - stomach.Remove(C,1) - required_organs -= /obj/item/organ/stomach - QDEL_NULL(stomach) - if(should_have_stomach && !stomach) - if(mutantstomach) - stomach = new mutantstomach() - else - stomach = new() - stomach.Insert(C) - required_organs |= /obj/item/organ/stomach - - if(appendix && (!should_have_appendix || replace_current)) - appendix.Remove(C,1) - required_organs -= /obj/item/organ/appendix - QDEL_NULL(appendix) - if(should_have_appendix && !appendix) - appendix = new() - appendix.Insert(C) - required_organs |= /obj/item/organ/appendix - - if(tail && (!should_have_tail || replace_current)) - tail.Remove(C,1) - required_organs -= /obj/item/organ/tail - QDEL_NULL(tail) - if(should_have_tail && !tail) - tail = new mutanttail() - if(islizard(C)) - var/obj/item/organ/tail/lizard/lizard_tail = tail - lizard_tail.tail_type = C.dna.features["tail_lizard"] - lizard_tail.spines = C.dna.features["spines"] - tail = lizard_tail - tail.Insert(C) - required_organs |= /obj/item/organ/tail - - if(wings && (!should_have_wings || replace_current)) - wings.Remove(C,1) - required_organs -= /obj/item/organ/wings - QDEL_NULL(wings) - if(should_have_wings && !wings) - wings = new mutantwings() - if(ismoth(C)) - wings.wing_type = C.dna.features["moth_wings"] - wings.flight_level = WINGS_FLIGHTLESS - if(locate(/datum/mutation/strongwings) in C.dna.mutations) - wings.flight_level = WINGS_FLYING - wings.Insert(C) - required_organs |= /obj/item/organ/wings - - if(C.get_bodypart(BODY_ZONE_HEAD)) - if(brain && (replace_current || !should_have_brain)) - if(!brain.decoy_override)//Just keep it if it's fake - brain.Remove(C,TRUE,TRUE) - required_organs -= /obj/item/organ/brain - QDEL_NULL(brain) - if(should_have_brain && !brain) - brain = new mutant_brain() - brain.Insert(C, TRUE, TRUE) - required_organs |= /obj/item/organ/brain - - if(eyes && (replace_current || !should_have_eyes)) - eyes.Remove(C,1) - required_organs -= /obj/item/organ/eyes - QDEL_NULL(eyes) - if(should_have_eyes && !eyes) - eyes = new mutanteyes - eyes.Insert(C) - required_organs |= /obj/item/organ/eyes - - if(ears && (replace_current || !should_have_ears)) - ears.Remove(C,1) - required_organs -= /obj/item/organ/ears - QDEL_NULL(ears) - if(should_have_ears && !ears) - ears = new mutantears - ears.Insert(C) - required_organs |= /obj/item/organ/ears - - if(tongue && (replace_current || !should_have_tongue)) - tongue.Remove(C,1) - required_organs -= /obj/item/organ/tongue - QDEL_NULL(tongue) - if(should_have_tongue && !tongue) - tongue = new mutanttongue - tongue.Insert(C) - required_organs |= /obj/item/organ/tongue + +/** regenerate_organs + * Corrects organs in a carbon, removing ones it doesn't need and adding ones it does + * + * takes all organ slots, removes organs a species should not have, adds organs a species should have. + * can use replace_current to refresh all organs, creating an entirely new set. + * Arguments: + * C - carbon, the owner of the species datum AKA whoever we're regenerating organs in + * old_species - datum, used when regenerate organs is called in a switching species to remove old mutant organs. + * replace_current - boolean, forces all old organs to get deleted whether or not they pass the species' ability to keep that organ + * excluded_zones - list, add zone defines to block organs inside of the zones from getting handled. see headless mutation for an example + */ +/datum/species/proc/regenerate_organs(mob/living/carbon/C,datum/species/old_species,replace_current=TRUE,list/excluded_zones) + //what should be put in if there is no mutantorgan (brains handled seperately) + var/list/slot_mutantorgans = list( + ORGAN_SLOT_BRAIN = mutantbrain, + ORGAN_SLOT_HEART = mutantheart, + ORGAN_SLOT_LUNGS = mutantlungs, + ORGAN_SLOT_APPENDIX = mutantappendix, + ORGAN_SLOT_EYES = mutanteyes, + ORGAN_SLOT_EARS = mutantears, + ORGAN_SLOT_TONGUE = mutanttongue, + ORGAN_SLOT_LIVER = mutantliver, + ORGAN_SLOT_STOMACH = mutantstomach, + ORGAN_SLOT_WINGS = mutantwings + ) + + var/list/slot_organs = list( + ORGAN_SLOT_BRAIN, + ORGAN_SLOT_HEART, + ORGAN_SLOT_LUNGS, + ORGAN_SLOT_APPENDIX, + ORGAN_SLOT_EYES, + ORGAN_SLOT_EARS, + ORGAN_SLOT_TONGUE, + ORGAN_SLOT_LIVER, + ORGAN_SLOT_STOMACH, + ORGAN_SLOT_WINGS + ) + + //if theres no added wing type, we want to avoid adding a null + if(isnull(mutantwings)) + slot_organs -= ORGAN_SLOT_WINGS + + for(var/slot in slot_organs) + + var/obj/item/organ/oldorgan = C.getorganslot(slot) //used in removing + var/obj/item/organ/neworgan = slot_mutantorgans[slot] //used in adding + var/used_neworgan = FALSE + neworgan = new neworgan() + var/should_have = neworgan.get_availability(src) //organ proc that points back to a species trait (so if the species is supposed to have this organ) + + if(oldorgan && (!should_have || replace_current) && !(oldorgan.zone in excluded_zones)) + if(slot == ORGAN_SLOT_BRAIN) + var/obj/item/organ/brain/brain = oldorgan + if(!brain.decoy_override)//"Just keep it if it's fake" - confucius, probably + brain.Remove(C,TRUE, TRUE) //brain argument used so it doesn't cause any... sudden death. + QDEL_NULL(brain) + oldorgan.Remove(C,TRUE) + required_organs -= oldorgan + QDEL_NULL(oldorgan) + + if(oldorgan) + oldorgan.setOrganDamage(0) + else if(should_have && !(initial(neworgan.zone) in excluded_zones)) + used_neworgan = TRUE + neworgan.Insert(C, TRUE, FALSE) + required_organs |= neworgan + + if(!used_neworgan) + qdel(neworgan) if(old_species) for(var/mutantorgan in old_species.mutant_organs) + // Snowflake check. If our species share this mutant organ, let's not remove it + // just yet as we'll be properly replacing it later. + if(mutantorgan in mutant_organs) + continue var/obj/item/organ/I = C.getorgan(mutantorgan) if(I) I.Remove(C) required_organs -= I.type QDEL_NULL(I) - for(var/path in mutant_organs) - var/obj/item/organ/I = new path() - I.Insert(C) - required_organs |= I.type + for(var/organ_path in mutant_organs) + var/obj/item/organ/current_organ = C.getorgan(organ_path) + if(!current_organ || replace_current) + var/obj/item/organ/replacement = new organ_path() + // If there's an existing mutant organ, we're technically replacing it. + // Let's abuse the snowflake proc. Basically retains + // feature parity with every other organ too. + if(current_organ) + current_organ.before_organ_replacement(replacement) + // organ.Insert will qdel any current organs in that slot, so we don't need to. + replacement.Insert(C, TRUE, FALSE) + required_organs |= replacement.type /datum/species/proc/replace_body(mob/living/carbon/C, var/datum/species/new_species) new_species ||= C.dna.species //If no new species is provided, assume its src. @@ -857,83 +819,83 @@ GLOBAL_LIST_EMPTY(features_by_species) var/obj/item/bodypart/head/HD = H.get_bodypart(BODY_ZONE_HEAD) - if("tail_lizard" in mutant_bodyparts) + if(mutant_bodyparts["tail_lizard"]) if(H.wear_suit && (H.wear_suit.flags_inv & HIDEJUMPSUIT)) bodyparts_to_add -= "tail_lizard" - if("waggingtail_lizard" in mutant_bodyparts) + if(mutant_bodyparts["waggingtail_lizard"]) if(H.wear_suit && (H.wear_suit.flags_inv & HIDEJUMPSUIT)) bodyparts_to_add -= "waggingtail_lizard" - else if ("tail_lizard" in mutant_bodyparts) + else if (mutant_bodyparts["tail_lizard"]) bodyparts_to_add -= "waggingtail_lizard" - if("tail_human" in mutant_bodyparts) + if(mutant_bodyparts["tail_human"]) if(H.wear_suit && (H.wear_suit.flags_inv & HIDEJUMPSUIT)) bodyparts_to_add -= "tail_human" - if("waggingtail_human" in mutant_bodyparts) + if(mutant_bodyparts["waggingtail_human"]) if(H.wear_suit && (H.wear_suit.flags_inv & HIDEJUMPSUIT)) bodyparts_to_add -= "waggingtail_human" - else if ("tail_human" in mutant_bodyparts) + else if (mutant_bodyparts["tail_human"]) bodyparts_to_add -= "waggingtail_human" - if("spines" in mutant_bodyparts) + if(mutant_bodyparts["spines"]) if(!H.dna.features["spines"] || H.dna.features["spines"] == "None" || H.wear_suit && (H.wear_suit.flags_inv & HIDEJUMPSUIT)) bodyparts_to_add -= "spines" - if("waggingspines" in mutant_bodyparts) + if(mutant_bodyparts["waggingspines"]) if(!H.dna.features["spines"] || H.dna.features["spines"] == "None" || H.wear_suit && (H.wear_suit.flags_inv & HIDEJUMPSUIT)) bodyparts_to_add -= "waggingspines" - else if ("tail" in mutant_bodyparts) + else if (mutant_bodyparts["tail"]) bodyparts_to_add -= "waggingspines" - if("snout" in mutant_bodyparts) //Take a closer look at that snout! + if(mutant_bodyparts["snout"]) //Take a closer look at that snout! if((H.wear_mask?.flags_inv & HIDESNOUT) || (H.head?.flags_inv & HIDESNOUT) || !HD) bodyparts_to_add -= "snout" - if("frills" in mutant_bodyparts) + if(mutant_bodyparts["frills"]) if(!H.dna.features["frills"] || H.dna.features["frills"] == "None" || (H.head?.flags_inv & HIDEEARS) || !HD) bodyparts_to_add -= "frills" - if("horns" in mutant_bodyparts) + if(mutant_bodyparts["horns"]) if(!H.dna.features["horns"] || H.dna.features["horns"] == "None" || H.head && (H.head.flags_inv & HIDEHAIR) || (H.wear_mask && (H.wear_mask.flags_inv & HIDEHAIR)) || !HD) bodyparts_to_add -= "horns" - if("ears" in mutant_bodyparts) + if(mutant_bodyparts["ears"]) if(!H.dna.features["ears"] || H.dna.features["ears"] == "None" || H.head && (H.head.flags_inv & HIDEHAIR) || (H.wear_mask && (H.wear_mask.flags_inv & HIDEHAIR)) || !HD) bodyparts_to_add -= "ears" - if("wings" in mutant_bodyparts) + if(mutant_bodyparts["wings"]) if(!H.dna.features["wings"] || H.dna.features["wings"] == "None" || (H.wear_suit && (H.wear_suit.flags_inv & HIDEJUMPSUIT) && (!H.wear_suit.species_exception || !is_type_in_list(src, H.wear_suit.species_exception)))) bodyparts_to_add -= "wings" - if("wings_open" in mutant_bodyparts) + if(mutant_bodyparts["wings_open"]) if(H.wear_suit && (H.wear_suit.flags_inv & HIDEJUMPSUIT) && (!H.wear_suit.species_exception || !is_type_in_list(src, H.wear_suit.species_exception))) bodyparts_to_add -= "wings_open" - else if ("wings" in mutant_bodyparts) + else if (mutant_bodyparts["wings"]) bodyparts_to_add -= "wings_open" - if("moth_antennae" in mutant_bodyparts) + if(mutant_bodyparts["moth_antennae"]) if(!H.dna.features["moth_antennae"] || H.dna.features["moth_antennae"] == "None" || !HD) bodyparts_to_add -= "moth_antennae" - if("ipc_screen" in mutant_bodyparts) + if(mutant_bodyparts["ipc_screen"]) if(!H.dna.features["ipc_screen"] || H.dna.features["ipc_screen"] == "None" || (H.wear_mask && (H.wear_mask.flags_inv & HIDEEYES)) || !HD) bodyparts_to_add -= "ipc_screen" - if("ipc_antenna" in mutant_bodyparts) + if(mutant_bodyparts["ipc_antenna"]) if(!H.dna.features["ipc_antenna"] || H.dna.features["ipc_antenna"] == "None" || (H.head?.flags_inv & HIDEEARS) || !HD) bodyparts_to_add -= "ipc_antenna" - if("apid_antenna" in mutant_bodyparts) + if(mutant_bodyparts["apid_antenna"]) if(!H.dna.features["apid_antenna"] || H.dna.features["apid_antenna"] == "None" || H.head && (H.head.flags_inv & HIDEHAIR) || (H.wear_mask && (H.wear_mask.flags_inv & HIDEHAIR)) || !HD) bodyparts_to_add -= "apid_antenna" - if("apid_headstripe" in mutant_bodyparts) + if(mutant_bodyparts["apid_headstripe"]) if(!H.dna.features["apid_headstripe"] || H.dna.features["apid_headstripe"] == "None" || (H.wear_mask && (H.wear_mask.flags_inv & HIDEEYES)) || !HD) bodyparts_to_add -= "apid_headstripe" - if("psyphoza_cap" in mutant_bodyparts) + if(mutant_bodyparts["psyphoza_cap"]) if(!H.dna.features["psyphoza_cap"] || H.dna.features["psyphoza_cap"] == "None" || !HD) bodyparts_to_add -= "psyphoza_cap" @@ -2350,14 +2312,14 @@ GLOBAL_LIST_EMPTY(features_by_species) speedmod -= 0.35 ADD_TRAIT(H, TRAIT_MOVE_FLYING, SPECIES_FLIGHT_TRAIT) H.pass_flags |= PASSTABLE - if(("wings" in H.dna.species.mutant_bodyparts) || ("moth_wings" in H.dna.species.mutant_bodyparts)) + if((H.dna.species.mutant_bodyparts["wings"]) || (H.dna.species.mutant_bodyparts["moth_wings"])) H.Togglewings() else stunmod *= 0.5 speedmod += 0.35 REMOVE_TRAIT(H, TRAIT_MOVE_FLYING, SPECIES_FLIGHT_TRAIT) H.pass_flags &= ~PASSTABLE - if(("wingsopen" in H.dna.species.mutant_bodyparts) || ("moth_wingsopen" in H.dna.species.mutant_bodyparts)) + if((H.dna.species.mutant_bodyparts["wingsopen"]) || (H.dna.species.mutant_bodyparts["moth_wingsopen"])) H.Togglewings() if(isturf(H.loc)) var/turf/T = H.loc diff --git a/code/modules/mob/living/carbon/human/species_types/IPC.dm b/code/modules/mob/living/carbon/human/species_types/IPC.dm index 2473efcfe839a..238747e1cc0d6 100644 --- a/code/modules/mob/living/carbon/human/species_types/IPC.dm +++ b/code/modules/mob/living/carbon/human/species_types/IPC.dm @@ -7,21 +7,19 @@ species_traits = list(NOTRANSSTING,NOEYESPRITES,NO_DNA_COPY,NOZOMBIE,MUTCOLORS,REVIVESBYHEALING,NOHUSK,NOMOUTH, MUTCOLORS) inherent_traits = list(TRAIT_BLOOD_COOLANT,TRAIT_RESISTCOLD,TRAIT_NOBREATH,TRAIT_RADIMMUNE,TRAIT_LIMBATTACHMENT,TRAIT_EASYDISMEMBER,TRAIT_POWERHUNGRY,TRAIT_XENO_IMMUNE, TRAIT_TOXIMMUNE) inherent_biotypes = list(MOB_ROBOTIC, MOB_HUMANOID) - mutant_brain = /obj/item/organ/brain/positron + mutantbrain = /obj/item/organ/brain/positron mutanteyes = /obj/item/organ/eyes/robotic mutanttongue = /obj/item/organ/tongue/robot mutantliver = /obj/item/organ/liver/cybernetic/upgraded/ipc mutantstomach = /obj/item/organ/stomach/battery/ipc mutantears = /obj/item/organ/ears/robot - mutant_heart = /obj/item/organ/heart/cybernetic/ipc + mutantheart = /obj/item/organ/heart/cybernetic/ipc mutant_organs = list(/obj/item/organ/cyberimp/arm/power_cord) - mutant_bodyparts = list("ipc_screen", "ipc_antenna", "ipc_chassis") - default_features = list("mcolor" = "#7D7D7D", "ipc_screen" = "Static", "ipc_antenna" = "None", "ipc_chassis" = "Morpheus Cyberkinetics (Custom)") + mutant_bodyparts = list("mcolor" = "#7D7D7D", "ipc_screen" = "Static", "ipc_antenna" = "None", "ipc_chassis" = "Morpheus Cyberkinetics (Custom)") meat = /obj/item/stack/sheet/plasteel{amount = 5} skinned_type = /obj/item/stack/sheet/iron{amount = 10} damage_overlay_type = "synth" - mutant_bodyparts = list("ipc_screen", "ipc_antenna", "ipc_chassis") - default_features = list("ipc_screen" = "BSOD", "ipc_antenna" = "None") + burnmod = 2 heatmod = 1.5 brutemod = 1 diff --git a/code/modules/mob/living/carbon/human/species_types/apid.dm b/code/modules/mob/living/carbon/human/species_types/apid.dm index dd28658b01875..da89b4dd55f8e 100644 --- a/code/modules/mob/living/carbon/human/species_types/apid.dm +++ b/code/modules/mob/living/carbon/human/species_types/apid.dm @@ -7,8 +7,7 @@ species_traits = list(LIPS,NOEYESPRITES,MUTCOLORS) inherent_traits = list(TRAIT_BEEFRIEND) inherent_biotypes = list(MOB_ORGANIC,MOB_HUMANOID,MOB_BUG) - mutant_bodyparts = list("apid_stripes","apid_antenna","apid_headstripes") - default_features = list("apid_stripes" = "thick","apid_headstripes" = "thick", "apid_antenna" = "curled") + mutant_bodyparts = list("apid_stripes" = "thick","apid_headstripes" = "thick", "apid_antenna" = "curled") hair_color = "fixedmutcolor" attack_verb = "slash" attack_sound = 'sound/weapons/slash.ogg' diff --git a/code/modules/mob/living/carbon/human/species_types/dullahan.dm b/code/modules/mob/living/carbon/human/species_types/dullahan.dm index 2179e274a6775..c5370e1f69784 100644 --- a/code/modules/mob/living/carbon/human/species_types/dullahan.dm +++ b/code/modules/mob/living/carbon/human/species_types/dullahan.dm @@ -5,9 +5,9 @@ default_color = "FFFFFF" species_traits = list(EYECOLOR,HAIR,FACEHAIR,LIPS) inherent_traits = list(TRAIT_NOHUNGER,TRAIT_NOBREATH, TRAIT_NONECRODISEASE) - default_features = list("mcolor" = "FFF", "tail_human" = "None", "ears" = "None", "wings" = "None", "body_size" = "Normal") + mutant_bodyparts = list("mcolor" = "FFF", "tail_human" = "None", "ears" = "None", "wings" = "None", "body_size" = "Normal") use_skintones = TRUE - mutant_brain = /obj/item/organ/brain/dullahan + mutantbrain = /obj/item/organ/brain/dullahan mutanteyes = /obj/item/organ/eyes/dullahan mutanttongue = /obj/item/organ/tongue/dullahan mutantears = /obj/item/organ/ears/dullahan diff --git a/code/modules/mob/living/carbon/human/species_types/felinid.dm b/code/modules/mob/living/carbon/human/species_types/felinid.dm index acda8d150343a..80c3b46b48663 100644 --- a/code/modules/mob/living/carbon/human/species_types/felinid.dm +++ b/code/modules/mob/living/carbon/human/species_types/felinid.dm @@ -5,12 +5,11 @@ bodyflag = FLAG_FELINID examine_limb_id = SPECIES_HUMAN - mutant_bodyparts = list("ears", "tail_human") - default_features = list("mcolor" = "FFF", "wings" = "None", "body_size" = "Normal") + mutant_bodyparts = list("tail_human" = "Cat", "ears" = "Cat", "wings" = "None", "body_size" = "Normal") forced_features = list("tail_human" = "Cat", "ears" = "Cat") mutantears = /obj/item/organ/ears/cat - mutanttail = /obj/item/organ/tail/cat + mutant_organs = list(/obj/item/organ/tail/cat) mutanttongue = /obj/item/organ/tongue/cat changesource_flags = MIRROR_BADMIN | WABBAJACK | MIRROR_PRIDE | MIRROR_MAGIC | RACE_SWAP | ERT_SPAWN | SLIME_EXTRACT @@ -49,37 +48,9 @@ var/obj/item/organ/tail/cat/tail = new tail.Insert(H, drop_if_replaced = FALSE, pref_load = pref_load) else - mutanttail = null + mutant_organs = list() return ..() -/datum/species/human/felinid/on_species_loss(mob/living/carbon/H, datum/species/new_species, pref_load) - var/obj/item/organ/ears/cat/ears = H.getorgan(/obj/item/organ/ears/cat) - var/obj/item/organ/tail/cat/tail = H.getorgan(/obj/item/organ/tail/cat) - - if(ears) - var/obj/item/organ/ears/new_ears - if(new_species?.mutantears) - // Roundstart cat ears override new_species.mutantears, reset it here. - new_species.mutantears = initial(new_species.mutantears) - if(new_species.mutantears) - new_ears = new new_species.mutantears - if(!new_ears) - // Go with default ears - new_ears = new /obj/item/organ/ears - new_ears.Insert(H, drop_if_replaced = FALSE, pref_load = pref_load) - - if(tail) - var/obj/item/organ/tail/new_tail - if(new_species && new_species.mutanttail) - // Roundstart cat tail overrides new_species.mutanttail, reset it here. - new_species.mutanttail = initial(new_species.mutanttail) - if(new_species.mutanttail) - new_tail = new new_species.mutanttail - if(new_tail) - new_tail.Insert(H, drop_if_replaced = FALSE, pref_load = pref_load) - else - tail.Remove(H, pref_load = pref_load) - /datum/species/human/felinid/handle_chemicals(datum/reagent/chem, mob/living/carbon/human/M) if(istype(chem, /datum/reagent/consumable/cocoa)) if(prob(40)) diff --git a/code/modules/mob/living/carbon/human/species_types/flypeople.dm b/code/modules/mob/living/carbon/human/species_types/flypeople.dm index f19269e3471fd..e1b43c4560030 100644 --- a/code/modules/mob/living/carbon/human/species_types/flypeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/flypeople.dm @@ -9,8 +9,7 @@ mutantliver = /obj/item/organ/liver/fly mutantstomach = /obj/item/organ/stomach/fly meat = /obj/item/food/meat/slab/human/mutant/fly - mutant_bodyparts = list("insect_type") - default_features = list("insect_type" = "fly", "body_size" = "Normal") + mutant_bodyparts = list("insect_type" = "fly", "body_size" = "Normal") burnmod = 1.4 brutemod = 1.4 speedmod = 0.7 diff --git a/code/modules/mob/living/carbon/human/species_types/humans.dm b/code/modules/mob/living/carbon/human/species_types/humans.dm index 8b46658c88f6e..6c0ad26df0a4e 100644 --- a/code/modules/mob/living/carbon/human/species_types/humans.dm +++ b/code/modules/mob/living/carbon/human/species_types/humans.dm @@ -3,7 +3,7 @@ id = SPECIES_HUMAN default_color = "FFFFFF" species_traits = list(EYECOLOR,HAIR,FACEHAIR,LIPS) - default_features = list("mcolor" = "FFF", "wings" = "None", "body_size" = "Normal") + mutant_bodyparts = list("body_size" = "Normal") use_skintones = 1 skinned_type = /obj/item/stack/sheet/animalhide/human changesource_flags = MIRROR_BADMIN | WABBAJACK | MIRROR_MAGIC | MIRROR_PRIDE | ERT_SPAWN | RACE_SWAP | SLIME_EXTRACT diff --git a/code/modules/mob/living/carbon/human/species_types/lizardpeople.dm b/code/modules/mob/living/carbon/human/species_types/lizardpeople.dm index ac0bbbf2bcc57..6be939510e757 100644 --- a/code/modules/mob/living/carbon/human/species_types/lizardpeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/lizardpeople.dm @@ -7,12 +7,12 @@ default_color = "00FF00" species_traits = list(MUTCOLORS,EYECOLOR,LIPS) inherent_biotypes = list(MOB_ORGANIC, MOB_HUMANOID, MOB_REPTILE) - mutant_bodyparts = list("tail_lizard", "snout", "spines", "horns", "frills", "body_markings", "legs") + mutant_bodyparts = list("tail_lizard" = "Smooth", "snout" = "Round", "horns" = "None", + "frills" = "None", "spines" = "None", "body_markings" = "None", "legs" = "Normal Legs", "body_size" = "Normal") mutanttongue = /obj/item/organ/tongue/lizard - mutanttail = /obj/item/organ/tail/lizard + mutant_organs = list(/obj/item/organ/tail/lizard) coldmod = 1.5 heatmod = 0.67 - default_features = list("mcolor" = "0F0", "tail_lizard" = "Smooth", "snout" = "Round", "horns" = "None", "frills" = "None", "spines" = "None", "body_markings" = "None", "legs" = "Normal Legs", "body_size" = "Normal") changesource_flags = MIRROR_BADMIN | WABBAJACK | MIRROR_PRIDE | MIRROR_MAGIC | RACE_SWAP | ERT_SPAWN | SLIME_EXTRACT attack_verb = "slash" attack_sound = 'sound/weapons/slash.ogg' diff --git a/code/modules/mob/living/carbon/human/species_types/mothmen.dm b/code/modules/mob/living/carbon/human/species_types/mothmen.dm index 30779164add58..ab4b47c0a4f62 100644 --- a/code/modules/mob/living/carbon/human/species_types/mothmen.dm +++ b/code/modules/mob/living/carbon/human/species_types/mothmen.dm @@ -13,8 +13,7 @@ default_color = "00FF00" species_traits = list(LIPS, NOEYESPRITES, HAS_MARKINGS) inherent_biotypes = list(MOB_ORGANIC, MOB_HUMANOID, MOB_BUG) - mutant_bodyparts = list("moth_wings", "moth_antennae", "moth_markings") - default_features = list("moth_wings" = "Plain", "moth_antennae" = "Plain", "moth_markings" = "None", "body_size" = "Normal") + mutant_bodyparts = list("moth_wings" = "Plain", "moth_antennae" = "Plain", "moth_markings" = "None", "body_size" = "Normal") attack_verb = "slash" attack_sound = 'sound/weapons/slash.ogg' miss_sound = 'sound/weapons/slashmiss.ogg' diff --git a/code/modules/mob/living/carbon/human/species_types/psyphoza.dm b/code/modules/mob/living/carbon/human/species_types/psyphoza.dm index 00588d8e363d1..b0032317c64fc 100644 --- a/code/modules/mob/living/carbon/human/species_types/psyphoza.dm +++ b/code/modules/mob/living/carbon/human/species_types/psyphoza.dm @@ -14,12 +14,11 @@ offset_features = list(OFFSET_UNIFORM = list(0,0), OFFSET_ID = list(0,0), OFFSET_GLOVES = list(0,0), OFFSET_GLASSES = list(0,-2), OFFSET_EARS = list(0,-3), OFFSET_SHOES = list(0,0), OFFSET_S_STORE = list(0,0), OFFSET_FACEMASK = list(0,-2), OFFSET_HEAD = list(0,-2), OFFSET_FACE = list(0,-2), OFFSET_BELT = list(0,0), OFFSET_BACK = list(0,0), OFFSET_SUIT = list(0,0), OFFSET_NECK = list(0,0)) - mutant_brain = /obj/item/organ/brain/psyphoza + mutantbrain = /obj/item/organ/brain/psyphoza mutanteyes = /obj/item/organ/eyes/psyphoza mutanttongue = /obj/item/organ/tongue/psyphoza - mutant_bodyparts = list("psyphoza_cap") - default_features = list("psyphoza_cap" = "Portobello", "body_size" = "Normal", "mcolor" = "fff") + mutant_bodyparts = list("psyphoza_cap" = "Portobello", "body_size" = "Normal", "mcolor" = "fff") hair_color = "fixedmutcolor" species_chest = /obj/item/bodypart/chest/psyphoza diff --git a/code/modules/mob/living/carbon/human/species_types/pumpkin_man.dm b/code/modules/mob/living/carbon/human/species_types/pumpkin_man.dm index 466113a2ae762..431564f384c1b 100644 --- a/code/modules/mob/living/carbon/human/species_types/pumpkin_man.dm +++ b/code/modules/mob/living/carbon/human/species_types/pumpkin_man.dm @@ -10,7 +10,7 @@ miss_sound = 'sound/weapons/punchmiss.ogg' changesource_flags = MIRROR_BADMIN | WABBAJACK | MIRROR_PRIDE | MIRROR_MAGIC | ERT_SPAWN - mutant_brain = /obj/item/organ/brain/pumpkin_brain + mutantbrain = /obj/item/organ/brain/pumpkin_brain mutanttongue = /obj/item/organ/tongue/podperson/pumpkin species_chest = /obj/item/bodypart/chest/pumpkin_man diff --git a/code/modules/mob/living/carbon/human/species_types/shadowpeople.dm b/code/modules/mob/living/carbon/human/species_types/shadowpeople.dm index ae06c0f247468..b092d7ba1f149 100644 --- a/code/modules/mob/living/carbon/human/species_types/shadowpeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/shadowpeople.dm @@ -95,8 +95,8 @@ species_traits = list(NOBLOOD,NO_UNDERWEAR,NO_DNA_COPY,NOTRANSSTING,NOEYESPRITES,NOFLASH) inherent_traits = list(TRAIT_RESISTCOLD,TRAIT_NOBREATH,TRAIT_RESISTHIGHPRESSURE,TRAIT_RESISTLOWPRESSURE,TRAIT_NOGUNS,TRAIT_RADIMMUNE,TRAIT_VIRUSIMMUNE,TRAIT_PIERCEIMMUNE,TRAIT_NODISMEMBER,TRAIT_NOHUNGER) mutanteyes = /obj/item/organ/eyes/night_vision/nightmare - mutant_organs = list(/obj/item/organ/heart/nightmare) - mutant_brain = /obj/item/organ/brain/nightmare + mutantheart = /obj/item/organ/heart/nightmare + mutantbrain = /obj/item/organ/brain/nightmare nojumpsuit = 1 var/info_text = "You are a Nightmare. The ability shadow walk allows unlimited, unrestricted movement in the dark while activated. \ diff --git a/code/modules/mob/living/carbon/human/species_types/vampire.dm b/code/modules/mob/living/carbon/human/species_types/vampire.dm index 50a4022c48485..f761d4f7c60bd 100644 --- a/code/modules/mob/living/carbon/human/species_types/vampire.dm +++ b/code/modules/mob/living/carbon/human/species_types/vampire.dm @@ -5,11 +5,11 @@ species_traits = list(EYECOLOR,HAIR,FACEHAIR,LIPS) inherent_traits = list(TRAIT_NOHUNGER,TRAIT_NOBREATH,TRAIT_DRINKSBLOOD) inherent_biotypes = list(MOB_UNDEAD, MOB_HUMANOID) - default_features = list("mcolor" = "FFF", "tail_human" = "None", "ears" = "None", "wings" = "None", "body_size" = "Normal") + mutant_bodyparts = list("tail_human" = "None", "ears" = "None", "wings" = "None", "body_size" = "Normal") changesource_flags = MIRROR_BADMIN | WABBAJACK | MIRROR_PRIDE | MIRROR_MAGIC | ERT_SPAWN exotic_bloodtype = "U" use_skintones = TRUE - mutant_heart = /obj/item/organ/heart/vampire + mutantheart = /obj/item/organ/heart/vampire mutanttongue = /obj/item/organ/tongue/vampire examine_limb_id = SPECIES_HUMAN skinned_type = /obj/item/stack/sheet/animalhide/human diff --git a/code/modules/mob/living/carbon/monkey/monkey.dm b/code/modules/mob/living/carbon/monkey/monkey.dm index 3d67252925f1c..ce45170756a7e 100644 --- a/code/modules/mob/living/carbon/monkey/monkey.dm +++ b/code/modules/mob/living/carbon/monkey/monkey.dm @@ -243,11 +243,10 @@ CREATION_TEST_IGNORE_SUBTYPES(/mob/living/carbon/monkey) id = "teratoma" species_traits = list(NOTRANSSTING, NO_DNA_COPY, EYECOLOR, HAIR, FACEHAIR, LIPS) inherent_traits = list(TRAIT_NOHUNGER, TRAIT_RADIMMUNE, TRAIT_BADDNA, TRAIT_NOGUNS, TRAIT_NONECRODISEASE) //Made of mutated cells - default_features = list("mcolor" = "FFF", "wings" = "None") use_skintones = FALSE skinned_type = /obj/item/stack/sheet/animalhide/monkey changesource_flags = MIRROR_BADMIN - mutant_brain = /obj/item/organ/brain/tumor + mutantbrain = /obj/item/organ/brain/tumor mutanttongue = /obj/item/organ/tongue/teratoma species_chest = /obj/item/bodypart/chest/monkey/teratoma diff --git a/code/modules/mob/living/silicon/robot/robot.dm b/code/modules/mob/living/silicon/robot/robot.dm index 39a1031d85993..b5152215a9b0a 100644 --- a/code/modules/mob/living/silicon/robot/robot.dm +++ b/code/modules/mob/living/silicon/robot/robot.dm @@ -297,8 +297,12 @@ if(custom_name) changed_name = custom_name if(changed_name == "" && C && C.prefs.read_character_preference(/datum/preference/name/cyborg) != DEFAULT_CYBORG_NAME) - if(apply_pref_name(/datum/preference/name/cyborg, C)) - return //built in camera handled in proc + if(check_cyborg_name(C, mmi)) + if(apply_pref_name(/datum/preference/name/cyborg, C)) + return //built in camera handled in proc + else + //Failed the vibe check on name theft, time to randomize it + changed_name = get_standard_name() if(!changed_name) changed_name = get_standard_name() diff --git a/code/modules/mob/living/silicon/robot/robot_modules.dm b/code/modules/mob/living/silicon/robot/robot_modules.dm index 7030ffef05079..4135e320427ed 100644 --- a/code/modules/mob/living/silicon/robot/robot_modules.dm +++ b/code/modules/mob/living/silicon/robot/robot_modules.dm @@ -271,7 +271,7 @@ /obj/item/borg/charger, /obj/item/weldingtool/cyborg/mini, /obj/item/reagent_containers/borghypo, - /obj/item/borg/apparatus/beaker, + /obj/item/borg/apparatus/container, /obj/item/reagent_containers/dropper, /obj/item/reagent_containers/syringe, /obj/item/surgical_drapes, @@ -508,7 +508,6 @@ name = "Service" basic_modules = list( /obj/item/assembly/flash/cyborg, - /obj/item/reagent_containers/food/drinks/drinkingglass, /obj/item/pen, /obj/item/toy/crayon/spraycan/borg, /obj/item/extinguisher/mini, @@ -521,7 +520,7 @@ /obj/item/instrument/piano_synth, /obj/item/reagent_containers/dropper, /obj/item/lighter, - /obj/item/borg/apparatus/beaker/service, + /obj/item/borg/apparatus/container/service, /obj/item/reagent_containers/borghypo/borgshaker) emag_modules = list(/obj/item/reagent_containers/borghypo/borgshaker/hacked) ratvar_modules = list( diff --git a/code/modules/mob/living/simple_animal/bot/atmosbot.dm b/code/modules/mob/living/simple_animal/bot/atmosbot.dm index 90403ff440119..3aaf937247caa 100644 --- a/code/modules/mob/living/simple_animal/bot/atmosbot.dm +++ b/code/modules/mob/living/simple_animal/bot/atmosbot.dm @@ -303,7 +303,7 @@ CREATION_TEST_IGNORE_SUBTYPES(/mob/living/simple_animal/bot/atmosbot) //Add adjacent turfs for(var/direction in list(NORTH, SOUTH, EAST, WEST)) var/turf/adjacent_turf = get_step(checking_turf, direction) - if(adjacent_turf in checked_turfs || !adjacent_turf.CanAtmosPass(adjacent_turf)) + if((adjacent_turf in checked_turfs) || !adjacent_turf.CanAtmosPass(adjacent_turf)) continue var/datum/gas_mixture/checking_air = checking_turf.return_air() if (!checking_air) diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/drake.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/drake.dm index d654d848378d3..d3ca35b2c40bb 100644 --- a/code/modules/mob/living/simple_animal/hostile/megafauna/drake.dm +++ b/code/modules/mob/living/simple_animal/hostile/megafauna/drake.dm @@ -271,7 +271,7 @@ Difficulty: Medium new /obj/effect/hotspot(T) T.hotspot_expose(700,50,1) for(var/mob/living/L in T.contents) - if(L in hit_list || L == source) + if((L in hit_list) || L == source) continue hit_list += L L.adjustFireLoss(20) diff --git a/code/modules/modular_computers/file_system/programs/signaller.dm b/code/modules/modular_computers/file_system/programs/signaller.dm index 6f9dfbf9b12d7..9b574a13abac6 100644 --- a/code/modules/modular_computers/file_system/programs/signaller.dm +++ b/code/modules/modular_computers/file_system/programs/signaller.dm @@ -14,6 +14,10 @@ var/signal_code = DEFAULT_SIGNALER_CODE /// Radio connection datum used by signallers. var/datum/radio_frequency/radio_connection + /// How long do we cooldown before we can send another signal? + var/signal_cooldown_time = 1 SECONDS + /// Cooldown store + COOLDOWN_DECLARE(signal_cooldown) /datum/computer_file/program/signaller/on_start(mob/living/user) . = ..() @@ -32,6 +36,7 @@ var/obj/item/computer_hardware/radio_card/sensor = computer?.get_modular_computer_part(MC_SIGNALLER) if(sensor?.check_functionality()) data["frequency"] = signal_frequency + data["cooldown"] = signal_cooldown_time data["code"] = signal_code data["minFrequency"] = MIN_FREE_FREQ data["maxFrequency"] = MAX_FREE_FREQ @@ -69,12 +74,20 @@ playsound(src, 'sound/machines/scanbuzz.ogg', 100, FALSE) return + if(!COOLDOWN_FINISHED(src, signal_cooldown)) + computer.balloon_alert(usr, "cooling down!") + return + + COOLDOWN_START(src, signal_cooldown, signal_cooldown_time) + computer.balloon_alert(usr, "signaled") + var/time = time2text(world.realtime,"hh:mm:ss") var/turf/T = get_turf(computer) if(usr) - GLOB.lastsignalers.Add("[time] : [usr.key] used [src] @ location ([T.x],[T.y],[T.z]) : with frequency: [format_frequency(signal_frequency)]/[signal_code]") log_telecomms("[time] : [usr.key] used [src] @ location [AREACOORD(T)] : with frequency: [format_frequency(signal_frequency)]/[signal_code]") message_admins(": [usr.key] used [src] @ location [AREACOORD(T)] : with frequency: [format_frequency(signal_frequency)]/[signal_code]") + var/logging_data = "[time] : [key_name(usr)] used the computer '[initial(computer.name)]' @ location ([T.x],[T.y],[T.z]) : [format_frequency(signal_frequency)]/[signal_code]" + add_to_signaler_investigate_log(logging_data) var/datum/signal/signal = new(list("code" = signal_code)) radio_connection.post_signal(src, signal) diff --git a/code/modules/multiz/movement/atom/atom_zfall.dm b/code/modules/multiz/movement/atom/atom_zfall.dm index b6cba85938d6d..e4245ca84ca16 100644 --- a/code/modules/multiz/movement/atom/atom_zfall.dm +++ b/code/modules/multiz/movement/atom/atom_zfall.dm @@ -30,6 +30,8 @@ if(!highest || A.layer > highest.layer) highest = A INVOKE_ASYNC(src, PROC_REF(SpinAnimation), 5, 2) + //Signal for unique behavior for objects falling + SEND_SIGNAL(src, COMSIG_ATOM_ON_Z_IMPACT, T, levels) if(highest) throw_impact(highest, new /datum/thrownthing(src, highest, DOWN, levels, min(5, levels), null, FALSE, MOVE_FORCE_STRONG, null, BODY_ZONE_HEAD)) return TRUE diff --git a/code/modules/paperwork/pen.dm b/code/modules/paperwork/pen.dm index 19a87e57a7202..6d1b2b5d3e4fd 100644 --- a/code/modules/paperwork/pen.dm +++ b/code/modules/paperwork/pen.dm @@ -85,12 +85,7 @@ font = CHARCOAL_FONT custom_materials = null -/datum/crafting_recipe/charcoal_stylus - name = "Charcoal Stylus" - result = /obj/item/pen/charcoal - reqs = list(/obj/item/stack/sheet/wood = 1, /datum/reagent/ash = 30) - time = 30 - category = CAT_PRIMAL + /obj/item/pen/fountain/captain diff --git a/code/modules/reagents/reagent_containers/borghydro.dm b/code/modules/reagents/reagent_containers/borghydro.dm index d6f0ca14de7ec..a406ccf40967c 100644 --- a/code/modules/reagents/reagent_containers/borghydro.dm +++ b/code/modules/reagents/reagent_containers/borghydro.dm @@ -185,6 +185,21 @@ Borg Shaker accepts_reagent_upgrades = FALSE reagent_ids = list( + //Non-alcoholic + /datum/reagent/water, + /datum/reagent/consumable/coffee, + /datum/reagent/consumable/tea, + /datum/reagent/consumable/space_cola, + /datum/reagent/consumable/dr_gibb, + /datum/reagent/consumable/spacemountainwind, + /datum/reagent/consumable/space_up, + //Fruit Juice + /datum/reagent/consumable/banana, + /datum/reagent/consumable/lemonjuice, + /datum/reagent/consumable/limejuice, + /datum/reagent/consumable/orangejuice, + /datum/reagent/consumable/tomatojuice, + //Alcoholic /datum/reagent/consumable/ethanol/absinthe, /datum/reagent/consumable/ethanol/ale, /datum/reagent/consumable/ethanol/beer, @@ -192,25 +207,21 @@ Borg Shaker /datum/reagent/consumable/ethanol/gin, /datum/reagent/consumable/ethanol/kahlua, /datum/reagent/consumable/ethanol/rum, + /datum/reagent/consumable/ethanol/sake, /datum/reagent/consumable/ethanol/tequila, /datum/reagent/consumable/ethanol/triple_sec, /datum/reagent/consumable/ethanol/vermouth, /datum/reagent/consumable/ethanol/vodka, /datum/reagent/consumable/ethanol/whiskey, /datum/reagent/consumable/ethanol/wine, - /datum/reagent/consumable/banana, - /datum/reagent/consumable/coffee, - /datum/reagent/consumable/cream, - /datum/reagent/consumable/grenadine, + //Other stuff for mixing /datum/reagent/consumable/ice, - /datum/reagent/consumable/lemonjuice, - /datum/reagent/consumable/limejuice, - /datum/reagent/consumable/milk, - /datum/reagent/consumable/orangejuice, /datum/reagent/consumable/sodawater, - /datum/reagent/consumable/space_cola, - /datum/reagent/consumable/tomatojuice, - /datum/reagent/consumable/tonic) + /datum/reagent/consumable/tonic, + /datum/reagent/consumable/grenadine, + /datum/reagent/consumable/cream, + /datum/reagent/consumable/milk, + /datum/reagent/consumable/sugar) /obj/item/reagent_containers/borghypo/borgshaker/attack(mob/M, mob/user) return //Can't inject stuff with a shaker, can we? //not with that attitude diff --git a/code/modules/reagents/reagent_dispenser.dm b/code/modules/reagents/reagent_dispenser.dm index 2d275eb4daed0..0221fce1e147f 100644 --- a/code/modules/reagents/reagent_dispenser.dm +++ b/code/modules/reagents/reagent_dispenser.dm @@ -9,6 +9,43 @@ max_integrity = 300 var/tank_volume = 1000 //In units, how much the dispenser can hold var/reagent_id = /datum/reagent/water //The ID of the reagent that the dispenser uses + var/obj/item/assembly_holder/rig = null // An assembly attached to the tank - if this dispenser accepts_rig + var/accepts_rig = FALSE // Whether this dispenser can be rigged with an assembly (and blown up with an igniter) + var/mutable_appearance/assembliesoverlay //overlay of attached assemblies + var/last_rigger = "" // The person who attached an assembly to this dispenser, for bomb logging purposes + +/obj/structure/reagent_dispensers/IsSpecialAssembly() // This check is necessary for assemblies to automatically detect that we are compatible + return accepts_rig + +/obj/structure/reagent_dispensers/Destroy() + QDEL_NULL(rig) + return ..() + +/** + * rig_boom: Wrapper to log when a reagent_dispenser is set off by an assembly + * + */ +/obj/structure/reagent_dispensers/proc/rig_boom() + log_bomber(last_rigger, "rigged [src] exploded", src) + boom() + +/obj/structure/reagent_dispensers/Initialize(mapload) + create_reagents(tank_volume, DRAINABLE | AMOUNT_VISIBLE) + if(reagent_id) + reagents.add_reagent(reagent_id, tank_volume) + . = ..() + +/obj/structure/reagent_dispensers/examine(mob/user) + . = ..() + if(accepts_rig && get_dist(user, src) <= 2) + if(rig) + . += ("There is some kind of device rigged to the tank!") + else + . += ("It looks like you could rig a device to the tank.") + for(var/assembly in rig.assemblies) + if(istype(assembly, /obj/item/assembly/timer)) + var/obj/item/assembly/timer/timer = assembly + . += "There is a timer [timer.timing ? "counting down from [timer.time]":"set for [timer.time] seconds"]." /obj/structure/reagent_dispensers/take_damage(damage_amount, damage_type = BRUTE, damage_flag = 0, sound_effect = 1, attack_dir, armour_penetration = 0) . = ..() @@ -19,20 +56,98 @@ /obj/structure/reagent_dispensers/attackby(obj/item/W, mob/user, params) if(W.is_refillable()) return 0 //so we can refill them via their afterattack. - else - return ..() + if(istype(W, /obj/item/assembly_holder) && accepts_rig) + if(rig) + balloon_alert(user, "another device is in the way!") + return ..() + var/obj/item/assembly_holder/holder = W + if(!(locate(/obj/item/assembly/igniter) in holder.assemblies)) + return ..() + + user.balloon_alert_to_viewers("attaching rig...") + add_fingerprint(user) + if(!do_after(user, 2 SECONDS, target = src) || !user.transferItemToLoc(holder, src)) + return + rig = holder + holder.master = src + holder.on_attach(src) + assembliesoverlay = holder + assembliesoverlay.pixel_x += 6 + assembliesoverlay.pixel_y += 1 + add_overlay(assembliesoverlay) + RegisterSignal(src, COMSIG_IGNITER_ACTIVATE, PROC_REF(rig_boom)) + log_bomber(user, "attached [holder.name] to ", src) + last_rigger = user + user.balloon_alert_to_viewers("attached rig") + return + return ..() -/obj/structure/reagent_dispensers/Initialize(mapload) - create_reagents(tank_volume, DRAINABLE | AMOUNT_VISIBLE) - if(reagent_id) - reagents.add_reagent(reagent_id, tank_volume) +/obj/structure/reagent_dispensers/Exited(atom/movable/gone, direction) . = ..() + if(gone == rig) + rig = null + +/obj/structure/reagent_dispensers/attack_hand(mob/user, list/modifiers) + . = ..() + if(. || !rig) + return + // mousetrap rigs only make sense if you can set them off, can't step on them + // If you see a mousetrap-rigged fuel tank, just leave it alone + rig.on_found() + if(QDELETED(src)) + return + user.balloon_alert_to_viewers("detaching rig...") + if(!do_after(user, 2 SECONDS, target = src)) + return + user.balloon_alert_to_viewers("detached rig") + user.log_message("detached [rig] from [src].", LOG_GAME) + if(!user.put_in_hands(rig)) + rig.forceMove(get_turf(user)) + rig = null + last_rigger = null + cut_overlays(assembliesoverlay) + UnregisterSignal(src, COMSIG_IGNITER_ACTIVATE) /obj/structure/reagent_dispensers/proc/boom() - visible_message("\The [src] ruptures!") - chem_splash(loc, 5, list(reagents)) + if(QDELETED(src)) + return // little bit of sanity sauce before we wreck ourselves somehow + var/datum/reagent/fuel/volatiles = reagents.has_reagent(/datum/reagent/fuel) + var/fuel_amt = 0 + if(istype(volatiles) && volatiles.volume >= 25) + fuel_amt = volatiles.volume + reagents.del_reagent(/datum/reagent/fuel) // not actually used for the explosion + if(reagents.total_volume) + if(!fuel_amt) + visible_message(("\The [src] ruptures!")) + // Leave it up to future terrorists to figure out the best way to mix reagents with fuel for a useful boom here + chem_splash(loc, null, 2 + (reagents.total_volume + fuel_amt) / 1000, list(reagents), extra_heat=(fuel_amt / 50),adminlog=(fuel_amt<25)) + + if(fuel_amt) // with that done, actually explode + visible_message(("\The [src] explodes!")) + // old code for reference: + // standard fuel tank = 1000 units = heavy_impact_range = 1, light_impact_range = 5, flame_range = 5 + // big fuel tank = 5000 units = devastation_range = 1, heavy_impact_range = 2, light_impact_range = 7, flame_range = 12 + // It did not account for how much fuel was actually in the tank at all, just the size of the tank. + // I encourage others to better scale these numbers in the future. + // As it stands this is a minor nerf in exchange for an easy bombing technique working that has been broken for a while. + switch(fuel_amt) + if(25 to 150) + explosion(src, light_impact_range = 1, flame_range = 2) + if(150 to 300) + explosion(src, light_impact_range = 2, flame_range = 3) + if(300 to 750) + explosion(src, heavy_impact_range = 1, light_impact_range = 3, flame_range = 5) + if(750 to 1500) + explosion(src, heavy_impact_range = 1, light_impact_range = 4, flame_range = 6) + if(1500 to INFINITY) + explosion(src, devastation_range = 1, heavy_impact_range = 2, light_impact_range = 6, flame_range = 8) qdel(src) +/obj/structure/reagent_dispensers/Moved(atom/old_loc, movement_dir) + . = ..() + if(rig) + rig.on_move(old_loc, movement_dir) + /obj/structure/reagent_dispensers/deconstruct(disassembled = TRUE) if(!(flags_1 & NODECONSTRUCT_1)) if(!disassembled) @@ -63,13 +178,7 @@ desc = "A tank full of industrial welding fuel. Do not consume." icon_state = "fuel" reagent_id = /datum/reagent/fuel - -/obj/structure/reagent_dispensers/fueltank/boom() - var/light_explosion_range = clamp(round(reagents.get_reagent_amount(/datum/reagent/fuel)/200, 1), 1, 5) //explosion range should decrease when there is less fuel in the tank - var/flame_explosion_range = clamp(light_explosion_range + 1, 1, 5) //Fire explosion is always one bigger than light explosion - var/heavy_explosion_range = round(light_explosion_range/5, 1) //if there is less than 500 fuel in the tank, no heavy explosion - explosion(get_turf(src), 0, heavy_explosion_range, light_explosion_range, flame_range = flame_explosion_range) - qdel(src) + accepts_rig = TRUE /obj/structure/reagent_dispensers/fueltank/blob_act(obj/structure/blob/B) boom() diff --git a/code/modules/research/designs/autolathe_designs.dm b/code/modules/research/designs/autolathe_designs.dm index cace6ca4a9d10..2243e49db7577 100644 --- a/code/modules/research/designs/autolathe_designs.dm +++ b/code/modules/research/designs/autolathe_designs.dm @@ -370,13 +370,21 @@ category = list("initial","Dinnerware") /datum/design/tray - name = "Tray" + name = "Serving Tray" id = "tray" build_type = AUTOLATHE materials = list(/datum/material/iron = 3000) build_path = /obj/item/storage/bag/tray category = list("initial","Dinnerware") +/datum/design/plate + name = "Plate" + id = "plate" + build_type = AUTOLATHE + materials = list(/datum/material/iron = 3500) + build_path = /obj/item/plate + category = list("initial","Dinnerware") + /datum/design/bowl name = "Bowl" id = "bowl" diff --git a/code/modules/research/nanites/nanite_programs/suppression.dm b/code/modules/research/nanites/nanite_programs/suppression.dm index 21e7cb7245dea..b62f87af25218 100644 --- a/code/modules/research/nanites/nanite_programs/suppression.dm +++ b/code/modules/research/nanites/nanite_programs/suppression.dm @@ -123,9 +123,9 @@ var/datum/nanite_extra_setting/comm_code = extra_settings[NES_COMM_CODE] if(!activated || !comm_code) return - if(signal_comm_code == comm_code) + if(signal_comm_code == comm_code.get_value()) host_mob.investigate_log("'s [name] nanite program was messaged by [comm_source] with comm code [signal_comm_code] and message '[comm_message]'.", INVESTIGATE_NANITES) - trigger(comm_message) + trigger(comm_message=comm_message) /datum/nanite_program/comm/speech name = "Forced Speech" diff --git a/code/modules/research/nanites/nanite_remote.dm b/code/modules/research/nanites/nanite_remote.dm index 1e36f2e78b61f..6b3232a140315 100644 --- a/code/modules/research/nanites/nanite_remote.dm +++ b/code/modules/research/nanites/nanite_remote.dm @@ -216,7 +216,8 @@ return data /obj/item/nanite_remote/comm/ui_act(action, params) - if(..()) + . = ..() + if(.) return switch(action) if("set_message") diff --git a/code/modules/research/xenobiology/crossbreeding/_clothing.dm b/code/modules/research/xenobiology/crossbreeding/_clothing.dm index 56f572ee823d8..310412685da39 100644 --- a/code/modules/research/xenobiology/crossbreeding/_clothing.dm +++ b/code/modules/research/xenobiology/crossbreeding/_clothing.dm @@ -154,7 +154,7 @@ CREATION_TEST_IGNORE_SUBTYPES(/obj/structure/light_prism) user.remove_movespeed_modifier(/datum/movespeed_modifier/admantine_armor) /obj/item/clothing/suit/armor/heavy/adamantine/IsReflect(def_zone) - if(def_zone in list(BODY_ZONE_CHEST, BODY_ZONE_R_ARM, BODY_ZONE_L_ARM, BODY_ZONE_R_LEG, BODY_ZONE_L_LEG) && prob(hit_reflect_chance)) + if((def_zone in list(BODY_ZONE_CHEST, BODY_ZONE_R_ARM, BODY_ZONE_L_ARM, BODY_ZONE_R_LEG, BODY_ZONE_L_LEG)) && prob(hit_reflect_chance)) return TRUE else return FALSE diff --git a/code/modules/surgery/bodyparts/bodyparts.dm b/code/modules/surgery/bodyparts/bodyparts.dm index ad9e65c33931d..d4ec2353a5462 100644 --- a/code/modules/surgery/bodyparts/bodyparts.dm +++ b/code/modules/surgery/bodyparts/bodyparts.dm @@ -130,14 +130,16 @@ var/mob/living/carbon/human/H = C if(HAS_TRAIT(C, TRAIT_LIMBATTACHMENT)) if(!H.get_bodypart(body_zone) && !animal_origin) + user.temporarilyRemoveItemFromInventory(src, TRUE) + if(!attach_limb(C)) + to_chat(user, "[H]'s body rejects [src]!") + forceMove(H.loc) if(H == user) H.visible_message("[H] jams [src] into [H.p_their()] empty socket!",\ "You force [src] into your empty socket, and it locks into place!") else H.visible_message("[user] jams [src] into [H]'s empty socket!",\ "[user] forces [src] into your empty socket, and it locks into place!") - user.temporarilyRemoveItemFromInventory(src, TRUE) - attach_limb(C) return ..() diff --git a/code/modules/surgery/bodyparts/dismemberment.dm b/code/modules/surgery/bodyparts/dismemberment.dm index c8079b137523c..3f8bdf4d2e7ac 100644 --- a/code/modules/surgery/bodyparts/dismemberment.dm +++ b/code/modules/surgery/bodyparts/dismemberment.dm @@ -252,24 +252,25 @@ /obj/item/bodypart/proc/replace_limb(mob/living/carbon/C, special, is_creating = FALSE) if(!istype(C)) return - var/obj/item/bodypart/O = C.get_bodypart(body_zone) + var/obj/item/bodypart/O = C.get_bodypart(body_zone) //needs to happen before attach because multiple limbs in same zone breaks helpers + if(!attach_limb(C, special, is_creating))//we can attach this limb and drop the old after because of our robust bodyparts system. you know, just for a sec. + return if(O) O.drop_limb(1) - attach_limb(C, special, is_creating) /obj/item/bodypart/head/replace_limb(mob/living/carbon/C, special, is_creating = FALSE) if(!istype(C)) return var/obj/item/bodypart/head/O = C.get_bodypart(body_zone) + if(!attach_limb(C, special, is_creating)) + return if(O) - if(!special) - return - else - O.drop_limb(1) - attach_limb(C, special, is_creating) + O.drop_limb(1) /obj/item/bodypart/proc/attach_limb(mob/living/carbon/C, special, is_creating = FALSE) - SEND_SIGNAL(C, COMSIG_CARBON_ATTACH_LIMB, src, special) + //if(SEND_SIGNAL(C, COMSIG_CARBON_ATTACH_LIMB, src, special) & COMPONENT_NO_ATTACH) + // return FALSE + //. = TRUE SEND_SIGNAL(src, COMSIG_BODYPART_ATTACHED, C, special) moveToNullspace() set_owner(C) @@ -287,8 +288,7 @@ C.update_inv_gloves() if(special) //non conventional limb attachment - for(var/X in C.surgeries) //if we had an ongoing surgery to attach a new limb, we stop it. - var/datum/surgery/S = X + for(var/datum/surgery/S as anything in C.surgeries) //if we had an ongoing surgery to attach a new limb, we stop it. var/surgery_zone = check_zone(S.location) if(surgery_zone == body_zone) C.surgeries -= S @@ -309,7 +309,10 @@ SEND_SIGNAL(C, COMSIG_CARBON_POST_ATTACH_LIMB, src, special) -/obj/item/bodypart/head/attach_limb(mob/living/carbon/C, special, is_creating = FALSE) +/obj/item/bodypart/head/attach_limb(mob/living/carbon/C, special = FALSE, abort = FALSE, is_creating = FALSE) + . = ..() + if(!.) + return . //Transfer some head appearance vars over if(brain) if(brainmob) @@ -347,7 +350,10 @@ AP.Grant(C) break - ..() + C.updatehealth() + C.update_body() + C.update_hair() + C.update_damage_overlays() /obj/item/bodypart/proc/synchronize_bodytypes(mob/living/carbon/C) if(!C.dna.species) @@ -360,15 +366,15 @@ C.dna.species.bodytype = all_limb_flags //Regenerates all limbs. Returns amount of limbs regenerated -/mob/living/proc/regenerate_limbs(noheal, excluded_limbs) - return 0 +/mob/living/proc/regenerate_limbs(noheal = FALSE, list/excluded_zones = list()) + SEND_SIGNAL(src, COMSIG_LIVING_REGENERATE_LIMBS, noheal, excluded_zones) -/mob/living/carbon/regenerate_limbs(noheal, list/excluded_limbs) - var/list/limb_list = list(BODY_ZONE_HEAD, BODY_ZONE_CHEST, BODY_ZONE_R_ARM, BODY_ZONE_L_ARM, BODY_ZONE_R_LEG, BODY_ZONE_L_LEG) - if(excluded_limbs) - limb_list -= excluded_limbs - for(var/Z in limb_list) - . += regenerate_limb(Z, noheal) +/mob/living/carbon/regenerate_limbs(noheal = FALSE, list/excluded_zones = list()) + var/list/zone_list = list(BODY_ZONE_HEAD, BODY_ZONE_CHEST, BODY_ZONE_R_ARM, BODY_ZONE_L_ARM, BODY_ZONE_R_LEG, BODY_ZONE_L_LEG) + if(length(excluded_zones)) + zone_list -= excluded_zones + for(var/limb_zone in zone_list) + . += regenerate_limb(limb_zone, noheal) /mob/living/proc/regenerate_limb(limb_zone, noheal) return @@ -376,7 +382,7 @@ /mob/living/carbon/regenerate_limb(limb_zone, noheal) var/obj/item/bodypart/L if(get_bodypart(limb_zone)) - return 0 + return FALSE L = newBodyPart(limb_zone, 0, 0) L.replace_limb(src, TRUE, TRUE) return 1 diff --git a/code/modules/surgery/organs/appendix.dm b/code/modules/surgery/organs/appendix.dm index 0645e4bc6c101..d1f1b92de12c8 100644 --- a/code/modules/surgery/organs/appendix.dm +++ b/code/modules/surgery/organs/appendix.dm @@ -28,6 +28,9 @@ if(M) M.adjustToxLoss(4, TRUE, TRUE) //forced to ensure people don't use it to gain tox as slime person +/obj/item/organ/appendix/get_availability(datum/species/S) + return !((TRAIT_NOHUNGER in S.species_traits) || (TRAIT_POWERHUNGRY in S.inherent_traits)) + /obj/item/organ/appendix/Remove(mob/living/carbon/M, special = 0, pref_load = FALSE) for(var/datum/disease/appendicitis/A in M.diseases) A.cure() diff --git a/code/modules/surgery/organs/ears.dm b/code/modules/surgery/organs/ears.dm index 8cef3e044916c..147108d0f464f 100644 --- a/code/modules/surgery/organs/ears.dm +++ b/code/modules/surgery/organs/ears.dm @@ -105,8 +105,7 @@ return if(istype(H)) color = H.hair_color - H.dna.species.mutant_bodyparts |= "ears" - H.dna.features["ears"] = "Cat" + H.dna.features["ears"] = H.dna.species.mutant_bodyparts["ears"] = "Cat" H.update_body() /obj/item/organ/ears/cat/Remove(mob/living/carbon/human/H, special = 0, pref_load = FALSE) diff --git a/code/modules/surgery/organs/heart.dm b/code/modules/surgery/organs/heart.dm index 531fa34ed7dbf..0439c5c092615 100644 --- a/code/modules/surgery/organs/heart.dm +++ b/code/modules/surgery/organs/heart.dm @@ -98,6 +98,9 @@ owner.set_heartattack(TRUE) failed = TRUE +/obj/item/organ/heart/get_availability(datum/species/S) + return !(NOBLOOD in S.species_traits) + /obj/item/organ/heart/cursed name = "cursed heart" desc = "A heart that, when inserted, will force you to pump it manually." diff --git a/code/modules/surgery/organs/liver.dm b/code/modules/surgery/organs/liver.dm index 6d84980cc3ea7..71dae581957a3 100755 --- a/code/modules/surgery/organs/liver.dm +++ b/code/modules/surgery/organs/liver.dm @@ -67,6 +67,9 @@ #undef HAS_NO_TOXIN #undef HAS_PAINFUL_TOXIN +/obj/item/organ/liver/get_availability(datum/species/S) + return !(TRAIT_NOMETABOLISM in S.species_traits) + /obj/item/organ/liver/fly name = "insectoid liver" icon_state = "liver-x" //xenomorph liver? It's just a black liver so it fits. diff --git a/code/modules/surgery/organs/lungs.dm b/code/modules/surgery/organs/lungs.dm index dc32c17641833..d816c0bb7a5df 100644 --- a/code/modules/surgery/organs/lungs.dm +++ b/code/modules/surgery/organs/lungs.dm @@ -366,6 +366,8 @@ failed = FALSE return +/obj/item/organ/lungs/get_availability(datum/species/S) + return !(TRAIT_NOBREATH in S.species_traits) /obj/item/organ/lungs/plasmaman name = "plasma filter" diff --git a/code/modules/surgery/organs/organ_internal.dm b/code/modules/surgery/organs/organ_internal.dm index 97b650a9ac0b0..af54623dc1a0c 100644 --- a/code/modules/surgery/organs/organ_internal.dm +++ b/code/modules/surgery/organs/organ_internal.dm @@ -217,22 +217,47 @@ INITIALIZE_IMMEDIATE(/obj/item/organ) return else - if(!getorganslot(ORGAN_SLOT_LUNGS)) - var/obj/item/organ/lungs/L = new() + var/obj/item/organ/lungs/L = getorganslot(ORGAN_SLOT_LUNGS) + if(!L) + L = new() L.Insert(src) + L.setOrganDamage(0) - if(!getorganslot(ORGAN_SLOT_HEART)) - var/obj/item/organ/heart/H = new() + var/obj/item/organ/heart/H = getorganslot(ORGAN_SLOT_HEART) + if(!H) + H = new() H.Insert(src) + H.setOrganDamage(0) - if(!getorganslot(ORGAN_SLOT_TONGUE)) - var/obj/item/organ/tongue/T = new() + var/obj/item/organ/tongue/T = getorganslot(ORGAN_SLOT_TONGUE) + if(!T) + T = new() T.Insert(src) + T.setOrganDamage(0) - if(!getorganslot(ORGAN_SLOT_EYES)) - var/obj/item/organ/eyes/E = new() - E.Insert(src) + var/obj/item/organ/eyes/eyes = getorganslot(ORGAN_SLOT_EYES) + if(!eyes) + eyes = new() + eyes.Insert(src) + eyes.setOrganDamage(0) - if(!getorganslot(ORGAN_SLOT_EARS)) - var/obj/item/organ/ears/ears = new() + var/obj/item/organ/ears/ears = getorganslot(ORGAN_SLOT_EARS) + if(!ears) + ears = new() ears.Insert(src) + ears.setOrganDamage(0) + +/** get_availability + * returns whether the species should innately have this organ. + * + * regenerate organs works with generic organs, so we need to get whether it can accept certain organs just by what this returns. + * This is set to return true or false, depending on if a species has a specific organless trait. stomach for example checks if the species has NOSTOMACH and return based on that. + * Arguments: + * S - species, needed to return whether the species has an organ specific trait + */ +/obj/item/organ/proc/get_availability(datum/species/S) + return TRUE + +/// Called before organs are replaced in regenerate_organs with new ones +/obj/item/organ/proc/before_organ_replacement(obj/item/organ/replacement) + return diff --git a/code/modules/surgery/organs/stomach.dm b/code/modules/surgery/organs/stomach.dm index 33630b88d1229..e6e63abf3bac0 100755 --- a/code/modules/surgery/organs/stomach.dm +++ b/code/modules/surgery/organs/stomach.dm @@ -43,6 +43,9 @@ H.vomit(damage) to_chat(H, "Your stomach reels in pain as you're incapable of holding down all that food!") +/obj/item/organ/stomach/get_availability(datum/species/S) + return !(NOSTOMACH in S.species_traits) + /obj/item/organ/stomach/proc/handle_disgust(mob/living/carbon/human/H) if(H.disgust) var/pukeprob = 5 + 0.05 * H.disgust diff --git a/code/modules/surgery/organs/tails.dm b/code/modules/surgery/organs/tails.dm index f17295579da96..c5922b4a83189 100644 --- a/code/modules/surgery/organs/tails.dm +++ b/code/modules/surgery/organs/tails.dm @@ -28,9 +28,9 @@ H.update_body() return if(istype(H)) - if(!("tail_human" in H.dna.species.mutant_bodyparts)) - H.dna.species.mutant_bodyparts |= "tail_human" - H.dna.features["tail_human"] = tail_type + var/default_part = H.dna.species.mutant_bodyparts["tail_human"] + if(!default_part || default_part == "None") + H.dna.features["tail_human"] = H.dna.species.mutant_bodyparts["tail_human"] = tail_type H.update_body() /obj/item/organ/tail/cat/Remove(mob/living/carbon/human/H, special = 0, pref_load = FALSE) @@ -48,7 +48,7 @@ /obj/item/organ/tail/cat/is_wagging(mob/living/carbon/human/H) if(!H?.dna?.species) return FALSE - return ("waggingtail_human" in H.dna.species.mutant_bodyparts) + return (H.dna.species.mutant_bodyparts["waggingtail_human"]) /obj/item/organ/tail/cat/set_wagging(mob/living/carbon/human/H, wagging = FALSE) . = FALSE @@ -75,15 +75,40 @@ ..() if(istype(H)) // Checks here are necessary so it wouldn't overwrite the tail of a lizard it spawned in - if(!("tail_lizard" in H.dna.species.mutant_bodyparts)) - H.dna.features["tail_lizard"] = tail_type - H.dna.species.mutant_bodyparts |= "tail_lizard" + var/default_part = H.dna.species.mutant_bodyparts["tail_lizard"] + if(!default_part || default_part == "None") + H.dna.features["tail_lizard"] = H.dna.species.mutant_bodyparts["tail_lizard"] = tail_type - if(!("spines" in H.dna.species.mutant_bodyparts)) - H.dna.features["spines"] = spines - H.dna.species.mutant_bodyparts |= "spines" + default_part = H.dna.species.mutant_bodyparts["spines"] + if(!default_part || default_part == "None") + H.dna.features["spines"] = H.dna.species.mutant_bodyparts["spines"] = spines H.update_body() +/datum/species/lizard/on_species_gain(mob/living/carbon/C, datum/species/old_species, pref_load) + var/real_tail_type = C.dna.features["tail_lizard"] + var/real_spines = C.dna.features["spines"] + + . = ..() + + // Special handler for loading preferences. If we're doing it from a preference load, we'll want + // to make sure we give the appropriate lizard tail AFTER we call the parent proc, as the parent + // proc will overwrite the lizard tail. Species code at its finest. + if(pref_load) + C.dna.features["tail_lizard"] = real_tail_type + C.dna.features["spines"] = real_spines + + var/obj/item/organ/tail/lizard/new_tail = new /obj/item/organ/tail/lizard() + + new_tail.tail_type = C.dna.features["tail_lizard"] + C.dna.species.mutant_bodyparts |= "tail_lizard" + + new_tail.spines = C.dna.features["spines"] + C.dna.species.mutant_bodyparts |= "spines" + + // organ.Insert will qdel any existing organs in the same slot, so + // we don't need to manage that. + new_tail.Insert(C, TRUE, FALSE) + /obj/item/organ/tail/lizard/Remove(mob/living/carbon/human/H, special = 0, pref_load = FALSE) ..() if(istype(H)) @@ -94,10 +119,20 @@ spines = H.dna.features["spines"] H.update_body() +/obj/item/organ/tail/lizard/before_organ_replacement(obj/item/organ/replacement) + . = ..() + var/obj/item/organ/tail/lizard/new_tail = replacement + + if(!istype(new_tail)) + return + + new_tail.tail_type = tail_type + new_tail.spines = spines + /obj/item/organ/tail/lizard/is_wagging(mob/living/carbon/human/H) if(!H?.dna?.species) return FALSE - return ("waggingtail_lizard" in H.dna.species.mutant_bodyparts) + return (H.dna.species.mutant_bodyparts["waggingtail_lizard"]) /obj/item/organ/tail/lizard/set_wagging(mob/living/carbon/human/H, wagging = FALSE) . = FALSE diff --git a/code/modules/surgery/organs/wings.dm b/code/modules/surgery/organs/wings.dm index 6ce219b437b40..95c03fbb691d9 100644 --- a/code/modules/surgery/organs/wings.dm +++ b/code/modules/surgery/organs/wings.dm @@ -24,7 +24,7 @@ /obj/item/organ/wings/proc/Refresh(mob/living/carbon/human/H) H.dna.species.mutant_bodyparts -= "[basewings]open" - if(!(basewings in H.dna.species.mutant_bodyparts)) + if(!(H.dna.species.mutant_bodyparts[basewings])) H.dna.species.mutant_bodyparts |= basewings H.dna.features[basewings] = wing_type H.update_body() @@ -56,16 +56,16 @@ if(wingsound) playsound(H, wingsound, 100, 7) if(basewings == "wings" || basewings == "moth_wings") - if("wings" in H.dna.species.mutant_bodyparts) + if(H.dna.species.mutant_bodyparts["wings"]) H.dna.species.mutant_bodyparts -= "wings" H.dna.species.mutant_bodyparts |= "wingsopen" - else if("wingsopen" in H.dna.species.mutant_bodyparts) + else if(H.dna.species.mutant_bodyparts["wingsopen"]) H.dna.species.mutant_bodyparts -= "wingsopen" H.dna.species.mutant_bodyparts |= "wings" - else if("moth_wings" in H.dna.species.mutant_bodyparts) + else if(H.dna.species.mutant_bodyparts["moth_wings"]) H.dna.species.mutant_bodyparts |= "moth_wingsopen" H.dna.species.mutant_bodyparts -= "moth_wings" - else if("moth_wingsopen" in H.dna.species.mutant_bodyparts) + else if(H.dna.species.mutant_bodyparts["moth_wingsopen"]) H.dna.species.mutant_bodyparts -= "moth_wingsopen" H.dna.species.mutant_bodyparts |= "moth_wings" else //it appears we don't actually have wing icons. apply them!! diff --git a/code/modules/unit_tests/_unit_tests.dm b/code/modules/unit_tests/_unit_tests.dm index 1035ba114cf8c..0d573e3d42245 100644 --- a/code/modules/unit_tests/_unit_tests.dm +++ b/code/modules/unit_tests/_unit_tests.dm @@ -52,6 +52,7 @@ #include "reagent_id_typos.dm" #include "reagent_recipe_collisions.dm" #include "security_levels.dm" +#include "serving_tray.dm" #include "shuttle_width_height_correctness.dm" #include "siunit.dm" #include "spawn_humans.dm" diff --git a/code/modules/unit_tests/serving_tray.dm b/code/modules/unit_tests/serving_tray.dm new file mode 100644 index 0000000000000..1db8b635c8ea4 --- /dev/null +++ b/code/modules/unit_tests/serving_tray.dm @@ -0,0 +1,46 @@ +/** + * Check that standard food items fit on the serving tray + */ +/datum/unit_test/servingtray/Run() + var/mob/living/carbon/human/human = allocate(/mob/living/carbon/human/consistent) + var/obj/structure/table/the_table = allocate(/obj/structure/table) + var/obj/item/storage/bag/tray/test_tray = allocate(/obj/item/storage/bag/tray) + var/obj/item/food/banana = allocate(/obj/item/food/rationpack) + var/obj/item/food/the_bread = allocate(/obj/item/food/breadslice) + var/obj/item/food/sugarcookie = allocate(/obj/item/food/cookie/sugar) + var/obj/item/clothing/under/jumpsuit = allocate(/obj/item/clothing/under/color/black) + + TEST_ASSERT_EQUAL((the_bread in test_tray.contents), FALSE, "The bread is on the serving tray at test start") + + // set the tray to single item mode the dirty way + var/datum/component/storage/tray_storage = test_tray.GetComponent(/datum/component/storage) + tray_storage.collection_mode = COLLECT_ONE + + test_tray.pre_attack(the_bread, human) + + TEST_ASSERT_EQUAL((the_bread in test_tray.contents), TRUE, "The bread did not get picked up by the serving tray") + + test_tray.pre_attack(banana, human) + + TEST_ASSERT_EQUAL((banana in test_tray.contents), TRUE, "The banana did not get picked up by the serving tray") + + the_table.attackby(test_tray, human) + + TEST_ASSERT_EQUAL(test_tray.contents.len, 0, "The serving tray did not drop all items on hitting the table") + + test_tray.pre_attack(sugarcookie, human) + + TEST_ASSERT_EQUAL((sugarcookie in test_tray.contents), TRUE, "The sugarcookie did not get picked up by the serving tray") + + human.equip_to_slot(jumpsuit, ITEM_SLOT_ICLOTHING) + TEST_ASSERT(human.get_item_by_slot(ITEM_SLOT_ICLOTHING), "Human does not have jumpsuit on") + + human.equip_to_slot(test_tray, ITEM_SLOT_LPOCKET) + TEST_ASSERT(human.get_item_by_slot(ITEM_SLOT_LPOCKET), "Serving tray failed to fit in the Left Pocket") + + human.equip_to_slot(test_tray, ITEM_SLOT_RPOCKET) + TEST_ASSERT(human.get_item_by_slot(ITEM_SLOT_RPOCKET), "Serving tray failed to fit in the Right Pocket") + + test_tray.attack(human, human) + + TEST_ASSERT_EQUAL(test_tray.contents.len, 0, "The serving tray did not drop all items on hitting a human") diff --git a/code/modules/uplink/uplink_items.dm b/code/modules/uplink/uplink_items.dm index a45cd2d1e2ecf..c21d24dceb12b 100644 --- a/code/modules/uplink/uplink_items.dm +++ b/code/modules/uplink/uplink_items.dm @@ -7,6 +7,8 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item)) var/datum/uplink_item/I = new path if(!I.item) continue + if (I.disabled) + continue if (!(I.purchasable_from & uplink_flag)) continue if(I.player_minimum && I.player_minimum > GLOB.joined_player_list.len) @@ -137,6 +139,7 @@ GLOBAL_LIST_INIT(illegal_tech_blacklist, typecacheof(list( var/spawn_amount = 1 //How many times we should run the spawn var/additional_uplink_entry = null //Bonus items you gain if you purchase it var/is_bonus = FALSE // entry in 'additional_uplink_entry' will have this as TRUE. Used for logging detail + var/disabled = FALSE /datum/uplink_item/New() . = ..() @@ -623,6 +626,7 @@ GLOBAL_LIST_INIT(illegal_tech_blacklist, typecacheof(list( player_minimum = 25 restricted = TRUE refundable = TRUE + disabled = TRUE // #11096: Currently in a broken state, cannot recall as they will immediately manifest and cannot move despite having range stats. /** * Only allow holoparasites to be refunded if the injector is unused. @@ -2119,6 +2123,7 @@ GLOBAL_LIST_INIT(illegal_tech_blacklist, typecacheof(list( item = /obj/item/gun/blastcannon cost = 14 //High cost because of the potential for extreme damage in the hands of a skilled scientist. restricted_roles = list(JOB_NAME_RESEARCHDIRECTOR, JOB_NAME_SCIENTIST) + disabled = TRUE // ! #11288 - Reported as non-functional /datum/uplink_item/role_restricted/crushmagboots name = "Crushing Magboots" @@ -2363,6 +2368,7 @@ GLOBAL_LIST_INIT(illegal_tech_blacklist, typecacheof(list( player_minimum = 25 restricted = TRUE restricted_roles = list(JOB_NAME_COOK, JOB_NAME_CHAPLAIN) + disabled = TRUE // #11096: Currently in a broken state, cannot recall as they will immediately manifest and cannot move despite having range stats. /datum/uplink_item/role_restricted/ez_clean_bundle name = "EZ Clean Grenade Bundle" @@ -2572,3 +2578,4 @@ GLOBAL_LIST_INIT(illegal_tech_blacklist, typecacheof(list( item = /obj/item/mob_lasso/traitor cost = 3 surplus = 0 + disabled = TRUE // #11346 Currently in a broken state, lasso'd mobs will never unregister a target once they have locked onto one, making them unusable. diff --git a/code/modules/vehicles/lavaboat.dm b/code/modules/vehicles/lavaboat.dm index 22d2167a28fbf..b087a2814972f 100644 --- a/code/modules/vehicles/lavaboat.dm +++ b/code/modules/vehicles/lavaboat.dm @@ -30,23 +30,8 @@ w_class = WEIGHT_CLASS_NORMAL resistance_flags = LAVA_PROOF | FIRE_PROOF -/datum/crafting_recipe/oar - name = "Goliath Bone Oar" - result = /obj/item/oar - reqs = list(/obj/item/stack/sheet/bone = 2) - time = 15 - category = CAT_PRIMAL - -/datum/crafting_recipe/boat - name = "Goliath Hide Boat" - result = /obj/vehicle/ridden/lavaboat - reqs = list(/obj/item/stack/sheet/animalhide/goliath_hide = 3) - time = 50 - category = CAT_PRIMAL - //Dragon Boat - /obj/item/ship_in_a_bottle name = "ship in a bottle" desc = "A tiny ship inside a bottle." diff --git a/code/modules/vending/drinnerware.dm b/code/modules/vending/drinnerware.dm index 52d34fd8617a6..287b36fd3e716 100644 --- a/code/modules/vending/drinnerware.dm +++ b/code/modules/vending/drinnerware.dm @@ -3,21 +3,29 @@ desc = "A kitchen and restaurant equipment vendor." product_ads = "Mm, food stuffs!;Food and food accessories.;Get your plates!;You like forks?;I like forks.;Woo, utensils.;You don't really need these..." icon_state = "dinnerware" - products = list(/obj/item/storage/bag/tray = 8, - /obj/item/reagent_containers/glass/bowl = 20, - /obj/item/kitchen/fork = 6, - /obj/item/reagent_containers/food/drinks/drinkingglass = 8, - /obj/item/reagent_containers/food/condiment/pack/ketchup = 5, - /obj/item/reagent_containers/food/condiment/pack/hotsauce = 5, - /obj/item/reagent_containers/food/condiment/pack/astrotame = 5, - /obj/item/reagent_containers/food/condiment/saltshaker = 5, - /obj/item/reagent_containers/food/condiment/peppermill = 5, - /obj/item/clothing/suit/apron/chef = 2, - /obj/item/kitchen/rollingpin = 2, - /obj/item/knife/kitchen = 2, - /obj/item/book/granter/crafting_recipe/cooking_sweets_101 = 2) - contraband = list(/obj/item/kitchen/rollingpin = 2, - /obj/item/knife/butcher = 2) + products = list( + /obj/item/storage/bag/tray = 8, + /obj/item/reagent_containers/glass/bowl = 20, + /obj/item/kitchen/fork = 6, + /obj/item/reagent_containers/food/drinks/drinkingglass = 8, + /obj/item/reagent_containers/food/condiment/pack/ketchup = 5, + /obj/item/reagent_containers/food/condiment/pack/hotsauce = 5, + /obj/item/reagent_containers/food/condiment/pack/astrotame = 5, + /obj/item/reagent_containers/food/condiment/saltshaker = 5, + /obj/item/reagent_containers/food/condiment/peppermill = 5, + /obj/item/clothing/suit/apron/chef = 2, + /obj/item/kitchen/rollingpin = 2, + /obj/item/knife/kitchen = 2, + /obj/item/book/granter/crafting_recipe/cooking_sweets_101 = 2, + /obj/item/plate/small = 5, + /obj/item/plate = 10, + /obj/item/plate/large = 5, + ) + contraband = list( + /obj/item/kitchen/rollingpin = 2, + /obj/item/knife/butcher = 2 + ) + refill_canister = /obj/item/vending_refill/dinnerware default_price = 5 extra_price = 50 diff --git a/code/modules/wiremod/shell/assembly.dm b/code/modules/wiremod/shell/assembly.dm index a3f7952fb2f18..0966727d6662d 100644 --- a/code/modules/wiremod/shell/assembly.dm +++ b/code/modules/wiremod/shell/assembly.dm @@ -12,8 +12,6 @@ lefthand_file = 'icons/mob/inhands/misc/devices_lefthand.dmi' righthand_file = 'icons/mob/inhands/misc/devices_righthand.dmi' - securable = FALSE //This item should only ever be used as an assembly and the shell datum uses screwdriver_act, might as well make it permanently unsecured - light_system = MOVABLE_LIGHT light_range = 6 light_power = 1 diff --git a/code/modules/xenoarchaeology/xenoartifact.dm b/code/modules/xenoarchaeology/xenoartifact.dm index 4cf30749629c7..56b12f6b6f870 100644 --- a/code/modules/xenoarchaeology/xenoartifact.dm +++ b/code/modules/xenoarchaeology/xenoartifact.dm @@ -365,8 +365,8 @@ CREATION_TEST_IGNORE_SUBTYPES(/obj/item/xenoartifact) /obj/item/xenoartifact/proc/create_beam(atom/target) if((locate(src) in target?.contents) || !get_turf(target)) return - var/datum/beam/xenoa_beam/B = new((!isturf(loc) ? loc : src), target, time=1.5 SECONDS, beam_icon='icons/obj/xenoarchaeology/xenoartifact.dmi', beam_icon_state="xenoa_beam", btype=/obj/effect/ebeam/xenoa_ebeam) - B.set_color(material) + var/datum/beam/xenoa_beam/B = src.Beam(BeamTarget=target,icon_state = "xenoa_beam",icon='icons/obj/xenoarchaeology/xenoartifact.dmi', time = 1.5 SECONDS, beam_type=/obj/effect/ebeam/xenoa_ebeam) + B.beam_color = material INVOKE_ASYNC(B, TYPE_PROC_REF(/datum/beam/xenoa_beam, Start)) ///Default template used to interface with activator signals. @@ -466,10 +466,6 @@ CREATION_TEST_IGNORE_SUBTYPES(/obj/item/xenoartifact/objective) name = "artifact beam" /datum/beam/xenoa_beam - var/color - -/datum/beam/xenoa_beam/proc/set_color(col) //Custom proc to set beam colour - color = col /datum/beam/xenoa_beam/Draw() var/Angle = round(get_angle(origin,target)) @@ -487,7 +483,7 @@ CREATION_TEST_IGNORE_SUBTYPES(/obj/item/xenoartifact/objective) if(QDELETED(src)) break var/obj/effect/ebeam/xenoa_ebeam/X = new(origin_turf) // Start Xenoartifact - This assigns colour to the beam - X.color = color + X.color = beam_color X.owner = src elements += X // End Xenoartifact diff --git a/html/changelog.html b/html/changelog.html index 974acac0e476c..3836e470d447b 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -56,7 +56,61 @@ -->
+

10 September 2024

+

PowerfulBacon, AffectedArc updated:

+
    +
  • Enforces warnings in OD lints aggressively.
  • +
+

SyncIt21, 13spacemen, SuperSayu, ZephyrTFA, MrMelbert, TiviPlus, AnturK, LemonInTheDark, Kylerace, Ghilker, Fikou, Ben10Omintrix, Ghommie, ShizCalev, SyncIt21, Timberpoes, stylemistake, MacBlaze1, robbertapir, timothymtorres, haukeschuemann, JohnFulpWillard, XeonMations updated:

+
    +
  • Updated assembly code to be more in line with TG"s
  • +
  • Updated beam datum code to be more in line with TG"s as well
  • +
  • Fixed infrared sensors creating two beams when thrown diagonally
  • +
  • Added the ability to place assemblies on welding tanks
  • +
+

rkz, Tralezab, Timberpoes, Ghommie updated:

+
    +
  • refactors species.dm organs and features
  • +
  • folded default_features into mutant_bodyparts
  • +
  • fixed hacky override for lizards, now spines work in the preference menu from the get-go.
  • +
  • sensory regeneration no longer sprouts new tails
  • +
+ +

09 September 2024

+

Aramix updated:

+
    +
  • fixed nanite comms programs (forced speech, skull echo, hallucination) to work with nanite communication remote
  • +
+

PestoVerde322 updated:

+
    +
  • Fixed repeating categories in the crafting menu.
  • +
  • Sorted and standardized all the recipes, please DO NOT put the recipes outside of that folder and stick to the format of all the other recipes.
  • +
  • Rebalanced the times to craft and interaction of some recipes.
  • +
+

PowerfulBacon updated:

+
    +
  • Holoparasites, Mindslave Lasso and The Blast Cannon are no longer purchasable by wizards or traitors due to being broken.
  • +
+

Tsar-Salat updated:

+
    +
  • fixes clothing eating checks
  • +
  • eating clothes is now based on what tongue you have, rather than what species you are
  • +
+

rkz, PaxilManiac, Kryson, Qustinnus, nightred, Greniza, junkgle01 updated:

+
    +
  • Separates plates from food sprites, into their own item. They come in three sizes, and break when thrown!
  • +
  • Serving Trays can now be attached to belts, anticipating its increased usage.
  • +
  • resprites brioche, Vanilla, and ChocolateStrawberry cakes
  • +
  • removed duplicate update of plane, when layer is already changed
  • +
+

08 September 2024

+

Ghommie, XeonMations updated:

+
    +
  • Fixed space movement
  • +
  • Proper floating animations when in no gravity
  • +
  • Possibly fixed an oversight which involved highpop and floating animations
  • +

Patience updated:

  • Bandanas can now be worn in the head/neck slots without error texture
  • @@ -69,6 +123,19 @@

    PowerfulBacon updated:

  • Fixes race condition in atmos processing which results in unit tests failing due to shuttles loading post-roundstart.
  • Fixes a maploading race condition that would result in invalid caches being used while loading maps.
+

Rukofamicom updated:

+
    +
  • Players are no longer limited to a single positronic brain per round.
  • +
  • Cyborgs may no longer have duplicate names, unless they are being rebuilt from the same brain that was previously a cyborg - if you are respawning as a fresh cyborg and do not choose a different character profile first, you will be given the default cyborg name instead of becoming a second copy of the same cyborg.
  • +
  • Service borg glasses and graspers are no longer covered in industrial glue and can actually be used to serve drinks again
  • +
  • Service and Medical cyborgs can now synthesize standard, 50u drinking glasses and beakers respectively with their graspers. Simply use their grasping tool with nothing in it to produce one.
  • +
  • Medical and service cyborgs can both hold a much wider variety of reagent containers now
  • +
  • Service cyborgs can now synthesize a wider variety of drinks instead of being primarily focused on alcoholic beverages.
  • +
+

SuperPantsHero updated:

+
    +
  • fixed RCD and RPD upgrades
  • +

07 September 2024

ToasterBiome updated:

@@ -875,70 +942,6 @@

tonty updated:

  • crewmembers no longer get cold feet when attempting to piggyback eachother
- -

10 July 2024

-

EvilDragonfiend updated:

-
    -
  • minor port of set_eye() and reset_perspective() proc from TG, #PR 69115 (LemonInTheDark)
  • -
  • improved basic game system to track client's currently used eye
  • -
  • advanced camera is now visible by anyone even if it's currently used by someone. (This doesn't support the shuttle docking system, because it uses different one.)
  • -
  • minor fix that advanced camera was still usable even if you're locker'ed
  • -
-

MarkusLarsson421 updated:

-
    -
  • Changed PopulateItems() to check if it should be empty or not.
  • -
  • Changed Medkits to not use their empty variable.
  • -
-

PowerfulBacon updated:

-
    -
  • Removes unconciousness from mech brute attacks
  • -
-

XeonMations updated:

-
    -
  • NT's mapping department has repaired radstation's security disposals loop. It now works properly.
  • -
-

spockye updated:

-
    -
  • fixed Rad decals
  • -
  • fixed half tiles
  • -
  • removes Captain spawner from rdm_captain_quarters.dmm
  • -
  • replaces item spawner in rdm_captain_quarters.dmm
  • -
  • Added glass floors and catwalk floors to corg station
  • -
  • small decal additions and changes to corg station
  • -
  • fixes to fland station
  • -
  • glass tiles to fland station
  • -
- -

09 July 2024

-

Howluinb updated:

-
    -
  • Digitigrade Lizards will no longer get their toe stubbed on tables.
  • -
-

TsunamiAnt updated:

-
    -
  • paper frames now take 10 paper and 2 wood to craft
  • -
  • paper bundle is now also called that
  • -
  • add description text to paper bundle to show people you can just cut it open
  • -
- -

08 July 2024

-

EvilDragonfiend updated:

-
    -
  • fixed a runtime that's caused by hallucination making an item to say
  • -
-

PowerfulBacon updated:

-
    -
  • Items will no longer drift out of your hand when picked up
  • -
-

XeonMations updated:

-
    -
  • All admin votes now automatically popup.
  • -
  • Fixed swarmer traps not working correctly.
  • -
-

tonty updated:

-
    -
  • starting an emote with " 's " or "," won't leave a space anymore. roleplay has been saved
  • -
GoonStation 13 Development Team diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index af2b92cf0b55d..b6ac04f61709f 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -44116,6 +44116,10 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. ToasterBiome: - bugfix: Centcom Ban DB is now accessible again through PP 2024-09-08: + Ghommie, XeonMations: + - bugfix: Fixed space movement + - bugfix: Proper floating animations when in no gravity + - bugfix: Possibly fixed an oversight which involved highpop and floating animations Patience: - bugfix: Bandanas can now be worn in the head/neck slots without error texture PowerfulBacon: @@ -44126,3 +44130,61 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. due to shuttles loading post-roundstart. - bugfix: Fixes a maploading race condition that would result in invalid caches being used while loading maps. + Rukofamicom: + - tweak: Players are no longer limited to a single positronic brain per round. + - tweak: Cyborgs may no longer have duplicate names, unless they are being rebuilt + from the same brain that was previously a cyborg - if you are respawning as + a fresh cyborg and do not choose a different character profile first, you will + be given the default cyborg name instead of becoming a second copy of the same + cyborg. + - bugfix: Service borg glasses and graspers are no longer covered in industrial + glue and can actually be used to serve drinks again + - tweak: Service and Medical cyborgs can now synthesize standard, 50u drinking glasses + and beakers respectively with their graspers. Simply use their grasping tool + with nothing in it to produce one. + - tweak: Medical and service cyborgs can both hold a much wider variety of reagent + containers now + - tweak: Service cyborgs can now synthesize a wider variety of drinks instead of + being primarily focused on alcoholic beverages. + SuperPantsHero: + - bugfix: fixed RCD and RPD upgrades +2024-09-09: + Aramix: + - bugfix: fixed nanite comms programs (forced speech, skull echo, hallucination) + to work with nanite communication remote + PestoVerde322: + - bugfix: Fixed repeating categories in the crafting menu. + - refactor: Sorted and standardized all the recipes, please DO NOT put the recipes + outside of that folder and stick to the format of all the other recipes. + - code_imp: Rebalanced the times to craft and interaction of some recipes. + PowerfulBacon: + - tweak: Holoparasites, Mindslave Lasso and The Blast Cannon are no longer purchasable + by wizards or traitors due to being broken. + Tsar-Salat: + - bugfix: fixes clothing eating checks + - tweak: eating clothes is now based on what tongue you have, rather than what species + you are + rkz, PaxilManiac, Kryson, Qustinnus, nightred, Greniza, junkgle01: + - rscadd: Separates plates from food sprites, into their own item. They come in + three sizes, and break when thrown! + - tweak: Serving Trays can now be attached to belts, anticipating its increased + usage. + - rscadd: resprites brioche, Vanilla, and ChocolateStrawberry cakes + - code_imp: removed duplicate update of plane, when layer is already changed +2024-09-10: + PowerfulBacon, AffectedArc: + - server: Enforces warnings in OD lints aggressively. + ? SyncIt21, 13spacemen, SuperSayu, ZephyrTFA, MrMelbert, TiviPlus, AnturK, LemonInTheDark, + Kylerace, Ghilker, Fikou, Ben10Omintrix, Ghommie, ShizCalev, SyncIt21, Timberpoes, + stylemistake, MacBlaze1, robbertapir, timothymtorres, haukeschuemann, JohnFulpWillard, + XeonMations + : - refactor: Updated assembly code to be more in line with TG"s + - refactor: Updated beam datum code to be more in line with TG"s as well + - bugfix: Fixed infrared sensors creating two beams when thrown diagonally + - rscadd: Added the ability to place assemblies on welding tanks + rkz, Tralezab, Timberpoes, Ghommie: + - refactor: refactors species.dm organs and features + - code_imp: folded default_features into mutant_bodyparts + - bugfix: fixed hacky override for lizards, now spines work in the preference menu + from the get-go. + - tweak: sensory regeneration no longer sprouts new tails diff --git a/html/changelogs/AutoChangeLog-pr-11414.yml b/html/changelogs/AutoChangeLog-pr-11414.yml deleted file mode 100644 index 6d6560bdb6e2b..0000000000000 --- a/html/changelogs/AutoChangeLog-pr-11414.yml +++ /dev/null @@ -1,6 +0,0 @@ -author: Ghommie, XeonMations -delete-after: true -changes: - - bugfix: Fixed space movement - - bugfix: Proper floating animations when in no gravity - - bugfix: Possibly fixed an oversight which involved highpop and floating animations diff --git a/icons/mob/clothing/belt.dmi b/icons/mob/clothing/belt.dmi index e9604b401a828..80135ab6d9674 100644 Binary files a/icons/mob/clothing/belt.dmi and b/icons/mob/clothing/belt.dmi differ diff --git a/icons/obj/food/containers.dmi b/icons/obj/food/containers.dmi index 7357b52b736de..616857910ca12 100644 Binary files a/icons/obj/food/containers.dmi and b/icons/obj/food/containers.dmi differ diff --git a/icons/obj/food/egg.dmi b/icons/obj/food/egg.dmi index 390e14ca0d49b..65734e98a4070 100644 Binary files a/icons/obj/food/egg.dmi and b/icons/obj/food/egg.dmi differ diff --git a/icons/obj/food/food.dmi b/icons/obj/food/food.dmi index 534d70c32bca3..ea9f21b6edcbf 100644 Binary files a/icons/obj/food/food.dmi and b/icons/obj/food/food.dmi differ diff --git a/icons/obj/food/mexican.dmi b/icons/obj/food/mexican.dmi index 912a8a89bb7f6..75837836e3eb2 100644 Binary files a/icons/obj/food/mexican.dmi and b/icons/obj/food/mexican.dmi differ diff --git a/icons/obj/food/piecake.dmi b/icons/obj/food/piecake.dmi index 958dcf8554a0d..19ceb277a614f 100644 Binary files a/icons/obj/food/piecake.dmi and b/icons/obj/food/piecake.dmi differ diff --git a/icons/obj/food/pizza.dmi b/icons/obj/food/pizza.dmi index e15fae04e1e35..5639dd769f78c 100644 Binary files a/icons/obj/food/pizza.dmi and b/icons/obj/food/pizza.dmi differ diff --git a/icons/obj/food/spaghetti.dmi b/icons/obj/food/spaghetti.dmi index 77d0b21f76ac8..f3a1f8624165d 100644 Binary files a/icons/obj/food/spaghetti.dmi and b/icons/obj/food/spaghetti.dmi differ diff --git a/icons/obj/kitchen.dmi b/icons/obj/kitchen.dmi index a4016feed962e..4094941e2f8ea 100644 Binary files a/icons/obj/kitchen.dmi and b/icons/obj/kitchen.dmi differ diff --git a/sound/items/ceramic_break.ogg b/sound/items/ceramic_break.ogg new file mode 100644 index 0000000000000..bb63341ce5f46 Binary files /dev/null and b/sound/items/ceramic_break.ogg differ diff --git a/tgui/packages/tgui/interfaces/Signaler.js b/tgui/packages/tgui/interfaces/Signaler.js index 7ac6fda3a58c9..42243419605ca 100644 --- a/tgui/packages/tgui/interfaces/Signaler.js +++ b/tgui/packages/tgui/interfaces/Signaler.js @@ -15,7 +15,7 @@ export const Signaler = (props, context) => { export const SignalerContent = (props, context) => { const { act, data } = useBackend(context); - const { code, frequency, minFrequency, maxFrequency, connection } = data; + const { code, frequency, cooldown, minFrequency, maxFrequency } = data; return (
@@ -91,10 +91,10 @@ export const SignalerContent = (props, context) => {